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

/* ===== CSS VARIABLES ===== */
:root {
  --primary:     #FF6900;
  --dark:        #001A33;
  --white:       #FFFFFF;
  --gray:        #D1D5DC;
  --text:        #6a7382;
  --text-dark:   #0B192C;
  --bg-light:    #F7F7F7;
  --site-header-height: 160px;
}

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

body {
  font-size: 15px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  color: var(--dark);
  margin-top: 0;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

p { margin-bottom: 15px; color: #4A5565; }

.section-title { margin-bottom: 30px; text-align: center; }
.section-title > h2 { text-align: center; font-size: 40px; font-weight: 600; color: var(--dark); }
.section-title > h3 { font-size: 40px; font-weight: 700; color: #fa671e }
.section-title > h4 { font-size: 40px; }
.section-title > p  { font-size: 16px; font-weight: 400; margin-bottom: 0; }

.bg-theme { background: var(--bg-light); }

/* ===== NAVBAR ===== */
.navbar-nav li { padding: 8px 10px; }

.navbar-nav li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #364153 !important;
  display: inline-block;
  position: relative;
  transition: color 0.22s ease;
}

.navbar-nav li a:hover { color: var(--primary) !important; }
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-toggler:focus { box-shadow: none; }

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
  opacity: 0;
  bottom: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; left: 0; opacity: 1; }

ul.dropdown-menu { padding: 0; }
ul.dropdown-menu li a { color: var(--primary) !important; }
.dropdown-menu li:hover, .dropdown-menu li:hover a { background: var(--white); color: var(--dark) !important; }

.navbar-brand img { width: 150px; transition: 0.6s; }

.offcanvas { background-color: var(--dark); }
.offcanvas .navbar-nav li a { color: var(--white) !important; }
.offcanvas .navbar-nav .dropdown-menu { margin-top: 10px; border-radius: 8px; }
.offcanvas .navbar-nav .dropdown-menu li { padding: 10px 0; }
.offcanvas-header > a > img { width: 15rem; filter: brightness(0) invert(1); }

.dropdown-menu { background-color: var(--dark); border-radius: 0px; }
.dropdown-item { background: none !important; }
.dropdown-menu li { padding: 6px 10px; }
.dropdown-menu li.active { background: var(--white); }
.dropdown-menu li.active > a { color: var(--dark) !important; }

/* ===== SECTION ===== */
section { padding-top: 50px; padding-bottom: 50px; }

/* ===== HEADER ===== */
.header {
  padding: 10px 0;
  background: transparent;
  z-index: 999;
  transition: 0.6s;
  position: absolute;
  width: 100%;
}

header.sticky {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: var(--bg-light);  
  padding: 0;
}
header.sticky .navbar
{padding: 0;}

header.sticky img { width: 100px; transition: all 0.5s ease-in-out; }

/* ===== SITE NAVIGATION UI ===== */
.site-navbar > .container {
  align-items: center;
  gap: 12px;
}

.site-navbar-brand img {
  width: clamp(120px, 12vw, 150px);
}

.site-navbar-collapse {
  flex-grow: 1;
}

.site-navbar-nav {
  align-items: center;
  gap: 2px;
}

.site-navbar-nav .nav-link {
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-navbar-nav .nav-link.dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.15em;
  border-top-color: currentColor;
  opacity: 0.7;
}

.site-navbar-cta {
  flex-shrink: 0;
  margin-left: 8px;
}

.site-navbar-cta .btn-theme-new {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

body:not(.home-page) .site-header,
header.sticky.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 26, 51, 0.08);
  box-shadow: 0 8px 28px rgba(0, 26, 51, 0.06);
}

.navdesktop > .dropdown-menu {
  padding-top: 14px;
  margin-top: 0;
}

.navdesktop > .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
}

/* Vertical nav dropdown (Services, Conferences) */
.nav-vertical {
  position: relative;
}

.nav-vertical-menu {
  min-width: 260px;
  max-width: 320px;
  padding: 10px 0;
  margin-top: 8px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 26, 51, 0.1) !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 36px rgba(0, 26, 51, 0.12);
}

.nav-vertical-menu .nav-vertical-link {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #364153 !important;
  white-space: normal;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-vertical-menu .nav-vertical-link:hover,
.nav-vertical-menu .nav-vertical-link:focus,
.nav-vertical-menu .nav-vertical-link.active {
  background: rgba(255, 105, 0, 0.08) !important;
  color: var(--primary) !important;
}

.nav-vertical-menu .nav-vertical-label {
  padding: 8px 18px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8892a6 !important;
}

.nav-vertical-menu .nav-vertical-divider {
  margin: 6px 14px;
  border-color: rgba(0, 26, 51, 0.1);
  opacity: 1;
}

@media (min-width: 1200px) {
  .nav-vertical > .nav-vertical-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    z-index: 1100;
  }

  .nav-vertical:hover > .nav-vertical-menu,
  .nav-vertical > .nav-vertical-menu.show {
    display: block;
  }

  .nav-vertical > .nav-vertical-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
  }
}

.site-offcanvas .nav-vertical-menu--mobile {
  position: static !important;
  transform: none !important;
  float: none !important;
  min-width: 100%;
  max-width: 100%;
  margin: 6px 0 0;
  padding: 6px 0 6px 12px;
  background: transparent !important;
  border: none !important;
  border-left: 2px solid rgba(255, 105, 0, 0.35) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.site-offcanvas .nav-vertical-menu--mobile .nav-vertical-link {
  color: #d1d5dc !important;
  padding: 9px 12px;
}

.site-offcanvas .nav-vertical-menu--mobile .nav-vertical-link:hover,
.site-offcanvas .nav-vertical-menu--mobile .nav-vertical-link.active {
  background: transparent !important;
  color: var(--primary) !important;
}

.site-offcanvas .nav-vertical-menu--mobile .nav-vertical-label {
  color: rgba(255, 255, 255, 0.55) !important;
}

.site-offcanvas .nav-vertical-menu--mobile .nav-vertical-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 6px 0;
}

.site-offcanvas {
  width: min(360px, 88vw);
}

.site-offcanvas-header {
  padding: 1rem 1.25rem;
}

.site-offcanvas-logo img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.site-offcanvas-nav .nav-link {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-offcanvas-nav .nav-link.active {
  color: var(--primary) !important;
}

.site-offcanvas-nav .dropdown-toggle::after {
  float: right;
  margin-top: 0.55rem;
}

.site-offcanvas-cta .btn-theme {
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 20px;
}

@media (min-width: 1200px) {
  .site-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .site-navbar-nav .nav-link {
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .site-navbar-brand img {
    width: 130px;
  }
}

/* ===== PAGE BACKGROUNDS ===== */
.about-bg        { background: url("../images/about-bg.webp") no-repeat center !important; background-size: cover !important; }
.premium-bg      { background: url("../images/premium-bg.webp") no-repeat center !important; background-size: cover !important; }
.copy-bg         { background: url("../images/copy-bg.webp") no-repeat center !important; background-size: cover !important; }
.proofreading-bg { background: url("../images/proofreading-bg.webp") no-repeat center !important; background-size: cover !important; }
.quality-bg      { background: url("../images/quality-bg.webp") no-repeat center !important; background-size: cover !important; }
.substantive-bg  { background: url("../images/substantive-bg.webp") no-repeat center !important; background-size: cover !important; }
.publication-bg  { background: url("../images/publication-bg.webp") no-repeat center !important; background-size: cover !important; }
.journal-bg      { background: url("../images/journal-bg.webp") no-repeat center !important; background-size: cover !important; }
.submission-bg   { background: url("../images/submission-bg.webp") no-repeat center !important; background-size: cover !important; }
.formatting-bg   { background: url("../images/formatting-bg.webp") no-repeat center !important; background-size: cover !important; }
.journal-submission-bg { background: url("../images/journal-submission-bg.webp") no-repeat center !important; background-size: cover !important; }
.resubmission-bg { background: url("../images/resubmission-bg.webp") no-repeat center !important; background-size: cover !important; }
.plagiarism-bg   { background: url("../images/plagiarism-bg.webp") no-repeat center !important; background-size: cover !important; }
.contact-bg      { background: url("../images/contact-bg.webp") no-repeat center !important; background-size: cover !important; }

/* ===== TOP BANNER ===== */
.top-banner { position: relative;     padding: 150px 0 100px 0; }

.top-banner::after {
  content: "";
  background: url("../images/fintech/hero-bg-img.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  height: 100%; width: 100%;
  z-index: -1;
}

.top-banner .left-col h1 { font-size: 57px; font-weight: 700; line-height: 1.2; color: var(--dark); }
.top-banner .left-col p  { font-size: 1rem; font-weight: 400; margin-bottom: 0; color: #4A5565; }
.top-banner .right-img   { position: relative; }

.top-banner .right-img .satisfied-customer {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 3px 0 12px rgba(32,145,255,0.13);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  width: 255px;
  position: absolute; top: 265px;
  border-radius: 15px;
}

.top-banner .right-img .counter {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 3px 0 12px rgba(32,145,255,0.13);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 5px;
  width: 255px;
  position: absolute; top: 380px; right: 25px;
  border-radius: 15px;
}

.top-banner .right-img .satisfied-customer > span { color: var(--dark); font-size: 16px; font-weight: 600; }
.top-banner .right-img .counter > span:nth-child(1) { color: var(--dark); font-size: 24px; font-weight: 600; }
.top-banner .right-img .counter > span:nth-child(2),
.top-banner .right-img .counter > span:nth-child(3) { color: #333; font-size: 14px; font-weight: 600; }
.top-banner .right-img .satisfied-customer .sc-one p { color: var(--dark); font-size: 26px; margin-bottom: 0; }
.top-banner .right-img .satisfied-customer .sc-two > i { color: #FFA63A; }
.top-banner .right-img .satisfied-customer .sc-two > span { color: #333; font-size: 14px; }

/* ===== TOP BANNER PAGES ===== */
.top-banner-pages { padding-top: 150px; padding-bottom: 140px; }
.top-banner-pages .left-col h1 { font-size: 57px; font-weight: 700; line-height: 1.2; color: var(--white); }
.top-banner-pages .left-col p  { font-size: 1rem; font-weight: 400; margin-bottom: 0; color: var(--white); }

/* Inner pages hero (aligned with contact banner + optional overlay) */
.inner-page-hero {
    position: relative;
    overflow: hidden;
}

.inner-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgb(187 187 187 / 78%) 0%, rgb(126 126 126 / 42%) 55%, rgb(209 209 209 / 35%) 100%);
    z-index: 0;
    pointer-events: none;
}

.inner-page-hero .container {
    position: relative;
    z-index: 1;
}

.inner-page-hero-content {
    animation: innerPageHeroFadeIn 0.65s ease both;
}

@keyframes innerPageHeroFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inner-page-breadcrumb {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.inner-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.inner-page-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.inner-page-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 8px;
}

.inner-page-breadcrumb-current {
    color: rgba(255, 255, 255, 0.65);
}

.inner-page-hero-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 12px;
}

.inner-page-hero .inner-page-hero-kicker {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 14px;
}

.inner-page-hero .inner-page-hero-lead {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 52ch;
}

.inner-page-hero .inner-page-hero-intro .inner-page-hero-kicker {
    margin-bottom: 16px;
}

.inner-page-hero .inner-page-hero-intro .inner-page-hero-lead strong {
    color: #fff;
    font-weight: 700;
}

.inner-page-hero .btn-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (max-width: 767px) {
    .inner-page-hero .left-col h1 {
        font-size: 36px;
    }

    .inner-page-hero .inner-page-hero-kicker {
        font-size: 16px;
    }
}

/* ===== Career & Skills Suite â€” homepage-style split hero + lead form ===== */
.career-skills-page .career-skills-hero {
    overflow: hidden;
}

.career-skills-page .career-skills-hero > .container {
    position: relative;
    z-index: 2;
}

.career-skills-page .career-skills-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 70% at 92% 8%, rgba(255, 105, 0, 0.11) 0%, transparent 52%),
        radial-gradient(90% 65% at 4% 88%, rgba(0, 26, 51, 0.07) 0%, transparent 55%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 247, 247, 0) 42%, rgba(255, 105, 0, 0.04) 100%);
}

.career-skills-page .career-skills-hero__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.career-skills-page .career-skills-hero__accent--1 {
    width: min(340px, 55vw);
    height: min(340px, 55vw);
    top: -6%;
    right: 8%;
    background: rgba(255, 105, 0, 0.16);
}

.career-skills-page .career-skills-hero__accent--2 {
    width: min(280px, 48vw);
    height: min(280px, 48vw);
    bottom: 4%;
    left: -4%;
    background: rgba(0, 38, 77, 0.08);
}

.career-skills-page .career-skills-hero__content {
    position: relative;
    z-index: 1;
}

.career-skills-page .career-skills-hero__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.career-skills-page .career-skills-hero__kicker {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--dark);
    margin-bottom: 14px;
}

.career-skills-page .career-skills-hero__body {
    color: #4a5565;
    max-width: 52ch;
}

.career-skills-page .career-skills-hero__content h1 {
    margin-bottom: 16px;
}

.career-skills-page .career-skills-hero-animate {
    opacity: 0;
    animation: careerSkillsHeroIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.career-skills-page .career-skills-hero-animate--1 { animation-delay: 0.06s; }
.career-skills-page .career-skills-hero-animate--2 { animation-delay: 0.12s; }
.career-skills-page .career-skills-hero-animate--3 { animation-delay: 0.18s; }
.career-skills-page .career-skills-hero-animate--4 { animation-delay: 0.24s; }
.career-skills-page .career-skills-hero-animate--5 { animation-delay: 0.3s; }
.career-skills-page .career-skills-hero-animate--form { animation-delay: 0.2s; }

@keyframes careerSkillsHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .career-skills-page .career-skills-hero-animate {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.career-skills-page .career-skills-hero-form {
    position: relative;
    border-radius: 18px;
    padding: clamp(14px, 2.5vw, 22px) clamp(16px, 2.8vw, 24px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.58) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.career-skills-page .career-skills-hero-form:hover {
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12) inset;
    transform: translateY(-2px);
}

.career-skills-page .career-skills-hero-form__glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 105, 0, 0.14), transparent 42%, rgba(0, 26, 51, 0.06));
    opacity: 0.65;
    z-index: -1;
    pointer-events: none;
}

.career-skills-page .career-skills-hero-form__head {
    margin-bottom: 12px;
}

.career-skills-page .career-skills-hero-form__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.career-skills-page .career-skills-hero-form__title {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.22;
}

.career-skills-page .career-skills-hero-form__lede {
    font-size: 13px;
    color: #4a5565;
    margin-bottom: 0;
    line-height: 1.45;
}

.career-skills-page .career-skills-hero-form__field-row {
    margin-bottom: 8px;
}

.career-skills-page .career-skills-hero-form__field-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.career-skills-page .career-skills-hero-field {
    margin-bottom: 0;
    flex: 1;
}

.career-skills-page .career-skills-hero-field--icon {
    position: relative;
}

.career-skills-page .career-skills-hero-field__icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(74, 85, 101, 0.5);
    pointer-events: none;
    z-index: 1;
    font-size: 13px;
    line-height: 1;
    transition: color 0.2s ease;
}

.career-skills-page .career-skills-hero-field--icon:focus-within .career-skills-hero-field__icon {
    color: rgba(255, 105, 0, 0.85);
}

.career-skills-page .career-skills-hero-field--textarea .career-skills-hero-field__icon {
    top: 11px;
    transform: none;
}

.career-skills-page .career-skills-hero-field--textarea {
    margin-bottom: 10px;
}

.career-skills-page .career-skills-hero-field input,
.career-skills-page .career-skills-hero-field select,
.career-skills-page .career-skills-hero-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.4;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 10px;
    padding: 8px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.career-skills-page .career-skills-hero-field input,
.career-skills-page .career-skills-hero-field select {
    min-height: 38px;
}

.career-skills-page .career-skills-hero-field--icon input,
.career-skills-page .career-skills-hero-field--icon select {
    padding-left: 34px;
}

.career-skills-page .career-skills-hero-field--icon select {
    padding-right: 28px;
    cursor: pointer;
}

.career-skills-page .career-skills-hero-field textarea {
    resize: vertical;
    padding-top: 9px;
    min-height: 68px;
    line-height: 1.4;
}

.career-skills-page .career-skills-hero-field--textarea textarea {
    padding-left: 34px;
}

@media (max-width: 767px) {
    .career-skills-page .career-skills-hero-form__field-row {
        margin-bottom: 4px;
    }
}

.career-skills-page .career-skills-hero-field input::placeholder,
.career-skills-page .career-skills-hero-field textarea::placeholder {
    color: rgba(74, 85, 101, 0.55);
}

.career-skills-page .career-skills-hero-field input:hover,
.career-skills-page .career-skills-hero-field select:hover,
.career-skills-page .career-skills-hero-field textarea:hover {
    border-color: rgba(255, 105, 0, 0.35);
    background: #fff;
}

.career-skills-page .career-skills-hero-field input:focus,
.career-skills-page .career-skills-hero-field select:focus,
.career-skills-page .career-skills-hero-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.22);
    background: #fff;
}

.career-skills-page .career-skills-hero-form__submit {
    margin-top: 4px;
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.career-skills-page .career-skills-hero-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 105, 0, 0.28);
}

.career-skills-page .career-skills-hero-form__submit:active {
    transform: translateY(0);
}

/* intl-tel-input â€” hero lead card (IP geo + GB/US first; dropdown portaled to body) */
.career-skills-page .career-skills-hero-field--phone-intl .iti {
    width: 100%;
    display: block;
    position: relative;
    --iti-spacer-horizontal: 8px;
    --iti-arrow-padding: 6px;
    --iti-dialcode-color: #4b5563;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__country-container {
    min-width: 6.75rem;
    border-radius: 10px 0 0 10px;
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-right: none;
    background: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    box-sizing: border-box;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__selected-country {
    border-radius: 10px 0 0 10px;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__selected-country-primary {
    padding: 0 6px 0 8px;
    gap: 4px;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti .iti__selected-dial-code {
    font-weight: 700;
    font-size: 13px;
    color: #374151;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__tel-input {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 0 10px 10px 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 12px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.88);
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__tel-input::placeholder {
    color: rgba(74, 85, 101, 0.55);
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__flag {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__tel-input:hover,
.career-skills-page .career-skills-hero-field--phone-intl .iti__country-container:hover {
    border-color: rgba(255, 105, 0, 0.35);
    background: #fff;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__tel-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.22);
    background: #fff;
}

.career-skills-page .career-skills-hero-field--phone-intl .iti__country-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.22);
}

@media (max-width: 991px) {
    .career-skills-page .career-skills-hero .left-col {
        text-align: center;
    }

    .career-skills-page .career-skills-hero__body {
        margin-left: auto;
        margin-right: auto;
    }

    .career-skills-page .career-skills-hero .btn-sec {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .career-skills-page .career-skills-hero-form:hover {
        transform: none;
    }

    .career-skills-page .career-skills-hero .btn-sec .btn {
        width: 100%;
    }
}

/* Thesis editing hero: keep original eyebrow casing + icon alignment */
.thesis-editing-page .career-skills-hero__eyebrow.tes-hero-eyebrow {
    text-transform: none;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thesis-editing-page .career-skills-hero__eyebrow.tes-hero-eyebrow i {
    font-size: 1.05em;
    opacity: 0.92;
}

.ebook-services-page .career-skills-hero__eyebrow.ebook-hero-eyebrow {
    text-transform: none;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ebook-services-page .career-skills-hero__eyebrow.ebook-hero-eyebrow i {
    font-size: 1.05em;
    opacity: 0.92;
}

.career-skills-page .career-skills-hero-animate--form,
.ebook-services-page .career-skills-hero-animate--form {
    animation-delay: 0.2s;
}

.ebook-services-page .career-skills-hero__content h1 {
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 18ch;
}

.ebook-services-page .career-skills-hero__kicker {
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    max-width: 42ch;
}

.ebook-services-page .career-skills-hero__body {
    max-width: 54ch;
    line-height: 1.65;
}

.ebook-services-page .ebook-hero-visual {
    position: relative;
    margin: 0;
    height: 100%;
}

.ebook-services-page .ebook-hero-visual__glow {
    position: absolute;
    inset: 8% 4% 6% 8%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.2) 0%, transparent 68%);
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
}

.ebook-services-page .ebook-hero-visual__frame {
    position: relative;
    z-index: 1;
    min-height: clamp(300px, 48vh, 520px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow:
        0 20px 48px rgba(0, 26, 51, 0.12),
        0 8px 24px rgba(255, 105, 0, 0.1);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ebook-services-page .ebook-hero-visual:hover .ebook-hero-visual__frame {
    box-shadow:
        0 28px 56px rgba(0, 26, 51, 0.14),
        0 12px 32px rgba(255, 105, 0, 0.14);
    transform: translateY(-4px);
}

.ebook-services-page .ebook-hero-visual__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        165deg,
        rgba(0, 26, 51, 0.12) 0%,
        transparent 38%,
        transparent 62%,
        rgba(0, 26, 51, 0.18) 100%
    );
}

.ebook-services-page .ebook-hero-visual__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center 22%;
}

.ebook-services-page .ebook-hero-visual__badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.1);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-hero-visual__badge i {
    color: var(--primary);
    font-size: 14px;
}

.ebook-services-page .ebook-hero-visual__badge--top {
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
}

.ebook-services-page .ebook-hero-visual__badge--bottom {
    bottom: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
}

.ebook-services-page .ebook-hero-visual:hover .ebook-hero-visual__badge {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.12);
}

@media (max-width: 991px) {
    .ebook-services-page .career-skills-hero__content h1 {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ebook-services-page .career-skills-hero__kicker {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .ebook-services-page .career-skills-hero__body {
        max-width: none;
    }

    .ebook-services-page .ebook-hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .ebook-services-page .ebook-hero-visual__frame {
        min-height: clamp(260px, 42vw, 380px);
    }
}

@media (max-width: 767px) {
    .ebook-services-page .ebook-hero-visual:hover .ebook-hero-visual__frame {
        transform: none;
    }

    .ebook-services-page .ebook-hero-visual__badge {
        font-size: 11px;
        padding: 0.45rem 0.7rem;
    }

    .ebook-services-page .ebook-hero-visual__badge--top {
        top: 12px;
        left: 12px;
    }

    .ebook-services-page .ebook-hero-visual__badge--bottom {
        bottom: 12px;
        right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-hero-visual__frame,
    .ebook-services-page .ebook-hero-visual__badge {
        transition: none;
    }

    .ebook-services-page .ebook-hero-visual:hover .ebook-hero-visual__frame,
    .ebook-services-page .ebook-hero-visual:hover .ebook-hero-visual__badge {
        transform: none;
    }
}

.submission-support-page .career-skills-hero__eyebrow.ssp-hero-eyebrow {
    text-transform: none;
    letter-spacing: 0.06em;
}

/* Hero lead forms: screen-reader labels (works with or without Bootstrap utility) */
.career-skills-page .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ===== Research & Thesis Suite â€” premium split hero ===== */
.rts-premium-hero-scope .rts-premium-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(120px, 14vw, 168px) 0 clamp(56px, 8vw, 96px);
}

.rts-premium-hero-scope .rts-premium-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(120% 80% at 85% 15%, rgba(255, 105, 0, 0.11) 0%, transparent 52%),
        radial-gradient(90% 70% at 10% 90%, rgba(0, 38, 77, 0.07) 0%, transparent 55%),
        linear-gradient(165deg, #f5f8fc 0%, #eef3f9 38%, #ffffff 100%);
    pointer-events: none;
}

.rts-premium-hero-scope .rts-premium-hero__noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.rts-premium-hero-scope .rts-premium-hero .container {
    position: relative;
    z-index: 1;
}

.rts-premium-hero-scope .rts-premium-hero__content {
    max-width: 36rem;
    animation: rtsPremiumHeroIn 0.75s ease both;
}

@keyframes rtsPremiumHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rts-premium-hero-scope .rts-premium-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary, #ff6900);
    margin-bottom: 14px;
}

.rts-premium-hero-scope .rts-premium-hero__eyebrow i {
    font-size: 14px;
    opacity: 0.92;
}

.rts-premium-hero-scope .rts-premium-hero__title {
    font-size: clamp(1.85rem, 1.2rem + 2.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #001a33;
    margin-bottom: 18px;
}

.rts-premium-hero-scope .rts-premium-hero__sub {
    font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
    font-weight: 600;
    line-height: 1.55;
    color: #0d2847;
    margin-bottom: 12px;
}

.rts-premium-hero-scope .rts-premium-hero__desc {
    font-size: 1rem;
    line-height: 1.72;
    color: #3d4f63;
    margin-bottom: 28px;
    max-width: 40rem;
}

.rts-premium-hero-scope .rts-premium-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.rts-premium-hero-scope .rts-premium-hero__btn {
    min-height: 50px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.rts-premium-hero-scope .rts-premium-hero__btn--primary {
    background: linear-gradient(180deg, #ff7a1a 0%, var(--primary, #ff6900) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.35);
}

.rts-premium-hero-scope .rts-premium-hero__btn--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255, 105, 0, 0.42);
}

.rts-premium-hero-scope .rts-premium-hero__btn--primary:active {
    transform: translateY(-1px);
}

.rts-premium-hero-scope .rts-premium-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.72);
    color: #001a33;
    border-color: rgba(0, 26, 51, 0.14);
    box-shadow: 0 6px 20px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
}

.rts-premium-hero-scope .rts-premium-hero__btn--secondary:hover {
    color: #001a33;
    background: #fff;
    border-color: rgba(255, 105, 0, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.1);
}

.rts-premium-hero-scope .rts-premium-hero__btn--secondary:active {
    transform: translateY(-1px);
}

.rts-premium-hero-scope .rts-premium-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 3vw, 28px);
    animation: rtsPremiumHeroIn 0.85s ease 0.08s both;
}

.rts-premium-hero-scope .rts-premium-hero__visual-ring {
    position: absolute;
    width: min(92%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(from 210deg, rgba(255, 105, 0, 0.2), rgba(0, 38, 77, 0.08), rgba(255, 105, 0, 0.15));
    filter: blur(0.5px);
    z-index: 0;
}

.rts-premium-hero-scope .rts-premium-hero__visual-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: clamp(14px, 2.5vw, 22px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 24px 48px rgba(0, 26, 51, 0.1),
        0 4px 12px rgba(0, 26, 51, 0.04);
}

.rts-premium-hero-scope .rts-premium-hero__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .rts-premium-hero-scope .rts-premium-hero__content {
        max-width: none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .rts-premium-hero-scope .rts-premium-hero__eyebrow {
        justify-content: center;
    }

    .rts-premium-hero-scope .rts-premium-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rts-premium-hero-scope .rts-premium-hero__actions {
        justify-content: center;
    }
}

/* ===== RTS premium hero â€” trust bar (below hero) ===== */
.rts-premium-hero-scope .rts-trust-bar {
    padding: 0 0 clamp(28px, 5vw, 48px);
}

.rts-premium-hero-scope .rts-trust-bar__panel {
    background: linear-gradient(180deg, #fafbfd 0%, #f4f7fb 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 10px 36px rgba(0, 26, 51, 0.08),
        0 2px 6px rgba(0, 26, 51, 0.04);
    padding: clamp(22px, 3.2vw, 32px) clamp(14px, 2vw, 22px);
}

.rts-premium-hero-scope .rts-trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 10px 12px;
    min-height: 100%;
}

.rts-premium-hero-scope .rts-trust-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary, #ff6900);
    font-size: 1.28rem;
    flex-shrink: 0;
}

.rts-premium-hero-scope .rts-trust-bar__text {
    font-size: 0.97rem;
    font-weight: 700;
    color: #001a33;
    line-height: 1.4;
    max-width: 15rem;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .rts-premium-hero-scope .rts-trust-bar__item {
        padding: 14px 16px;
    }
}

/* ===== RTS â€” about / introduction (text + image) ===== */
.rts-premium-hero-scope .rts-about-intro {
    padding: clamp(48px, 7vw, 92px) 0;
    background: #ffffff;
}

.rts-premium-hero-scope .rts-about-intro__title {
    font-size: clamp(1.65rem, 1.15rem + 1.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #001a33;
    margin-bottom: clamp(1.15rem, 2vw, 1.5rem);
    max-width: 22ch;
}

.rts-premium-hero-scope .rts-about-intro__text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #3d4f63;
    margin-bottom: 1.35rem;
    max-width: 42rem;
}

.rts-premium-hero-scope .rts-about-intro__text:last-of-type {
    margin-bottom: 0;
}

.rts-premium-hero-scope .rts-about-intro__figure {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #f2f6fb 0%, #ffffff 100%);
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 22px 48px rgba(0, 26, 51, 0.1),
        0 4px 12px rgba(0, 26, 51, 0.04);
}

.rts-premium-hero-scope .rts-about-intro__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

@media (max-width: 991px) {
    .rts-premium-hero-scope .rts-about-intro__title {
        max-width: none;
    }

    .rts-premium-hero-scope .rts-about-intro__figure {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Thesis editing â€” challenges section (career-and-skills-suite inspired) ===== */
.thesis-editing-page .tes-challenges-section {
    position: relative;
    overflow: hidden;
}

.thesis-editing-page .tes-challenges-kicker {
    justify-content: flex-start;
    margin-bottom: 0.85rem;
}

.thesis-editing-page .tes-challenges-title {
    text-align: left;
    margin-bottom: 1rem;
    max-width: 18ch;
}

.thesis-editing-page .tes-challenges-lead {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 1.5rem;
    max-width: 38rem;
}

.thesis-editing-page .tes-challenges-pains {
    margin-bottom: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 28px rgba(0, 26, 51, 0.06);
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.thesis-editing-page .tes-challenges-pains:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.08);
}

.thesis-editing-page .tes-challenges-pain-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thesis-editing-page .tes-challenges-pain-list li {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-dark, #0b192c);
    list-style: none;
    margin: 0;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 26, 51, 0.05);
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.thesis-editing-page .tes-challenges-pain-list li:hover {
    background: #fff;
    transform: translateX(4px);
}

.thesis-editing-page .tes-challenges-pain-list li span {
    flex: 1;
    min-width: 0;
}

.thesis-editing-page .tes-challenges-pain-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    width: 22px;
    height: 22px;
    font-size: 11px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.15);
    color: var(--primary);
}

.thesis-editing-page .tes-challenges-result {
    position: relative;
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.35rem 1.25rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(105deg, #3d2020 0%, #2a1515 45%, #1f1218 100%);
    border: 1px solid rgba(201, 74, 58, 0.35);
    box-shadow: 0 14px 36px rgba(201, 74, 58, 0.2);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.thesis-editing-page .tes-challenges-result::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #ff8a75 0%, #c94a3a 100%);
}

.thesis-editing-page .tes-challenges-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(201, 74, 58, 0.28);
}

.thesis-editing-page .tes-challenges-result__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffb4a8;
    margin-bottom: 8px;
}

.thesis-editing-page .tes-challenges-result__text {
    margin: 0;
    font-size: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.thesis-editing-page .tes-challenges-solution {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(255, 105, 0, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.thesis-editing-page .tes-challenges-solution:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 105, 0, 0.45);
    box-shadow: 0 18px 48px rgba(255, 105, 0, 0.16);
}

.thesis-editing-page .tes-challenges-solution__quote {
    margin: 0 0 1.25rem;
    font-size: clamp(1.2rem, 1rem + 0.55vw, 1.45rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.thesis-editing-page .tes-challenges-actions {
    justify-content: flex-start;
}

.thesis-editing-page .tes-challenges-visual {
    margin: 0;
    height: 100%;
}

.thesis-editing-page .tes-challenges-visual__frame {
    position: relative;
    height: 100%;
    min-height: clamp(320px, 52vh, 560px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow:
        0 20px 48px rgba(0, 26, 51, 0.12),
        0 8px 24px rgba(255, 105, 0, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.thesis-editing-page .tes-challenges-visual:hover .tes-challenges-visual__frame {
    box-shadow:
        0 28px 56px rgba(0, 26, 51, 0.14),
        0 12px 32px rgba(255, 105, 0, 0.12);
    transform: translateY(-4px);
}

.thesis-editing-page .tes-challenges-visual__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 26, 51, 0.08) 0%,
        transparent 35%,
        transparent 65%,
        rgba(0, 26, 51, 0.12) 100%
    );
}

.thesis-editing-page .tes-challenges-visual__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
    .thesis-editing-page .tes-challenges-pain-list li:hover,
    .thesis-editing-page .tes-challenges-result:hover,
    .thesis-editing-page .tes-challenges-solution:hover,
    .thesis-editing-page .tes-challenges-visual:hover .tes-challenges-visual__frame {
        transform: none;
    }

    .thesis-editing-page .tes-challenges-pain-list li,
    .thesis-editing-page .tes-challenges-solution {
        transition: none;
    }
}

@media (max-width: 991px) {
    .thesis-editing-page .tes-challenges-title {
        max-width: none;
    }

    .thesis-editing-page .tes-challenges-visual {
        max-width: 520px;
        margin: 0 auto 1.5rem;
    }

    .thesis-editing-page .tes-challenges-visual__frame {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .thesis-editing-page .tes-challenges-actions {
        flex-direction: column;
        width: 100%;
    }

    .thesis-editing-page .tes-challenges-actions .acss-cta-btn {
        width: 100%;
        max-width: none;
    }

    .thesis-editing-page .tes-challenges-visual__frame {
        min-height: 260px;
        border-radius: 18px;
    }
}

/* ===== Thesis Editing â€” Services section (premium cards) ===== */
.thesis-editing-page .tes-services-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
    overflow: hidden;
}

.thesis-editing-page .tes-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 12% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 88% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.thesis-editing-page .tes-services-section > .container {
    position: relative;
    z-index: 1;
}

.thesis-editing-page .tes-services-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.thesis-editing-page .tes-services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.thesis-editing-page .tes-services-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.thesis-editing-page .tes-services-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.thesis-editing-page .tes-services-intro {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.thesis-editing-page .tes-services-desc {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.thesis-editing-page .tes-service-card {
    --tes-card-accent: var(--primary);
    --tes-card-accent-soft: rgba(255, 105, 0, 0.12);
    --tes-card-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    --tes-card-icon-border: rgba(255, 105, 0, 0.28);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.thesis-editing-page .tes-service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tes-card-accent) 0%, transparent 100%);
    opacity: 0.95;
    transition: height 0.32s ease, opacity 0.32s ease;
}

.thesis-editing-page .tes-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(0, 26, 51, 0.12);
}

.thesis-editing-page .tes-service-card:hover .tes-service-card__accent {
    height: 5px;
}

.thesis-editing-page .tes-service-card--writing {
    --tes-card-accent: #ff6900;
    --tes-card-accent-soft: rgba(255, 105, 0, 0.14);
    --tes-card-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    --tes-card-icon-border: rgba(255, 105, 0, 0.3);
}

.thesis-editing-page .tes-service-card--research {
    --tes-card-accent: #0d9488;
    --tes-card-accent-soft: rgba(13, 148, 136, 0.14);
    --tes-card-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #ccfbf1 100%);
    --tes-card-icon-border: rgba(13, 148, 136, 0.28);
}

.thesis-editing-page .tes-service-card--development {
    --tes-card-accent: #6366f1;
    --tes-card-accent-soft: rgba(99, 102, 241, 0.14);
    --tes-card-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
    --tes-card-icon-border: rgba(99, 102, 241, 0.28);
}

.thesis-editing-page .tes-service-card--submission {
    --tes-card-accent: #059669;
    --tes-card-accent-soft: rgba(5, 150, 105, 0.14);
    --tes-card-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    --tes-card-icon-border: rgba(5, 150, 105, 0.28);
}

.thesis-editing-page .tes-service-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.thesis-editing-page .tes-service-card__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--tes-card-icon-bg);
    border: 1px solid var(--tes-card-icon-border);
    color: var(--tes-card-accent);
    font-size: 21px;
    box-shadow: 0 6px 18px var(--tes-card-accent-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.thesis-editing-page .tes-service-card:hover .tes-service-card__icon {
    transform: scale(1.06);
}

.thesis-editing-page .tes-service-card__meta {
    min-width: 0;
    flex: 1;
}

.thesis-editing-page .tes-service-card__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.45rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--tes-card-accent-soft);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--tes-card-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.thesis-editing-page .tes-service-card__title {
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.thesis-editing-page .tes-service-card__lead {
    margin: 0 0 1.15rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.62;
    color: #475569;
}

.thesis-editing-page .tes-service-card__includes {
    margin-bottom: 1rem;
    padding: 1rem 1.05rem 0.9rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 26, 51, 0.06);
    border-radius: 14px;
}

.thesis-editing-page .tes-service-card__label {
    margin: 0 0 0.7rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(0, 26, 51, 0.08);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
}

.thesis-editing-page .tes-service-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.thesis-editing-page .tes-service-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #334155;
}

.thesis-editing-page .tes-service-card__list li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tes-card-accent-soft);
    color: var(--tes-card-accent);
    font-size: 9px;
}

.thesis-editing-page .tes-service-card__best-for {
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #eef2ff 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
    border-radius: 12px;
    transition: background 0.32s ease;
}

.thesis-editing-page .tes-service-card:hover .tes-service-card__best-for {
    background: linear-gradient(135deg, #eef2f7 0%, #e8ecff 100%);
}

.thesis-editing-page .tes-service-card__best-for-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.35rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.thesis-editing-page .tes-service-card__best-for-label i {
    color: #94a3b8;
    font-size: 12px;
}

.thesis-editing-page .tes-service-card__best-for-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.55;
    color: #334155;
}

.thesis-editing-page .tes-service-card__outcome {
    margin-top: auto;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(5, 150, 105, 0.22);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: box-shadow 0.32s ease, border-color 0.32s ease;
}

.thesis-editing-page .tes-service-card:hover .tes-service-card__outcome {
    border-color: rgba(5, 150, 105, 0.35);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.12);
}

.thesis-editing-page .tes-service-card__outcome-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.35rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #047857;
}

.thesis-editing-page .tes-service-card__outcome-label i {
    font-size: 12px;
}

.thesis-editing-page .tes-service-card__outcome-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.55;
    color: #065f46;
}

@media (max-width: 991px) {
    .thesis-editing-page .tes-services-head {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .thesis-editing-page .tes-service-card {
        padding: 1.25rem 1.15rem;
    }

    .thesis-editing-page .tes-service-card__header {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .thesis-editing-page .tes-service-card,
    .thesis-editing-page .tes-service-card__icon,
    .thesis-editing-page .tes-service-card__accent,
    .thesis-editing-page .tes-service-card__best-for,
    .thesis-editing-page .tes-service-card__outcome {
        transition: none;
    }

    .thesis-editing-page .tes-service-card:hover {
        transform: none;
    }

    .thesis-editing-page .tes-service-card:hover .tes-service-card__icon {
        transform: none;
    }
}

/* ===== Thesis Editing â€” Process timeline (4 phases) ===== */
.thesis-editing-page .tes-process-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.thesis-editing-page .tes-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.thesis-editing-page .tes-process-section > .container {
    position: relative;
    z-index: 1;
}

.thesis-editing-page .tes-process-head {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.thesis-editing-page .tes-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.thesis-editing-page .tes-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.thesis-editing-page .tes-process-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.thesis-editing-page .tes-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    position: relative;
}

.thesis-editing-page .tes-process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.thesis-editing-page .tes-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.thesis-editing-page .tes-process-step__track {
    display: none;
}

.thesis-editing-page .tes-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.35rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.thesis-editing-page .tes-process-step:nth-child(even) .tes-process-step__card {
    margin-top: clamp(12px, 2vw, 20px);
}

.thesis-editing-page .tes-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.thesis-editing-page .tes-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: -2.35rem auto 1rem;
    width: fit-content;
}

.thesis-editing-page .tes-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4eb 0%, #ffe8d9 100%);
    border: 1px solid rgba(255, 105, 0, 0.35);
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.15);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.thesis-editing-page .tes-process-step__card:hover .tes-process-step__num {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.22);
}

.thesis-editing-page .tes-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.thesis-editing-page .tes-process-step__card:hover .tes-process-step__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.thesis-editing-page .tes-process-step__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    text-align: center;
}

.thesis-editing-page .tes-process-step__desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    text-align: center;
}

/* ===== Thesis Editing â€” Why Choose Us (feature cards) ===== */
.thesis-editing-page .tes-why-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: #ffffff;
    overflow: hidden;
}

.thesis-editing-page .tes-why-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(720px, 86%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 26, 51, 0.08), transparent);
    pointer-events: none;
}

.thesis-editing-page .tes-why-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.thesis-editing-page .tes-why-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.thesis-editing-page .tes-why-sub {
    margin: 0 auto;
    max-width: 38rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: #64748b;
}

.thesis-editing-page .tes-why-grid {
    --tes-why-gap: 1.5rem;
}

@media (min-width: 1200px) {
    .thesis-editing-page .tes-why-grid__offset {
        margin-left: auto;
    }

    .thesis-editing-page .tes-why-grid > .col-xl-4:nth-child(4) {
        margin-left: 16.666667%;
    }
}

.thesis-editing-page .tes-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.thesis-editing-page .tes-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 105, 0, 0.2) 100%);
    opacity: 0.85;
    transition: height 0.32s ease;
}

.thesis-editing-page .tes-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.thesis-editing-page .tes-why-card:hover::before {
    height: 4px;
}

.thesis-editing-page .tes-why-card__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 21px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.thesis-editing-page .tes-why-card:hover .tes-why-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.thesis-editing-page .tes-why-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.02rem, 1.8vw, 1.12rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.thesis-editing-page .tes-why-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #64748b;
}

.thesis-editing-page .tes-why-kw {
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(180deg, transparent 62%, rgba(255, 105, 0, 0.18) 62%);
    padding: 0 1px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .thesis-editing-page .tes-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .thesis-editing-page .tes-process-timeline::before {
        display: none;
    }

    .thesis-editing-page .tes-process-step:nth-child(even) .tes-process-step__card {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .thesis-editing-page .tes-process-timeline {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 28px);
        max-width: 560px;
        margin: 0 auto;
    }

    .thesis-editing-page .tes-process-timeline::before {
        display: none;
    }

    .thesis-editing-page .tes-process-step__track {
        display: none;
    }

    .thesis-editing-page .tes-process-step:nth-child(even) .tes-process-step__card {
        margin-top: 0;
    }

    .thesis-editing-page .tes-process-step__card {
        text-align: left;
    }

    .thesis-editing-page .tes-process-step__node {
        flex-direction: row;
        margin: -2rem auto 1rem;
        width: 100%;
        justify-content: center;
    }

    .thesis-editing-page .tes-why-grid > .col-xl-4:nth-child(4) {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .thesis-editing-page .tes-process-step__card,
    .thesis-editing-page .tes-process-step__icon,
    .thesis-editing-page .tes-process-step__num,
    .thesis-editing-page .tes-why-card,
    .thesis-editing-page .tes-why-card__icon,
    .thesis-editing-page .tes-why-card::before {
        transition: none;
    }

    .thesis-editing-page .tes-process-step__card:hover,
    .thesis-editing-page .tes-why-card:hover {
        transform: none;
    }

    .thesis-editing-page .tes-process-step__card:hover .tes-process-step__icon,
    .thesis-editing-page .tes-process-step__card:hover .tes-process-step__num,
    .thesis-editing-page .tes-why-card:hover .tes-why-card__icon {
        transform: none;
    }
}

/* ===== Thesis Editing â€” Results statistics ===== */
.thesis-editing-page .tes-results-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 28%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.thesis-editing-page .tes-results-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(5, 150, 105, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 90% 80%, rgba(255, 105, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.thesis-editing-page .tes-results-section > .container {
    position: relative;
    z-index: 1;
}

.thesis-editing-page .tes-results-head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.thesis-editing-page .tes-results-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.thesis-editing-page .tes-results-sub {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: #64748b;
}

.thesis-editing-page .tes-stat-card {
    --tes-stat-accent: var(--primary);
    --tes-stat-soft: rgba(255, 105, 0, 0.12);
    --tes-stat-gradient: linear-gradient(165deg, #fff8f2 0%, #ffffff 55%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: var(--tes-stat-gradient);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.07);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.thesis-editing-page .tes-stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, var(--tes-stat-soft) 0%, transparent 68%);
    pointer-events: none;
}

.thesis-editing-page .tes-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 26, 51, 0.11);
    border-color: rgba(0, 26, 51, 0.12);
}

.thesis-editing-page .tes-stat-card--theses {
    --tes-stat-accent: #ff6900;
    --tes-stat-soft: rgba(255, 105, 0, 0.16);
    --tes-stat-gradient: linear-gradient(165deg, #fff8f2 0%, #ffffff 58%);
}

.thesis-editing-page .tes-stat-card--approval {
    --tes-stat-accent: #059669;
    --tes-stat-soft: rgba(5, 150, 105, 0.16);
    --tes-stat-gradient: linear-gradient(165deg, #ecfdf5 0%, #ffffff 58%);
}

.thesis-editing-page .tes-stat-card--time {
    --tes-stat-accent: #6366f1;
    --tes-stat-soft: rgba(99, 102, 241, 0.14);
    --tes-stat-gradient: linear-gradient(165deg, #eef2ff 0%, #ffffff 58%);
}

.thesis-editing-page .tes-stat-card--institutions {
    --tes-stat-accent: #0d9488;
    --tes-stat-soft: rgba(13, 148, 136, 0.14);
    --tes-stat-gradient: linear-gradient(165deg, #ecfdf5 0%, #ffffff 58%);
}

.thesis-editing-page .tes-stat-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 26, 51, 0.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.thesis-editing-page .tes-stat-card__badge--success {
    color: #047857;
    border-color: rgba(5, 150, 105, 0.22);
    background: rgba(236, 253, 245, 0.9);
}

.thesis-editing-page .tes-stat-card__badge i {
    font-size: 10px;
    color: var(--tes-stat-accent);
}

.thesis-editing-page .tes-stat-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    color: var(--tes-stat-accent);
    font-size: 21px;
    box-shadow: 0 6px 18px var(--tes-stat-soft);
    transition: transform 0.32s ease;
}

.thesis-editing-page .tes-stat-card:hover .tes-stat-card__icon {
    transform: scale(1.06);
}

.thesis-editing-page .tes-stat-card__value-wrap {
    margin: 0 0 0.35rem;
}

.thesis-editing-page .tes-stat-card__value {
    display: block;
    font-size: clamp(2rem, 4.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--tes-stat-accent);
    font-variant-numeric: tabular-nums;
}

.thesis-editing-page .tes-stat-card__label {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.55;
    color: #475569;
}

.thesis-editing-page .tes-stat-card__progress {
    margin-top: auto;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.thesis-editing-page .tes-stat-card__progress-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--tes-stat-accent) 0%, rgba(255, 255, 255, 0.2) 100%);
    transition: width 1.2s ease;
}

.thesis-editing-page .tes-stat-card.is-counted .tes-stat-card__progress-bar {
    animation: tes-stat-bar-grow 1.2s ease forwards;
}

@keyframes tes-stat-bar-grow {
    from { transform: scaleX(0.3); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

/* ===== Thesis Editing â€” FAQ (premium accordion) ===== */
.thesis-editing-page .tes-faq-section {
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
}

.thesis-editing-page .tes-faq-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.thesis-editing-page .tes-faq-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.thesis-editing-page .tes-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thesis-editing-page .tes-faq-accordion .tes-faq-item {
    margin: 0;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.thesis-editing-page .tes-faq-accordion .tes-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.08);
}

.thesis-editing-page .tes-faq-accordion .accordion-header {
    margin: 0;
}

.thesis-editing-page .tes-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    border: 0;
    transition: color 0.25s ease, background 0.25s ease;
}

.thesis-editing-page .tes-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.thesis-editing-page .tes-faq-accordion .accordion-button::after {
    display: none;
}

.thesis-editing-page .tes-faq-item__q {
    flex: 1;
    text-align: left;
}

.thesis-editing-page .tes-faq-item__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 26, 51, 0.08);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.thesis-editing-page .tes-faq-item__toggle::before,
.thesis-editing-page .tes-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, background 0.25s ease;
}

.thesis-editing-page .tes-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.thesis-editing-page .tes-faq-accordion .accordion-button:not(.collapsed) .tes-faq-item__toggle {
    background: rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.25);
}

.thesis-editing-page .tes-faq-accordion .accordion-button:not(.collapsed) .tes-faq-item__toggle::before,
.thesis-editing-page .tes-faq-accordion .accordion-button:not(.collapsed) .tes-faq-item__toggle::after {
    background: var(--primary);
}

.thesis-editing-page .tes-faq-accordion .accordion-button:not(.collapsed) .tes-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.thesis-editing-page .tes-faq-accordion .accordion-button:hover .tes-faq-item__toggle {
    border-color: rgba(255, 105, 0, 0.3);
}

.thesis-editing-page .tes-faq-accordion .accordion-body,
.thesis-editing-page .tes-faq-item__a {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.thesis-editing-page .tes-faq-accordion .accordion-collapse {
    transition: height 0.32s ease;
}

@media (prefers-reduced-motion: reduce) {
    .thesis-editing-page .tes-stat-card,
    .thesis-editing-page .tes-stat-card__icon,
    .thesis-editing-page .tes-stat-card__progress-bar,
    .thesis-editing-page .tes-faq-accordion .tes-faq-item,
    .thesis-editing-page .tes-faq-item__toggle,
    .thesis-editing-page .tes-faq-item__toggle::before,
    .thesis-editing-page .tes-faq-item__toggle::after {
        transition: none;
        animation: none;
    }

    .thesis-editing-page .tes-stat-card:hover {
        transform: none;
    }

    .thesis-editing-page .tes-stat-card:hover .tes-stat-card__icon {
        transform: none;
    }
}

/* ===== RTS â€” services grid (10 cards) ===== */
.rts-premium-hero-scope .rts-services-section {
    padding: clamp(48px, 6vw, 88px) 0;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 48%, #fafbfd 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
}

.rts-premium-hero-scope .rts-services-section .section-title {
    margin-bottom: clamp(24px, 3.5vw, 40px);
}

.rts-premium-hero-scope .rts-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 16px;
    padding: 1.45rem 1.35rem;
    box-shadow: 0 8px 26px rgba(0, 26, 51, 0.06);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.rts-premium-hero-scope .rts-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.28);
}

.rts-premium-hero-scope .rts-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f4f8fc 0%, #fff8f2 100%);
    border: 1px solid rgba(0, 26, 51, 0.07);
    color: var(--primary, #ff6900);
    font-size: 1.28rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rts-premium-hero-scope .rts-service-card:hover .rts-service-card__icon {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.14);
}

.rts-premium-hero-scope .rts-service-card__title {
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.32;
    color: #001a33;
    margin: 0 0 0.7rem;
}

.rts-premium-hero-scope .rts-service-card__desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.72;
    color: #4b5f73;
    flex-grow: 1;
}

/* ===== RTS â€” How We Work (4-step timeline) ===== */
.rts-premium-hero-scope .rts-how-we-work {
    padding: clamp(48px, 6vw, 88px) 0;
    background: #fff;
    border-top: 1px solid rgba(0, 26, 51, 0.06);
}

.rts-premium-hero-scope .rts-how-we-work .section-title {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.rts-premium-hero-scope .rts-work-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.rts-premium-hero-scope .rts-work-timeline::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 10%;
    right: 10%;
    top: 31px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.2) 0%,
        rgba(255, 105, 0, 0.55) 25%,
        rgba(255, 105, 0, 0.55) 75%,
        rgba(255, 105, 0, 0.2) 100%
    );
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.rts-premium-hero-scope .rts-work-step {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 0 clamp(6px, 1.2vw, 12px);
}

.rts-premium-hero-scope .rts-work-step__node {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid var(--primary, #ff6900);
    box-shadow:
        0 0 0 4px #fff,
        0 10px 28px rgba(0, 26, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary, #ff6900);
    letter-spacing: -0.02em;
}

.rts-premium-hero-scope .rts-work-step__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #001a33;
    margin: 0 0 0.55rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.rts-premium-hero-scope .rts-work-step__title i {
    color: var(--primary, #ff6900);
    font-size: 1rem;
    opacity: 0.92;
}

.rts-premium-hero-scope .rts-work-step__desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.68;
    color: #4b5f73;
    max-width: 17rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .rts-premium-hero-scope .rts-work-timeline {
        flex-direction: column;
        align-items: stretch;
        padding-left: 8px;
    }

    .rts-premium-hero-scope .rts-work-timeline::before {
        left: calc(8px + 32px - 2px);
        right: auto;
        top: 12px;
        bottom: 12px;
        width: 4px;
        height: auto;
        background: linear-gradient(
            180deg,
            rgba(255, 105, 0, 0.25) 0%,
            rgba(255, 105, 0, 0.55) 20%,
            rgba(255, 105, 0, 0.55) 80%,
            rgba(255, 105, 0, 0.25) 100%
        );
    }

    .rts-premium-hero-scope .rts-work-step {
        display: grid;
        grid-template-columns: 64px 1fr;
        grid-template-areas:
            "node title"
            "node desc";
        column-gap: 1.15rem;
        row-gap: 0.35rem;
        text-align: left;
        padding: 0 0 1.65rem;
        margin: 0;
    }

    .rts-premium-hero-scope .rts-work-step:last-child {
        padding-bottom: 0;
    }

    .rts-premium-hero-scope .rts-work-step__node {
        grid-area: node;
        margin: 0;
        align-self: start;
    }

    .rts-premium-hero-scope .rts-work-step__title {
        grid-area: title;
        justify-content: flex-start;
        margin-bottom: 0.25rem;
    }

    .rts-premium-hero-scope .rts-work-step__desc {
        grid-area: desc;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===== RTS â€” Why Choose Us (6-point grid) ===== */
.rts-premium-hero-scope .rts-why-us {
    padding: clamp(48px, 6vw, 88px) 0;
    background: linear-gradient(165deg, #eef3f8 0%, #f6f9fc 42%, #edf2f7 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    border-bottom: 1px solid rgba(0, 26, 51, 0.05);
}

.rts-premium-hero-scope .rts-why-us .section-title {
    margin-bottom: clamp(24px, 3.5vw, 40px);
}

.rts-premium-hero-scope .rts-why-us__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .rts-premium-hero-scope .rts-why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

@media (min-width: 992px) {
    .rts-premium-hero-scope .rts-why-us__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.rts-premium-hero-scope .rts-why-us__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    padding: 1.15rem 1.2rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 26, 51, 0.07);
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0, 26, 51, 0.05);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rts-premium-hero-scope .rts-why-us__item:hover {
    border-color: rgba(255, 105, 0, 0.22);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.08);
    transform: translateY(-2px);
}

.rts-premium-hero-scope .rts-why-us__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.14) 0%, rgba(255, 105, 0, 0.06) 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    color: var(--primary, #ff6900);
    font-size: 1.15rem;
}

.rts-premium-hero-scope .rts-why-us__text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
    color: #1a334d;
    padding-top: 2px;
}

/* ===== RTS â€” Results / What You Get ===== */
.rts-premium-hero-scope .rts-results-get {
    padding: clamp(48px, 6vw, 88px) 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 26, 51, 0.06);
}

.rts-premium-hero-scope .rts-results-get .section-title {
    margin-bottom: clamp(24px, 3.5vw, 40px);
}

.rts-premium-hero-scope .rts-results-get__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

@media (min-width: 768px) {
    .rts-premium-hero-scope .rts-results-get__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .rts-premium-hero-scope .rts-results-get__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1rem;
    }
}

.rts-premium-hero-scope .rts-results-get__card {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.2rem;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 55%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 16px;
    border-top: 3px solid var(--primary, #ff6900);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rts-premium-hero-scope .rts-results-get__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
    border-color: rgba(255, 105, 0, 0.28);
}

.rts-premium-hero-scope .rts-results-get__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255, 105, 0, 0.1);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary, #ff6900);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rts-premium-hero-scope .rts-results-get__title {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.3;
    color: #001a33;
    margin: 0 0 0.55rem;
    letter-spacing: -0.01em;
}

.rts-premium-hero-scope .rts-results-get__desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #4b5f73;
    flex-grow: 1;
}

/* ===== THANK YOU ===== */
.thank-you-sec { padding-top: 100px; padding-bottom: 100px; }
.thank-you-sec .heading-sec h1 { font-size: 50px; font-weight: 700; color: var(--white); margin-top: 15px; }
.thank-you-sec .heading-sec p  { font-size: 20px; color: var(--white); }
.thank-you-sec .heading-sec > span { color: var(--white); font-size: 20px; }
.thank-you-sec .heading-sec p > a { color: var(--white); }

/* ===== TOP FORM ===== */
.top-form { padding: 20px 0; background-color: var(--gray); }

.form_row {
  background: var(--white);
  box-shadow: 2px 4px 20px rgba(143,143,143,0.13);
  padding: 25px 30px;
  margin-top: -50px;
}

.top-form input, .top-form select {
  width: 100%;
  border: 1px solid #EDECF1;
  border-radius: 5px;
  height: 50px;
  background-color: #EDECF1;
  font-size: 15px; color: #000;
}

.top-form input::placeholder { color: #1e1e1e !important; font-weight: 500; }
.top-form input:focus, .top-form select:focus {
  background-color: #EDECF1; color: #1e1e1e;
  border-color: #EDECF1 !important; box-shadow: none; outline: none;
}
.form-flex {
    align-items: end;
    background-color: #fff;
    padding: 25px;
}
.form-flex .form-inner { width: 100%;    padding: 10px 0; }
.form-flex .form-inner label { color: var(--text-dark); font-size: 16px; margin-bottom: 5px; }
.form-button button:hover { border-color: var(--primary); }

/* ===== CLIENT LOGOS ===== */
.client { padding-top: 0; padding-bottom: 30px; background: var(--white); border-bottom: 1px solid #E5E7EB; }
.client img { margin: auto; }

/* ===== SEC FOUR ===== */
.sec-four .left-col > h3 { font-size: 35px; font-weight: 500; color: var(--dark); }
.sec-four .left-col > h2 { font-size: 37px; font-weight: 700; color: var(--dark); }
.sec-four .left-col > p  { font-size: 16px; font-weight: 400; }

.adv-publication-carousel {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 16px;
  padding: 14px 14px 10px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.adv-publication-header {
  margin-bottom: 10px;
}

.adv-publication-header h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.adv-publication-slider {
  margin: 0 -4px;
}

.adv-publication-card {
  background: #f8f9fb;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin: 0 4px;
  min-height: 276px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.adv-publication-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.adv-publication-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.adv-publication-top img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e1e8ef;
  flex-shrink: 0;
}

.adv-publication-copy {
  flex: 1;
}

.adv-publication-top h4 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.adv-publication-top p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #4a5565;
}

.adv-publication-metric {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dce3eb;
  border-radius: 6px;
  padding: 6px 10px;
}

.adv-publication-stats {
  border: 1px solid #dce3eb;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.adv-publication-stats-head,
.adv-publication-stats-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
}

.adv-publication-stats-head {
  background: #f1f4f8;
}

.adv-publication-stats-head span,
.adv-publication-stats-row span {
  display: block;
  padding: 7px 8px;
  font-size: 12px;
  line-height: 1.2;
  color: #334155;
  border-right: 1px solid #dce3eb;
}

.adv-publication-stats-head span:last-child,
.adv-publication-stats-row span:last-child {
  border-right: 0;
}

.adv-publication-stats-row + .adv-publication-stats-row span {
  border-top: 1px solid #dce3eb;
}

.adv-publication-stats-row span:first-child {
  font-weight: 600;
}

.adv-publication-stats-head span:first-child {
  font-weight: 700;
}

.adv-publication-carousel .slick-dots {
  display: none !important;
}

.adv-publication-carousel .slick-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dce3eb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.2s ease;
}

.adv-publication-carousel .slick-arrow:hover {
  background: #fff5ed;
  border-color: #ffc9a3;
}

.adv-publication-carousel .slick-arrow:before {
  color: var(--primary);
  font-size: 20px;
  opacity: 1;
}

.adv-publication-carousel .slick-prev { left: -12px; }
.adv-publication-carousel .slick-next { right: -12px; }

@media (max-width: 991px) {
  .adv-publication-header h3 {
    font-size: 28px;
  }
  .adv-publication-carousel {
    margin-bottom: 16px;
  }
  .adv-publication-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .adv-publication-header h3 {
    font-size: 24px;
  }
  .adv-publication-top {
    flex-direction: column;
  }
  .adv-publication-top img {
    width: 100%;
    height: 160px;
  }
  .adv-publication-top h4 {
    font-size: 20px;
  }
  .adv-publication-carousel .slick-prev { left: -6px; }
  .adv-publication-carousel .slick-next { right: -6px; }
}

/* ===== HR ===== */
.line { padding: 20px 0; }
.line hr { background-color: #000; opacity: 0.2; height: 2px !important; margin-bottom: 0; }

/* ===== SEC FIVE ===== */
.sec-five { padding-bottom: 50px; }
.sec-five img { width: 73%; }
.sec-five .sec-five-img { position: relative; }
.sec-five .sec-five-img .boxes-sec { position: absolute; top: 23%; right: 17%; max-width: 55%; display: flex; gap: 12px; }
.sec-five .sec-five-img .boxes-sec .boxes-inner { background: var(--bg-light); padding: 25px; width: 49.333%; }
.sec-five .sec-five-img .boxes-sec .boxes-inner h4 { font-size: 16px; font-weight: 600; color: var(--dark); }
.sec-five .para-sec { background: var(--white); box-shadow: 2px 4px 20px rgba(143,143,143,0.13); padding: 35px 25px; width: 62%; float: right; margin-top: -210px; z-index: 1; position: relative; }

/* ===== SEC SIX ===== */
.sec-six { padding-top: 50px; }
.sec-six .sec-six-inner { background: var(--white); box-shadow: 2px 4px 20px rgba(143,143,143,0.13); padding: 25px; transition: all ease 0.3s; }
.sec-six .sec-six-inner:hover { transform: scale(1.05); }
.sec-six .sec-six-inner h4 { font-size: 18px; font-weight: 600; color: var(--dark); }
.sec-six .sec-six-inner > a { color: var(--primary); font-size: 16px; }

/* ===== SEC SEVEN ===== */
.sec-seven { padding-top: 0; }
.sec-seven .sec-seven-img > img { width: 80%; }
.sec-seven .para-sec { background: var(--dark); padding: 60px 50px; width: 75%; float: right; margin-top: -260px; z-index: 1; position: relative; }
.sec-seven .para-sec h3 { color: var(--white); font-size: 23px; max-width: 50%; }
.sec-seven .para-sec ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; padding-left: 130px; }
.sec-seven .para-sec li { display: flex; align-items: start; color: #FBFBFB; font-size: 16px; }

/* ===== SEC EIGHT ===== */
.sec-eight-body { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; justify-content: space-between; padding: 35px 20px; }
.sec-eight-body .sec-eight-inner { width: 11.333%; text-align: center; }
.sec-eight-body .sec-eight-inner span { color: var(--text-dark); font-size: 14px; margin-top: 10px; display: block; }

/* ===== SEC NINE ===== */
.sec-nine { background: url(../images/img-5.webp) no-repeat; background-size: cover; padding: 100px 0; }
.sec-nine .row { justify-content: center; text-align: center; }
.sec-nine .sec-nine-body > h3 { color: var(--white); font-size: 30px; font-weight: 700; }
.sec-nine .sec-nine-body > p  { color: var(--white); font-size: 16px; }
.sec-nine .contact-info-inner { background: var(--dark); padding: 15px 30px; }
.sec-nine .contact-info { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
.sec-nine .contact-info-inner > a { color: var(--white); text-decoration: none; font-size: 16px; }

/* ===== WHY CHOOSE US ===== */
.why-choose-us .right-col > h3 { font-size: 38px; font-weight: 700; color: var(--dark); }
.why-choose-us .right-col .why-choose-body { display: flex; flex-wrap: wrap; align-items: start; justify-content: space-between; gap: 10px; }
.why-choose-us .right-col .why-choose-body .box { background: var(--white); box-shadow: 2px 4px 20px rgba(143,143,143,0.13); padding: 25px; width: 49.333%; border-left: 3px solid var(--primary); }
.why-choose-us .right-col .why-choose-body .box > h4 { font-size: 18px; font-weight: 600; color: var(--dark); }

/* ===== SEC ELEVEN ===== */
.sec-eleven { background: url(../images/img-7.webp) no-repeat; background-size: cover; padding: 100px 0; }
.sec-eleven .sec-eleven-body > span { font-size: 25px; color: var(--primary); font-weight: 600; }
.sec-eleven .sec-eleven-body > h3  { font-size: 35px; font-weight: 700; color: var(--white); }
.sec-eleven .sec-eleven-body > p   { font-size: 16px; color: var(--white); }

/* ===== SEC TWELVE ===== */
.sec-twelve .title { text-align: center; }
.sec-twelve .title > h3 { font-size: 60px; font-weight: 700; color: var(--dark); }
.sec-twelve .title > h4 { font-size: 50px; color: var(--dark); }

/* ===== SEC THIRTEEN ===== */
.sec-thirteen { background-color: var(--bg-light); }
.sec-thirteen .thirteen-body { display: flex; flex-direction: column; gap: 20px; }
.sec-thirteen .thirteen-inner { box-shadow: 2px 4px 20px rgba(143,143,143,0.13); background: var(--white); padding: 20px; display: flex; align-items: center; gap: 30px; }
.sec-thirteen .thirteen-inner h3 { font-size: 18px; font-weight: 600; }

/* ===== SEC TEN ===== */
.sec-ten .ten-box { box-shadow: 2px 4px 20px rgba(143,143,143,0.13); padding: 20px; text-align: center; }
.sec-ten .ten-box > img { width: 75px; margin-bottom: 20px; }
.sec-ten .ten-box > h4  { font-size: 18px; font-weight: 600; color: var(--dark); }

/* ===== SEC FOURTEEN ===== */
.sec-fourteen .fourteen-box > h4 { font-size: 18px; font-weight: 600; color: var(--text-dark); }

/* ===== FAQS ===== */
.faqs-sec .faqs-box .accordion-item { border: none; border-radius: 20px !important; margin-bottom: 20px; box-shadow: 2px 4px 20px rgba(143,143,143,0.13); }
.faqs-sec .faqs-box p { font-size: 1rem; font-weight: 400; margin-bottom: 0; }
.faqs-sec .faqs-box h4 button { margin-bottom: 0; font-size: 16px; font-weight: 600; color: var(--dark); }
.faqs-sec .faqs-box .accordion-body { background: var(--white); border-radius: 0 0 20px 20px; padding-top: 0; }
.faqs-sec .faqs-box .accordion-button:not(.collapsed) { color: var(--dark); background-color: var(--white); box-shadow: none; border-radius: 20px 20px 0 0 !important; }
.faqs-sec .faqs-box .accordion-button:focus { border-color: var(--white); box-shadow: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-sec .side-tabs-left .nav-link { text-align: left; padding: 12px 15px; margin-bottom: 12px; color: var(--dark); font-size: 18px; font-weight: 500; }
.testimonials-sec .side-tabs-left .nav-link h4 { font-size: 18px; margin-bottom: 0; }
.testimonials-sec .side-tabs-left .nav-pills .nav-link.active { border-radius: 0 0 0 0; background: var(--white); box-shadow: 2px 4px 20px rgba(143,143,143,0.13); }
.testimonials-sec .side-tabs-desc { background: var(--bg-light); padding: 25px; }
.testimonials-sec .side-tabs-desc .desc-inner .rating > i { color: #FFC403; font-size: 18px; }
.testimonials-sec .side-tabs-desc .desc-inner > h5 { font-size: 22px; margin-top: 15px; }

/* ===== CLIENT REVIEWS ===== */
.client-reviews { padding: 50px 0; }
.client-reviews .client-reviews-box .accordion-item { border: none; border-radius: 20px !important; margin-bottom: 20px; }
.client-reviews .client-reviews-box h4 button { margin-bottom: 0; font-size: 20px; font-weight: 500; border-radius: 20px !important; border: 1px solid #cacaca !important; }
.client-reviews .client-reviews-box h4 button span { font-size: 18px; color: black; }
.client-reviews .client-reviews-box .accordion-body .desc-inner .rating i { color: #FFC403; font-size: 18px; }
.client-reviews .client-reviews-box .accordion-body .desc-inner h5 { font-size: 22px; margin-top: 15px; }
.client-reviews .client-reviews-box .accordion-body { background: var(--bg-light); border-radius: 0 0 20px 20px; }
.client-reviews .client-reviews-box .accordion-button:not(.collapsed) { background-color: var(--white); box-shadow: none; border-radius: 20px 20px 0 0 !important; }
.client-reviews .client-reviews-box .accordion-button:focus { box-shadow: none; }

/* ===== CONTACT US ===== */
.contact-us { padding: 60px 0; }
.contact-us .left-heading { text-align: left; margin-bottom: 40px; }
.contact-us .left-heading h3 { font-size: 40px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.contact-us .left-col { padding: 30px 70px; background: var(--primary); border-radius: 17px; }
.contact-us .left-col h3 { font-size: 35px; font-weight: 700; color: var(--white); }
.contact-us .left-col p  { color: var(--white); margin-bottom: 25px; }
.contact-us .left-col .info-innner { display: flex; align-items: center; gap: 15px; margin-top: 35px; }
.contact-us .left-col .info-innner .contact-whatsapp-icon { font-size: 42px; color: #25d366; min-width: 46px; text-align: center; line-height: 1; }
.contact-us .left-col .info-innner h3 { font-size: 20px; margin-bottom: 8px; }
.contact-us .left-col .info-innner span { color: var(--white); font-size: 18px; display: block; }
.contact-us .left-col .info-innner span > a { color: var(--white); text-decoration: none; }
.contact-us .contact-us-bg { padding: 20px; border: 1px solid #DEDEDE; box-shadow: 0 -1px 17px #CDCDCD; border-radius: 17px; position: relative; overflow: hidden; }
.contact-us .right-col form label { font-size: 16px; font-weight: 600; color: #3B3B3B; display: block; }
.contact-us .right-col form .form-group { margin-top: 20px; }
.contact-us .right-col form .form-group .iti { width: 100%; }
.contact-us .right-col form input, .contact-us .right-col form select, .contact-us .right-col form textarea { border-bottom: 2px solid #292f36 !important; border-top: none; border-left: none; border-right: none; border-radius: 0; padding: 14px 15px 11px; }

/* ===== FORM ===== */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.form-control { resize: none; display: block; width: 100%; padding: 16px 15px; font-size: 1rem; border-radius: 8px; font-weight: 400; line-height: 1.5; border: 1px solid #1e1e1e42; color: #1e1e1e !important; background-color: transparent; font-family: 'Inter', sans-serif; }
.form-control:focus { background-color: transparent; border-color: var(--primary); box-shadow: none !important; outline: none !important; }
::-webkit-input-placeholder { color: #1e1e1e !important; font-weight: 400; }
::-moz-placeholder { color: #1e1e1e !important; font-weight: 400; }
:-ms-input-placeholder { color: #1e1e1e !important; font-weight: 400; }

/* ===== BUTTONS ===== */
.btn-theme, .btn-theme-new, .btn-theme-outline, .btn-theme-orange-outline, .btn-whatsapp {
  padding: 12px 28px;
  display: inline-block;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.btn-theme { border: 2px solid var(--primary); background: var(--primary); color: var(--white); border-radius: 5px; }
.btn-theme:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }

.btn-theme-new { border: 2px solid var(--primary); background: var(--primary); color: var(--white); border-radius: 50px; }
.btn-theme-new:hover { border-color: var(--primary); background: transparent; color: var(--primary); }

.btn-theme-outline { background: var(--dark); color: var(--white); border-radius: 50px; }
.btn-theme-outline:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }

.btn-theme-orange-outline { border: 2px solid var(--white); background: var(--white); color: var(--dark); border-radius: 5px; }
.btn-theme-orange-outline:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }

.btn-whatsapp { border: 2px solid #2ab318; background: #2ab318; color: var(--white); border-radius: 5px; }
.btn-whatsapp:hover { background: transparent; color: #2ab318; }

.btn-check:focus + .btn, .btn:focus { outline: 0; box-shadow: none; }

/* ===== MERGED & RESPONSIVE FOOTER ===== */
.footer { 
    padding-top: 70px; 
    padding-bottom: 20px; 
    background: #001A33; /* Dark Navy Background from your Picker */
    color: #ffffff;
}

/* Left Section: Logo & About */
.footer .footer-left { display: flex; flex-direction: column; gap: 20px; }
.footer .footer-left img { 
    width: 225px; 
    filter: brightness(0) invert(1); 
    margin-bottom: 10px;
}

.footer-about-text, .footer .footer-left > p { 
    color: #D1D5DC; 
    font-size: 14px; 
    line-height: 1.8; 
    margin-bottom: 25px; 
}

/* Social Media Styling */
.social-media-main {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-media-main a img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-media-main a:hover img {
    transform: translateY(-5px);
}

/* Common Links Styling */
.footer-links h3 { 
    color: #ffffff; 
    font-size: 18px; 
    font-weight: 700; 
    border-bottom: 1px solid rgba(255,255,255,0.15); 
    padding-bottom: 12px; 
    margin-bottom: 20px; 
    letter-spacing: 0.5px;
    position: relative;
}

/* Orange accent under heading */
.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: #FF6900;
}

.footer-links ul { 
    padding-left: 0; 
    list-style: none; 
    margin-bottom: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.footer-links ul > li > a { 
    color: #D1D5DC; 
    font-size: 14px; 
    text-decoration: none; 
    transition: all ease 0.3s; 
    font-weight: 400; 
}

.footer-links ul > li > a:hover { 
    color: #FF6900; 
    padding-left: 6px; 
}

/* ===== FOOTER CONTACT LIST ===== */
.footer-contact-list { 
    padding-left: 0; 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    margin-bottom: 0; 
}

.footer-contact-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.footer-contact-icon {
    width: 40px; 
    height: 40px;
    background: rgba(255, 105, 0, 0.1); /* Subtle orange tint */
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon img {
    width: 20px;
    height: auto;
}

.footer-contact-item small {
    color: #8892b0;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.footer-contact-item a, 
.footer-contact-item span {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

/* Bottom Copyright Bar */
footer hr { 
    background: rgba(255,255,255,0.12); 
    opacity: 1; 
    margin: 40px 0 20px;
}

.footer-bootom > p, .copyright-text { 
    color: #D1D5DC; 
    font-size: 14px; 
    margin-bottom: 0; 
}

.footer-bottom-link {
    color: #D1D5DC;
    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #FF6900;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 991px) {
    .footer { padding-top: 50px; }
    .ps-xl-5 { padding-left: 15px !important; }
}

@media (max-width: 767px) {
    .footer .row > div {
        text-align: center;
    }
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-media-main, .footer-contact-item {
        justify-content: center;
    }
    .footer-contact-item {
        flex-direction: column;
        gap: 8px;
    }
    .footer-bottom-link {
        margin: 0 10px;
        display: inline-block;
        margin-top: 10px;
    }
}

/* ===== SOCIAL MEDIA ===== */
.social-media-main { padding-top: 20px; display: flex; align-items: center; gap: 12px; }

.social-media-main > a {
  color: var(--gray);
  font-size: 15px;
  transition: all ease 0.3s;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}

.social-media-main > a:hover { color: var(--white); background: var(--primary); border-color: var(--primary); }

/* ===== ANIMATIONS ===== */
.animate-up { animation: up 3s ease-in-out infinite; }
@keyframes up { 0% { transform: translateY(0); } 50% { transform: translateY(-16px); } 100% { transform: translateY(0); } }

.animate-div { animation: zoom-in-zoom-out 2s ease-out infinite; }
@keyframes zoom-in-zoom-out { 0% { transform: scale(0.9); } 50% { transform: scale(1.2); } 100% { transform: scale(0.9); } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background-color: var(--dark); }

/* ===== MODAL POPUP ===== */
.model-discount span { font-size: 22px; font-weight: 600; color: var(--primary); }
.model-discount label { color: #000; font-size: 15px; font-weight: 500; display: block; }
.model-discount .iti { width: 100%; }
.model-sec .modal-body { padding: 0; position: relative; }
.model-sec .modal-content { border-radius: 30px; border: none; }
.model-discount { padding: 30px 40px; background: var(--white); border-radius: 30px; }
.model-input { border: 2px solid var(--dark); border-radius: 0; padding: 10px 15px; color: var(--dark) !important; }
.model-input:focus { border-color: var(--primary) !important; box-shadow: none !important; }
.model-input::placeholder { color: var(--dark) !important; font-weight: 500; }
.model-discount .btn-close { position: absolute; top: 15px; right: 15px; box-shadow: none; }
.model-discount hr { background-color: var(--dark); opacity: 1; }

/* ===== WHATSAPP FLOAT ===== */
.side-whatsapp { font-weight: 600; padding: 8px 16px 10px; position: fixed; bottom: 20px; left: 10px; background-color: #03a84e; color: #FFF !important; border-radius: 50px; font-size: 25px; z-index: 100; text-decoration: none; animation: up 3s ease-in-out infinite; }

/* ===== LEGAL PAGES (Terms, Privacy) ===== */
.legal-page-section {
  padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 100px);
  background: #fff;
}

.terms-content.legal-document {
  background: #fff;
  border: 1px solid rgba(0, 26, 51, 0.08);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 12px 40px rgba(0, 26, 51, 0.06);
}

.terms-content.legal-document h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e3e62;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 26, 51, 0.08);
}

.terms-content.legal-document h2:first-of-type {
  margin-top: 0;
}

.terms-content.legal-document h3 {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: #1e3e62;
  margin-top: 1.35rem;
  margin-bottom: 0.65rem;
}

.terms-content.legal-document p {
  color: #6a7382;
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.terms-content.legal-document ul {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.terms-content.legal-document ul li {
  color: #6a7382;
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.terms-content.legal-document ul li::marker {
  color: var(--primary);
}

.terms-content.legal-document a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.terms-content.legal-document a:hover {
  text-decoration: underline;
}

.terms-content .legal-contact-block {
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #fff8f2 0%, #f7f9fc 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 105, 0, 0.15);
  border-left: 4px solid var(--primary);
}

.terms-content .legal-contact-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .terms-content.legal-document {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
}

/* ===== DESKTOP DROPDOWN HOVER ===== */
.navdesktop { position: relative; }
.navdesktop > .dropdown-menu { display: none; transition: opacity 0.3s ease, visibility 0.3s ease; margin-top: 0; }
.navdesktop:hover > .dropdown-menu { display: block; opacity: 1; visibility: visible; }

/* ===== MEGA MENU ===== */
.mega-menu {
  min-width: min(1200px, calc(100vw - 32px));
  width: min(1200px, calc(100vw - 32px));
  max-width: 1200px;
  border: 1px solid #eef0f2;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  padding: 0;
}

/* Anchor mega menu to nav container (not viewport edge) */
.header .navbar .container {
  position: relative;
}

/*
  Mega menu was visually "left-heavy" because it was centered on the narrow Services <li>
  (left:50% + translateX(-50%) relative to the list item), not the navbar container.

  Desktop: make the trigger static so the mega menu positions against .container; then
  center with left:50% + translateX(-50%) so it aligns with the container center.
*/
@media (min-width: 1200px) {
  .header .navbar .navdesktop {
    position: static;
  }

  .header .navbar .navdesktop > .mega-menu {
    position: absolute;
    top: 70%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    margin-top: 0;
    width: min(1200px, calc(100% - 32px));
    max-width: 1200px;
    min-width: 0;
    z-index: 1100;
  }
}

.navdesktop > .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  margin: 0;
  margin-top: 0;
  z-index: 1100;
}

.mega-menu-inner {
  padding: 0 !important;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 20px 18px;
}

/* Conferences & Call for Papers â€” 3-column mega (design reference) */
.mega-menu-conferences {
  background: #eceff3 !important;
  border: 1px solid #dde1e8;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mega-menu-conferences::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #eceff3;
  z-index: 1;
  pointer-events: none;
}

.mega-menu-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 24px 28px 22px;
}

.mega-title-plain {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark) !important;
  cursor: default;
  text-decoration: none !important;
  margin-bottom: 10px;
}

.mega-list-conference-bullets {
  list-style: disc;
  padding-left: 1.15rem;
}

.mega-list-conference-bullets li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #4a5568;
  cursor: default;
}

.mega-list-callfor-links .mega-link {
  text-decoration: underline !important;
  text-underline-offset: 2px;
  color: #364153 !important;
}

.mega-list-callfor-links .mega-link:hover {
  color: var(--primary) !important;
}

/* Market Your research â€” 3-column mega (design reference) */
.mega-menu-market {
  background: #eaeae6 !important;
  border: 1px solid #dcdcd8;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
}

.mega-menu-market::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #eaeae6;
  z-index: 1;
  pointer-events: none;
}

.mega-list-pr-bullets,
.mega-list-ebook-bullets {
  list-style: disc;
  padding-left: 1.15rem;
}

.mega-list-pr-bullets li,
.mega-list-ebook-bullets li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #2d2d2d;
  cursor: default;
}

.mega-list-pr-bullets .mega-link {
  display: inline !important;
  padding: 0 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  color: #2d2d2d !important;
  cursor: pointer !important;
}

.mega-list-pr-bullets .mega-link:hover {
  color: var(--primary) !important;
}

.mega-col-market-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}

.mega-list-market-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.mega-list-market-stack li {
  margin: 0;
  width: 100%;
  text-align: center;
}

.mega-list-market-stack .mega-link {
  display: inline !important;
  padding: 0 !important;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: #2d2d2d !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  cursor: pointer !important;
  transition: color 0.22s ease;
}

.mega-list-market-stack .mega-link:hover {
  color: var(--primary) !important;
}

.mega-menu .mega-list-pr-bullets li:hover,
.mega-menu .mega-list-ebook-bullets li:hover {
  background: transparent !important;
  color: inherit !important;
}

.mega-col {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.mega-title {
  margin: 0 0 10px;
  padding: 0;
  font-size: inherit;
  line-height: 1.2;
  font-weight: inherit;
}

.mega-title a {
  display: inline;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.22s ease, text-decoration-color 0.22s ease;
}

.mega-title a:hover {
  color: var(--primary) !important;
  text-decoration-color: rgba(255, 105, 0, 0.55);
}

.mega-title a.active {
  color: var(--primary) !important;
}

/* Plain heading (no link) â€” Advance Research Services column (5-col mega only) */
.mega-menu-grid:not(.mega-menu-grid--3) article.mega-col:last-child .mega-title {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark) !important;
  cursor: default;
  text-decoration: none;
}

/* Clickable rows in Advance Research Services list */
.mega-list-plain .mega-link {
  display: inline !important;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: #596579 !important;
  text-decoration: none;
  padding: 0 !important;
  cursor: pointer !important;
  transition: color 0.22s ease, text-decoration-color 0.22s ease;
}

.mega-list-plain .mega-link:hover {
  color: var(--primary) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mega-list-plain .mega-link.active {
  color: var(--primary) !important;
}

.mega-list {
  margin: 0;
  padding-left: 0px;
}

.mega-list li {
  margin-bottom: 4px;
  font-size: 13px;
      list-style: none;
  line-height: 1;
  font-weight: 400;
  color: #596579;
  cursor: default;
}

.mega-list li::marker {
  font-size: 11px;
  color: #596579;
}

.mega-list-plain {
  list-style: none;
  padding-left: 0;
}

.mega-list-plain li {
  padding-left: 0;
}

/* Mega menu list rows are plain text â€” override global .dropdown-menu li:hover */
.mega-menu .mega-list:not(.mega-list-plain) li:hover {
  background: transparent !important;
  color: #596579 !important;
}

.mega-menu .mega-list-plain li:hover {
  background: transparent !important;
}

.offcanvas-body .mega-menu .mega-list:not(.mega-list-plain) li:hover {
  background: transparent !important;
  color: var(--gray) !important;
}

.offcanvas-body .mega-menu .mega-list-plain li:hover {
  background: transparent !important;
}

/* ===== Homepage Layout Optimization ===== */
.home-solutions-section,
.home-manuscripts-section,
.sec-four,
.sec-six,
.perks-section,
.publication-support-section,
.subject-area-section,
.why-choose-section,
.testimonial-section,
.steps-section,
.call-for-papers-section,
.faq-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-solutions-section .section-title,
.home-manuscripts-section .section-title,
.sec-six .section-title,
.subject-area-section .section-header,
.why-choose-section .row.text-center,
.testimonial-section .row.text-center,
.steps-section .row.text-center,
.faq-section .row.text-center {
  margin-bottom: 36px !important;
}

.home-solution-card,
.custom-service-card,
.feature-card-custom,
.perk-card,
.subject-item,
.step-card,
.accordion.custom-accordion .accordion-item {
  height: 100%;
}

.sec-four .row.align-items-center {
  --bs-gutter-x: 2rem;
}

.sec-four .right-col,
.sec-four .left-col {
  height: 100%;
}

.adv-publication-carousel {
  height: 100%;
}

.services-col > [class*="col-"] {
  display: flex;
}

.services-col .custom-service-card {
  width: 100%;
}

.why-choose-cards-grid > [class*="col-"] {
  display: flex;
}

.why-choose-cards-grid .feature-card-custom {
  width: 100%;
}

.subject-grid {
  align-items: stretch;
}

.faq-accordion-2col {
  align-items: start;
}

.faq-accordion-2col .accordion-item {
  align-self: start;
}

.publication-support-section .main-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

/* Large tablets and below */
@media (max-width: 1199px) {
  .top-banner .left-col h1 {
    font-size: 46px;
  }
  .support-content-box {
    padding: 42px 32px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .home-solutions-section,
  .home-manuscripts-section,
  .sec-four,
  .sec-six,
  .perks-section,
  .publication-support-section,
  .subject-area-section,
  .why-choose-section,
  .testimonial-section,
  .steps-section,
  .call-for-papers-section,
  .faq-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .top-banner {
    padding: 138px 0 72px 0 !important;
  }

  .top-banner .left-col {
    text-align: center;
    margin-bottom: 28px;
  }

  .top-banner .left-col h1 {
    font-size: 38px;
  }

  .top-banner .btn-sec {
    justify-content: center;
  }

  .sec-four .row.align-items-center {
    row-gap: 22px;
  }

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

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

  .faq-accordion-2col {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-solutions-section,
  .home-manuscripts-section,
  .sec-four,
  .sec-six,
  .perks-section,
  .publication-support-section,
  .subject-area-section,
  .why-choose-section,
  .testimonial-section,
  .steps-section,
  .call-for-papers-section,
  .faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .top-banner {
    padding: 128px 0 58px 0 !important;
  }

  .top-banner .left-col h1 {
    font-size: 31px;
    line-height: 1.3;
  }

  .top-banner .left-col p {
    font-size: 15px;
  }

  .top-banner .btn-sec {
    flex-wrap: wrap;
    gap: 10px;
  }

  .home-solution-card,
  .custom-service-card,
  .feature-card-custom,
  .step-card {
    border-radius: 16px;
  }

  .support-content-box {
    padding: 32px 20px;
  }

  .support-content-box .title {
    font-size: 30px;
  }

  .main-title,
  .section-main-heading,
  .steps-main-title,
  .faq-title,
  .success-title {
    font-size: 30px !important;
    line-height: 1.25;
  }

  .perks-grid,
  .subject-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OFFCANVAS MOBILE DROPDOWN ===== */
.offcanvas-body .dropdown-menu { position: static !important; transform: none !important; float: none !important; box-shadow: none !important; border: none !important; padding-left: 15px !important; background-color: transparent !important; opacity: 1 !important; visibility: visible !important; transition: none !important; display: none !important; }
.offcanvas-body .dropdown-menu.show { display: block !important; }
.offcanvas-body .dropdown-menu .dropdown-item { color: var(--gray) !important; }
.offcanvas-body .dropdown-menu .dropdown-item:hover { background-color: transparent !important; color: var(--primary) !important; }

.offcanvas-body .mega-menu {
  min-width: 100%;
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 !important;
}

.offcanvas-body .mega-menu-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 8px 0 0 0;
}

.offcanvas-body .mega-col {
  background: transparent;
  border: 0;
}

.offcanvas-body .mega-title a {
  color: var(--white) !important;
}

.offcanvas-body .mega-title a:hover,
.offcanvas-body .mega-title a.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-title-plain {
  color: var(--white) !important;
}

.offcanvas-body .mega-list-conference-bullets li {
  color: var(--gray) !important;
}

.offcanvas-body .mega-menu-conferences::before {
  display: none;
}

.offcanvas-body .mega-menu-conferences {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .mega-menu-market::before {
  display: none;
}

.offcanvas-body .mega-menu-market {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .mega-list-pr-bullets li,
.offcanvas-body .mega-list-ebook-bullets li {
  color: var(--gray) !important;
}

.offcanvas-body .mega-list-pr-bullets .mega-link,
.offcanvas-body .mega-list-market-stack .mega-link {
  color: var(--gray) !important;
  text-decoration: underline !important;
}

.offcanvas-body .mega-list-pr-bullets .mega-link:hover,
.offcanvas-body .mega-list-market-stack .mega-link:hover,
.offcanvas-body .mega-list-market-stack .mega-link.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-list-callfor-links .mega-link {
  color: var(--gray) !important;
  text-decoration: underline !important;
}

.offcanvas-body .mega-menu-grid:not(.mega-menu-grid--3) article.mega-col:last-child .mega-title {
  color: var(--white) !important;
  cursor: default;
}

.offcanvas-body .mega-list-plain .mega-link {
  color: var(--gray) !important;
}

.offcanvas-body .mega-list-plain .mega-link:hover,
.offcanvas-body .mega-list-plain .mega-link.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-list li {
  color: var(--gray);
}

.offcanvas-body .mega-list li::marker {
  color: var(--gray);
}

@media (max-width: 1199px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mega-menu-grid { grid-template-columns: 1fr; }
}

/* Conferences 3-col mega: keep 2/1 columns on smaller breakpoints (wins over rules above) */
@media (max-width: 1199px) {
  .mega-menu-grid.mega-menu-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mega-menu-grid.mega-menu-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .dropdown-toggle::after { opacity: 0; }
}



.client img {
    filter: grayscale(1);
}

.client img:hover {
    filter: grayscale(0);
}

.client p {
    text-align: center;
    padding: 25px 0px 0px 0px;
    font-weight: 500;
}

.header h3 {
    margin: 0;
    font-weight: 800;
}

 

.sticky h3 {
    color: #fff;
}

.heading-color {
    color: #ff6900;
}

/* ===== Home Inspiration Sections ===== */
.home-solutions-section {
    padding-top: 20px;
    padding-bottom: 45px;
    background: var(--white);
}

.home-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-solution-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 24px 20px 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
    height: 100%;
}

.home-solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 105, 0, 0.3);
}

.home-solution-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff5ed;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
}

.home-solution-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.home-solution-card p {
    margin-bottom: 0;
    color: #4A5565;
    font-weight: 500;
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .home-solutions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-solutions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.home-manuscripts-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--bg-light);
}

.home-manuscripts-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-manuscripts-viewport {
    overflow: hidden;
    width: 100%;
}

.home-manuscripts-track {
    display: flex;
    gap: 18px;
    transition: transform 450ms ease;
    will-change: transform;
}

.home-manuscript-card {
    flex: 0 0 calc((100% - 18px) / 2);
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: stretch;
    gap: 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-manuscript-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 105, 0, 0.26);
}

.home-manuscript-image {
    width: 46%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f5f8;
    border: 1px solid #eef0f2;
}

.home-manuscript-image img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
}

/* Journal logos / wide artwork â€” avoid cropping and unstable % height */
.home-manuscript-image--contain {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.home-manuscript-image--contain img {
    width: 100%;
    height: auto;
    min-height: 0;
  
    object-fit: contain;
    object-position: center;
    padding: 12px;
    box-sizing: border-box;
}

.home-manuscript-authors {
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-manuscript-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-manuscript-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.35;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-manuscript-card p {
    color: #4A5565;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.7;
}

.home-manuscript-body p + p {
    margin-top: 10px;
}

.home-manuscripts-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e7eaf0;
    background: #fff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.home-manuscripts-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.home-manuscripts-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .home-solutions-section {
        padding-top: 8px;
        padding-bottom: 35px;
    }
    .home-solution-card h3,
    .home-manuscript-card h3 {
        font-size: 18px;
    }
    .home-manuscripts-slider {
        gap: 8px;
    }
    .home-manuscripts-arrow {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .home-manuscript-card {
        flex: 0 0 100%;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }
    .home-manuscript-image {
        width: 100%;
    }
    .home-manuscript-image img {
        min-height: 160px;
    }
    .home-manuscript-image--contain img {
        min-height: 0;
        max-height: 200px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-manuscript-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .home-manuscript-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}







/* Card Main Container */
.custom-service-card {
    /* Lighter/pastel orange for a softer, homepage-friendly look */
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.20);
    border-radius: 15px;
    padding: 20px 25px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.custom-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Typography */
.custom-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 15px;
    line-height: 1.3;
}

.custom-service-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures buttons align even with different text lengths */
}

/* Button Styling */
.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #ff7c32 !important; /* Brand Orange */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.learn-more i {
    font-size: 12px;
    margin-left: 8px;
}

.learn-more:hover {
    color: #e66a28 !important;
    letter-spacing: 0.5px;
}

.services-col
 {
    padding: 15px 0px;
}







/* Section Styles */
.publication-support-section {
    padding: 0 !important;
    background-color: #f8f9fa; /* Optional background light gray */
}

/* Main Wrapper for Rounded Corners and Shadow */
.main-wrapper {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #001e33; /* Dark Navy Background */
}

/* Image Styling */
.support-img-box {
    height: 100%;
    min-height: 400px;
}

.support-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image covers the full area */
    display: block;
}

/* Content Styling */
.support-content-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-content-box .title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-content-box .description {
    color: #b0c4d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* List Styling */
.support-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.support-list li {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.support-list li i {
    color: #ff6a00; /* Orange Checkmark */
    font-size: 18px;
    margin-right: 12px;
}

/* Button Styling */
.btn-learn-more {
    padding: 12px 35px; /* Side padding thori barha di hai image jaisa dikhne ke liye */
    display: inline-flex; /* inline-block se behtar alignment deta hai */
    align-items: center;
    justify-content: center;
    width: fit-content; /* Yeh button ko full width hone se rokega */
    font-weight: 600;
    transition: all ease-in-out 0.3s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--primary, #ff6a00);
    background: var(--primary, #ff6a00);
    color: var(--white, #ffffff);
    border-radius: 50px;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: transparent;
    color: var(--primary, #ff6a00) !important;
    border-color: var(--primary, #ff6a00);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .support-content-box {
        padding: 40px 30px;
    }
    .support-img-box {
        min-height: 300px;
    }
}








/* Container Padding */
.subject-area-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Titles */
.main-title {
    font-size: 38px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 10px;
}

.sub-title {
    color: #666;
    font-size: 16px;
}

/* Grid Layout: 8 columns for Desktop */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 40px;
}

/* Card Styling */
.subject-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px; /* Smooth rounded corners */
    padding: 30px 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.subject-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #ffeadb;
}

/* Icon Circle Background */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 124, 50, 0.1);
    margin-bottom: 10px; 
}

.icon-circle img {
    width: 40px; 
    height: auto;
    
}

/* Text Styling */
.subject-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #001e33;
    margin: 0;
    line-height: 1.2;
}

/* Experts count hidden by default on devices with hover */
.subject-item .expert-count {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
}

.subject-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 124, 50, 0.35);
}

.subject-item:hover .expert-count {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 42px;
}

.subject-item:hover .expert-num {
    transform: scale(1.06);
}

.subject-item .expert-num {
    display: inline-block;
    transition: transform 0.28s ease;
}

/* --- Responsive Behavior --- */

/* Tablets (4 cards per row) */
@media (max-width: 1200px) {
    .subject-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Landscape (3 cards per row) */
@media (max-width: 991px) {
    .subject-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Portrait (2 cards per row) */
@media (max-width: 576px) {
    .subject-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .main-title { font-size: 28px; }
}

/* Touch/mobile fallback: show count without hover */
@media (hover: none), (pointer: coarse) {
    .subject-item .expert-count {
        opacity: 1;
        transform: none;
        max-height: none;
        overflow: visible;
    }
}











:root {
    --primary-navy: #001e33;
    --accent-orange: #ff7c32;
    --text-muted: #666666;
}

.heading-color {
    color: var(--accent-orange);
}

.section-main-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-sub-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Card Styling */
.feature-card-custom {
    background: #fff5ed;
    border: 1px solid #f0f0f0;
    border-radius: 20px; 
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); 
}

.feature-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

.feature-card-custom h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-card-custom p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-choose-split {
    align-items: stretch;
}

.why-awards-panel {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
}

.why-awards-slider {
    width: 100%;
}

.why-award-item {
    padding: 10px;
}

.why-award-item img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 16px;
}

.why-choose-cards-grid .feature-card-custom {
    min-height: 100%;
}

@media (max-width: 991px) {
    .why-awards-panel {
        margin-bottom: 4px;
        min-height: 220px;
    }
}

/* ===== Home: Publication expertise (premium LP block) ===== */
.publication-trust-lp.why-choose-section {
    --pub-trust-accent: #f58220;
    --pub-trust-navy: #0b1120;
    --pub-trust-card: #fff8f0;
    padding-top: clamp(88px, 9vw, 120px) !important;
    padding-bottom: clamp(88px, 9vw, 120px) !important;
    background: none;
    border-top: none;
    border-bottom: none;
}

.publication-trust-lp__intro {
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem) !important;
}

.publication-trust-lp__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 1.25rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--pub-trust-accent, #f58220);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.35);
}

.publication-trust-lp__badge i {
    color: #ffffff;
    font-size: 0.82rem;
    opacity: 0.95;
}

.publication-trust-lp__heading {
    font-size: clamp(1.85rem, 1.2rem + 2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--pub-trust-navy, #0b1120);
    margin-bottom: 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.publication-trust-lp__heading-line {
    display: block;
    font-weight: 700;
    color: var(--pub-trust-navy, #0b1120);
}

.publication-trust-lp__heading-accent {
    display: block;
    font-weight: 800;
    color: var(--pub-trust-accent, #f58220) !important;
}

.publication-trust-lp__lead {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.82;
    color: #5a6573;
}

.publication-trust-lp__split {
    --bs-gutter-x: 1.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 1200px) {
    .publication-trust-lp__split {
        --bs-gutter-x: 2.25rem;
    }

    .publication-trust-lp__split .publication-trust-lp__col-slider {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .publication-trust-lp__split .publication-trust-lp__col-cards {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.publication-trust-lp__slider-shell {
    position: relative;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.publication-trust-lp .publication-trust-lp__slider {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.publication-trust-lp .publication-trust-lp__slider .slick-list {
    border-radius: 0;
    overflow: hidden;
    flex: 1;
}

.publication-trust-lp .publication-trust-lp__slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* One certificate per view: full-width slide */
.publication-trust-lp .publication-trust-lp__slider .slick-slide {
    height: auto;
    width: 100% !important;
}

.publication-trust-lp .publication-trust-lp__slider .slick-slide > div {
    height: 100%;
    width: 100%;
}

.publication-trust-lp .why-award-item {
    padding: 0;
}

.publication-trust-lp__slide {
    padding: 0;
    height: 100%;
    outline: none;
}

.publication-trust-lp__slide-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 620px;
    height: 100%;
    box-shadow: none;
    isolation: isolate;
    background: transparent;
}

.publication-trust-lp__slide-frame::before,
.publication-trust-lp__slide-frame::after {
    display: none;
}

@media (min-width: 992px) {
    .publication-trust-lp__slide-frame {
        min-height: clamp(640px, 82vh, 920px);
    }
}

.publication-trust-lp__slide-cert {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit; 
    box-sizing: border-box;
}

.publication-trust-lp__slide-cert-card {
    max-width: 100%;
    box-shadow: none;
    box-sizing: border-box;
}

.publication-trust-lp__slide-cert-inner {
    border-radius: 0;
    border: none;
    background: transparent;
    box-sizing: border-box;
    box-shadow: none;
}

.publication-trust-lp .publication-trust-lp__slide-cert-inner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(90vh, 920px);
    object-fit: contain;
    object-position: center;
    vertical-align: top;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots {
    position: relative;
    bottom: auto;
    margin: 1.1rem 0 0;
    padding: 0;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li button {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li button::before {
    display: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li.slick-active button {
    background: var(--pub-trust-accent, #f58220);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
    position: absolute;
    /* Center on slide area (Slick includes dots in slider height) */
    top: calc(50% - 1.35rem);
    z-index: 4;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 10px 28px rgba(11, 17, 32, 0.26);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev:hover,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next:hover {
    background: #ffffff;
    color: var(--pub-trust-navy, #0b1120);
    box-shadow: 0 12px 32px rgba(11, 17, 32, 0.28);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
    left: clamp(8px, 5vw, 18px);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
    right: clamp(8px, 5vw, 18px);
}

@media (min-width: 992px) {
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
        left: clamp(10px, 7%, 28px);
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        right: clamp(10px, 7%, 28px);
    }
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev i,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next i {
    font-size: 15px;
    line-height: 1;
    color: inherit;
    font-weight: 700;
}

.publication-trust-lp__card {
    background: var(--pub-trust-card, #fdf8f4);
    border: 1px solid rgba(11, 17, 32, 0.06);
    border-radius: 14px;
    padding: 1.45rem 1.4rem;
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.publication-trust-lp__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11, 17, 32, 0.1);
    border-color: rgba(245, 130, 32, 0.35);
    background: #ffffff;
}

.publication-trust-lp__card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.publication-trust-lp__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pub-trust-accent, #f58220);
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(245, 130, 32, 0.38);
}

.publication-trust-lp__card-title {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.32;
    color: var(--pub-trust-navy, #0b1120);
    margin: 0;
    padding-top: 0.2rem;
}

.publication-trust-lp__card-desc {
    font-size: 0.875rem;
    line-height: 1.68;
    color: #5a6b7a;
    margin: 0 0 0.6rem;
}

.publication-trust-lp__card-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--pub-trust-navy, #0b1120);
}

.publication-trust-lp__card-list {
    margin: 0 0 0.85rem;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #3d4f63;
}

.publication-trust-lp__card-list--checks li {
    position: relative;
    margin-bottom: 0.4rem;
    padding-left: 1.35rem;
}

.publication-trust-lp__card-list--checks li:last-child {
    margin-bottom: 0;
}

.publication-trust-lp__card-list--checks li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.72rem;
    color: var(--pub-trust-accent, #f58220);
    font-weight: normal;
}

.publication-trust-lp__card-result {
    margin: auto 0 0;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(11, 17, 32, 0.08);
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 700;
    color: var(--pub-trust-accent, #f58220);
}

.publication-trust-lp__card-result strong {
    font-weight: 800;
}

.publication-trust-lp__stats {
    padding-top: 0.25rem;
}

.publication-trust-lp__stats-row {
    padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(1rem, 2vw, 1.5rem);
    background: var(--pub-trust-card, #fdf8f4);
    border: 1px solid rgba(11, 17, 32, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.05);
}

.publication-trust-lp__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.35rem 0.25rem;
}

.publication-trust-lp__stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.14);
    color: var(--pub-trust-accent, #f58220);
    font-size: 1.12rem;
    margin-bottom: 0.15rem;
}

.publication-trust-lp__stat-num {
    font-size: clamp(1.35rem, 1rem + 1.2vw, 1.65rem);
    font-weight: 800;
    color: var(--pub-trust-navy, #0b1120);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.publication-trust-lp__stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5a6d80;
    line-height: 1.35;
    max-width: 11rem;
}

@media (max-width: 991px) {
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
        left: 10px;
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        right: 10px;
    }

    .publication-trust-lp__slide-frame {
        min-height: 520px;
    }

    .publication-trust-lp .publication-trust-lp__slide-cert-inner img {
        max-height: min(85vh, 820px);
    }
}

@media (max-width: 767px) {
    .publication-trust-lp__cards > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev,
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-main-heading {
        font-size: 28px;
    }
    .feature-card-custom {
        padding: 30px 20px;
    }
}







/* Card Design */
.slider-item {
    padding: 10px; /* Spacing between cards */
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    min-height: 320px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stars-yellow { color: #ffc107; font-size: 14px; }
.stars-green { color: #00b67a; } /* Trustpilot Green */

.uni-name { color: #ff7c32; font-weight: 500; }

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #f8f8f8;
    padding-top: 20px;
}

/* Slick Dots Customization */
.slick-dots li button:before {
    font-size: 10px;
    color: #ff7c32;
}
.slick-dots li.slick-active button:before {
    color: #ff7c32;
}

.user-details h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-section .success-title {
    font-size: 37px;
    font-weight: 700;
    color: var(--dark);
}

.success-title {
    font-size: 42px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 18px;
    color: #4b5563;
}

/* Trustpilot Header Styling */
.excellent-text {
    font-size: 24px;
    font-weight: 700;
    color: #001e33;
}

.trustpilot-reviews {
    font-size: 15px;
    color: #4b5563;
}

.trustpilot-reviews strong {
    color: #001e33;
}

.tp-brand {
    color: #00b67a; /* Trustpilot Green Color */
    font-weight: 700;
    margin-left: 5px;
}

/* ----- Hero: Trustpilot + Bark review platform cards ----- */
.review-platforms-hero {
    width: 100%;
    max-width: 720px;
}

.review-platforms-hero-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.review-platform-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 8px 26px rgba(0, 30, 51, 0.07);
    border: 1px solid #e8ecf1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 30, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.2);
}

.review-platform-card--trustpilot:hover {
    border-color: rgba(0, 182, 122, 0.35);
}

.review-platform-card--trustpilot {
    border-top: 3px solid #00b67a;
}

.review-platform-card--bark {
    border-top: 3px solid var(--primary);
}

.review-platform-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-platform-logo-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    margin-left: 0;
}

.review-platform-card .tp-brand.review-platform-logo-line {
    margin-left: 0;
}

.review-platform-card .tp-brand.review-platform-logo-line i {
    font-size: 14px;
}

.bark-brand {
    color: #0f172a;
    font-weight: 800;
}

.bark-brand i {
    color: var(--primary);
    font-size: 14px;
}

.review-platform-rating-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.review-platform-card .excellent-text {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #001e33;
    letter-spacing: -0.03em;
}

.review-platform-rating-suffix {
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
}

.bark-rating-excellent {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #001e33;
    letter-spacing: -0.03em;
}

.review-platform-card .trustpilot-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1;
}

.bark-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1;
}

.bark-star-icon {
    color: #f59e0b;
}

.review-platform-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.55;
    margin: 10px 0 0;
    max-width: 280px;
}

.review-platform-card .trustpilot-reviews {
    font-size: 14px;
    margin-top: 12px !important;
}

.bark-reviews-line {
    font-size: 14px;
    color: #4b5563;
    margin-top: 12px !important;
}

.bark-reviews-line strong {
    color: #001e33;
}

@media (max-width: 767px) {
    .review-platform-card .excellent-text,
    .bark-rating-excellent {
        font-size: 32px;
    }
    .review-platform-card {
        padding: 20px 16px;
    }
}

/* Responsive adjust */
@media (max-width: 768px) {
    .success-title { font-size: 32px; }
    .excellent-text { font-size: 20px; }
}








.steps-section {
    background-color: #ffffff;
    position: relative;
}

.steps-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #001e33;
    line-height: 1.2;
}

.steps-sub-text {
    color: #666;
    font-size: 16px;
    margin-top: 15px;
}

/* Steps Row Connector Line */
.steps-row-container {
    position: relative;
    z-index: 1;
}

/* Connecting flow arrows on desktop */
.steps-row-container > [class*="col-"] {
    position: relative;
}

@media (min-width: 992px) {
    .steps-row-container > [class*="col-"]::after {
        content: "\f105";
        font-family: FontAwesome;
        position: absolute;
        right: -4px;
        top: 44%;
        transform: translateY(-50%);
        color: rgba(255, 124, 50, 0.55);
        font-size: 22px;
        z-index: 2;
        pointer-events: none;
    }

    .steps-row-container > [class*="col-"]:nth-child(4n)::after,
    .steps-row-container > [class*="col-"]:last-child::after {
        display: none;
    }
}

/* Card Styling */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 20px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10);
}

/* Orange Number Circle */
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff7c32;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 124, 50, 0.3);
}

/* Icon Styling */
.step-icon {
    width: 80px;
    height: 80px;
    background: #fff4ec;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe2cf;
}

.step-icon img {
    width: 40px;
    height: auto;
}

.step-icon i {
    font-size: 30px;
    color: #ff7c32;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #001e33;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .steps-main-title { font-size: 30px; }
    .step-card { margin-top: 20px; }
    .steps-row-container > [class*="col-"]::after { display: none; }
}







.cta-card {
    /* Aapka bataya hua gradient color */
    background: linear-gradient(180deg, #001A33 0%, #003366 100%); 
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for depth */
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Orange Button */
.btn-submit-orange {
    background-color: #ff6900;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-submit-orange:hover {
    background-color: #e66a25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 124, 50, 0.3);
    color: #ffffff;
}

/* White Outline Button */
.btn-view-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-outline:hover {
    background-color: #ffffff;
    color: #001A33;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}











/* FAQ Section Styling */
.faq-section {
    background-color: #fcfcfc;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #667085;
    font-size: 16px;
}

/* Accordion Custom Styling */
.custom-accordion .accordion-item {
    border: 1px solid #f2f4f7;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Two-column FAQ layout (desktop/tablet) */
.faq-accordion-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-accordion-2col .accordion-item {
    margin-bottom: 0 !important;
}

.custom-accordion .accordion-button {
    padding: 24px;
    font-weight: 700;
    color: #001e33;
    background-color: #ffffff;
    box-shadow: none;
    font-size: 16px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #001e33;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f4f7;
}

.custom-accordion .accordion-body {
    padding: 24px;
    color: #475467;
    line-height: 1.6;
    font-size: 15px;
}

/* Custom +/- Icons (Orange) */
.custom-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    width: 32px;
    height: 32px;
    background-color: #fff1e9; /* Light orange bg */
    color: #ff7c32; /* Brand orange */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: 'âˆ’'; /* Minus sign */
    background-color: #ff7c32;
    color: #ffffff;
    transform: rotate(0deg);
}

/* Contact Button */
.btn-contact-support {
    background-color: #ff7c32;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact-support:hover {
    background-color: #e66a25;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 124, 50, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-accordion-2col {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 30px;
    }
    .custom-accordion .accordion-button {
        padding: 18px;
        font-size: 15px;
    }
}

.footer h3 {
    color: #ffff;
    font-weight: 700;
}
.footer .footer-logo {width: 150px;}
.fourteen-box {
    text-align: center;
    background-color: #d9d9d9;
    border-radius: 25px;
    padding: 25px 10px;
}
/* intl-tel-input width for legacy #phone2 / modal (sprites: head.php :root + intlTelInput.css) */
.iti {
    width: 100%;
}
     @media (max-width: 767px) {
          .top-banner {
    padding-top: 150px !important
  }
     }

/* ===== HOMEPAGE: PERKS + TRUST + EXPERTS ===== */
.perks-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.perk-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background-color: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.perk-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.perk-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

@media (max-width: 1024px) {
    .perks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .perks-grid { grid-template-columns: 1fr; }
}

.trust-certificates {
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-certificate {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 16px 10px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-cert-logo {
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 18px;
    color: var(--dark);
}

.trust-cert-logo--ieee {
    color: #0b3d91;
}

.trust-cert-logo--wos {
    color: #0047a7;
}

.trust-cert-image {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.trust-cert-meta {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.expert-count {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

.expert-num {
    color: var(--primary);
    font-weight: 900;
    font-size: 16px;
    margin-right: 4px;
}

/* ===== Conferences ===== */
.conference-intro-card,
.conference-benefits-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
}

.conference-intro-card h4,
.conference-benefits-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.conference-bullets {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conference-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 0;
}

.conference-bullets li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.benefit-item {
    flex: 1;
    min-width: 220px;
    background: var(--bg-light);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.benefit-item h5 {
    margin: 12px 0 6px;
    font-weight: 900;
    font-size: 15px;
    color: var(--dark);
}

.benefit-item p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.conferences-subtitle {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.conference-list-subtitle {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.conference-service-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.conference-service-card .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.conference-service-card h4 {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 16px;
    color: var(--dark);
}

.conference-service-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.conference-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.conference-listing-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.listing-title {
    margin: 0 0 10px;
    font-weight: 900;
    color: var(--dark);
}

.listing-top h4.listing-title,
.listing-title {
    font-size: 16px;
}

.listing-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.listing-pill {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    background: #f8fafc;
    border: 1px solid #eef0f2;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.listing-pill--mode {
    background: #fff5ed;
    border-color: rgba(255, 105, 0, 0.25);
}

.listing-meta {
    padding-top: 4px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #eef0f2;
    padding-top: 12px;
}

.meta-label {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.meta-value {
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
}

.listing-cta {
    margin-top: 14px;
}

.conference-cta-note {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .conference-listing-grid { grid-template-columns: 1fr; }
    .conferences-subtitle { font-size: 22px; }
}

/* ===== Call for Papers ===== */
.callfor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.callfor-provider {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.provider-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
}

.provider-blurb {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 16px;
}

.provider-calls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-call-card {
    background: var(--bg-light);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 14px 14px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
}

.call-left {
    flex: 1;
    min-width: 0;
}

.call-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.call-deadline {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.deadline-label {
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.deadline-value {
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.call-right {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.call-cta-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .callfor-grid { grid-template-columns: 1fr; }
    .provider-call-card { flex-direction: column; align-items: stretch; }
    .call-right { width: 100%; }
}

/* ===== Journals ===== */
.journals-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.platform-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    height: 100%;
}

.platform-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.platform-desc {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 18px;
}

.q1-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.q1-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.q1-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 0;
}

.q1-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.platform-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-cta-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .journals-platform-grid { grid-template-columns: 1fr; }
}

/* ===== Portfolio Carousel ===== */
.portfolio-carousel-wrap {
    margin-top: 18px;
}

.portfolio-carousel .portfolio-slide {
    padding: 10px 8px;
}

.portfolio-card {
    height: 100%;
    min-height: 320px;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.04) 0%, rgba(0, 26, 51, 0.02) 100%);
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.portfolio-cover {
    position: relative;
    background: #001A33;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-cover img {
    width: 150px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    background: transparent;
}

.portfolio-year-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 105, 0, 0.95);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
}

.portfolio-details {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-author {
    font-weight: 900;
    color: var(--dark);
    font-size: 15px;
}

.portfolio-university {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.portfolio-cta {
    margin-top: 8px;
}

.portfolio-note {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.portfolio-carousel .slick-dots li button:before {
    color: #ff7c32;
    font-size: 10px;
}

.portfolio-carousel .slick-dots li.slick-active button:before {
    color: #ff7c32;
}

/* Portfolio filter UI + grid */
.portfolio-filter-ui {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,26,51,0.08);
    border-radius: 18px;
    padding: 14px 14px 12px;
}

.portfolio-filter-pill {
    cursor: default;
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 999px;
    padding: 8px 12px;
}

.portfolio-filter-pill.is-active {
    color: #fff;
    background: var(--primary);
    border-color: rgba(255,105,0,0.35);
}

.portfolio-filter-note {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-top: 10px;
}

.portfolio-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-grid-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.portfolio-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.portfolio-grid-cover {
    position: relative;
    background: #001A33;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.portfolio-grid-cover img {
    width: 120px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.portfolio-grid-year {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,105,0,0.95);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
}

.portfolio-grid-body {
    padding: 14px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.portfolio-grid-author {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
}

.portfolio-grid-university {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
}

.portfolio-grid-actions {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .portfolio-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .portfolio-card-grid { grid-template-columns: 1fr; }
}

/* ===== Blog System + Marketing ===== */
.blog-page-section {
    padding: 70px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 22px;
    align-items: start;
}

.blog-sidebar {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-sidebar h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fafafa;
    transition: all 0.2s ease;
}

.category-list a:hover {
    border-color: #ffe9dd;
    background: #fff5ed;
    color: var(--dark);
}

.category-list a.is-active {
    border-color: rgba(255, 105, 0, 0.35);
    background: #fff5ed;
    color: var(--dark);
}

.blog-main h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.blog-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.blog-card h3 {
    margin: 10px 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
}

.blog-card p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.blog-card .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-card .blog-pill {
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.25);
    color: var(--primary);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.blog-card .readmore {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.blog-detail-article {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.blog-detail-article h2 {
    font-size: 18px;
    font-weight: 900;
    margin-top: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.blog-detail-article ul {
    padding-left: 18px;
    margin-bottom: 0;
    color: var(--text);
}

.blog-detail-article p {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-post-grid { grid-template-columns: 1fr; }
    .blog-main h1 { font-size: 34px; }
}

/* ===== Floating Lead Popup (Book Free Consultation) ===== */
body.lead-popup-open {
    overflow: hidden;
}

.lead-popup {
    --lead-radius: 14px;
    --lead-input-h: 52px;
    --lead-fs: 15px;
    --lead-gap: 16px;
    --lead-border: #e2e5ec;
    --lead-focus: var(--primary, #f97316);
    --lead-focus-ring: rgba(249, 115, 22, 0.2);

    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lead-popup.is-visible {
    display: flex;
}

.lead-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
}

.lead-popup-panel {
    position: relative;
    width: 100%;
    max-width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    border-radius: 22px;
    border: 1px solid #e8eaef;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.lead-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e8eaef;
    background: var(--white);
    color: var(--dark);
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lead-popup-close:hover {
    background: #f8f9fb;
    border-color: #dde1e8;
}

.lead-popup-content {
    padding: 28px 32px 26px;
}

.lead-popup-header {
    padding-right: 48px;
    margin-bottom: 20px;
}

.lead-popup-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff5ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 14px;
}

.lead-popup-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.lead-popup-subtitle {
    margin: 0 0 4px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.45;
}

.lead-popup-form label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #4b5563;
    display: block;
    margin-bottom: 8px;
    line-height: 1.2;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--lead-gap);
    row-gap: 18px;
}

.lead-field {
    min-width: 0;
}

.lead-field input,
.lead-field select {
    width: 100%;
    height: var(--lead-input-h);
    border: 1px solid var(--lead-border);
    border-radius: var(--lead-radius);
    padding: 0 14px;
    font-size: var(--lead-fs);
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    line-height: 1.25;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.lead-field input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.lead-field input:hover,
.lead-field select:hover {
    border-color: #cdd2dc;
}

.lead-field input:focus,
.lead-field select:focus {
    outline: none;
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

/* intl-tel-input: scoped variables + alignment (sprites via head.php :root) */
.lead-popup .lead-field--phone .iti {
    width: 100%;
    display: block;
    position: relative;
    --iti-spacer-horizontal: 10px;
    --iti-arrow-padding: 8px;
    --iti-dialcode-color: #4b5563;
}

/* Min width so flag + dial code + arrow are not crushed in the 2-column grid */
.lead-popup .iti__country-container {
    min-width: 7.5rem;
    border-radius: var(--lead-radius) 0 0 var(--lead-radius);
    border: 1px solid var(--lead-border);
    border-right: none;
    background: #fff;
    font-weight: 600;
    font-size: var(--lead-fs);
    box-sizing: border-box;
}

.lead-popup .iti__selected-country {
    border-radius: var(--lead-radius) 0 0 var(--lead-radius);
    line-height: normal;
    color: #111827;
}

.lead-popup .iti__selected-country-primary {
    font-weight: 600;
    gap: 6px;
    padding: 0 8px 0 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.lead-popup .iti__flag-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-popup .iti__flag {
    flex-shrink: 0;
}

.lead-popup .iti .iti__selected-dial-code {
    margin-left: 4px;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
    flex-shrink: 0;
}

.lead-popup .iti__arrow {
    flex-shrink: 0;
    align-self: center;
}

.lead-popup .iti__tel-input {
    width: 100% !important;
    height: var(--lead-input-h) !important;
    border: 1px solid var(--lead-border);
    border-radius: 0 var(--lead-radius) var(--lead-radius) 0;
    /* Do not set padding-left: intl-tel-input sets it for country/dial code */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 14px !important;
    font-size: var(--lead-fs) !important;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup .iti__flag {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lead-popup .iti__tel-input:hover,
.lead-popup .iti__country-container:hover {
    border-color: #cdd2dc;
}

.lead-popup .iti__tel-input:focus {
    outline: none;
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

.lead-popup .iti__country-container:focus-within {
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

.lead-popup .lead-field--phone.iti-invalid .iti__tel-input,
.lead-popup .lead-field--phone.iti-invalid .iti__country-container {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.lead-popup .lead-phone-error {
    display: block;
    min-height: 20px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #b02a37;
}

.lead-popup .lead-phone-error:empty {
    display: none;
}

/*
 * intl-tel-input portals the country UI to body as .iti--container (default z-index 1060).
 * Lead popup uses z-index 2000, so the list was hidden behind the modal overlay.
 */
body .iti--container {
    z-index: 10070 !important;
}

body .iti--fullscreen-popup.iti--container {
    z-index: 10070 !important;
}

body .iti--container .iti__dropdown-content {
    border-radius: 12px;
    border: 1px solid var(--lead-border, #e2e5ec);
    box-shadow: 0 16px 48px rgba(17, 24, 39, 0.18);
    overflow: hidden;
    background: #fff;
}

body .iti--fullscreen-popup .iti__dropdown-content {
    border-radius: 16px;
}

/* Inline dropdown (desktop): allow a taller list than the default 185px */
body .iti--inline-dropdown .iti__country-list {
    max-height: min(280px, 50vh) !important;
}

body .iti__search-input {
    border-bottom: 1px solid var(--lead-border, #e2e5ec);
    font-size: 15px;
}

.lead-popup-actions {
    margin-top: 22px;
}

.lead-popup-submit {
    min-height: 54px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em;
    border-radius: var(--lead-radius) !important;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup-submit:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.lead-popup-submit:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.lead-popup-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--lead-focus-ring), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lead-consent-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    margin-top: 14px;
    line-height: 1.45;
    text-align: center;
}

.lead-popup-success {
    margin-top: 16px;
    background: #f2fdf4;
    border: 1px solid #c7f1cf;
    padding: 14px 16px;
    border-radius: var(--lead-radius);
    color: #115c24;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 575.98px) {
    .lead-popup {
        padding: 12px 14px;
        align-items: center;
    }

    .lead-popup-panel {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 20px;
    }

    .lead-popup-content {
        padding: 22px 18px 20px;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
        row-gap: var(--lead-gap);
    }

    .lead-popup-content h3 {
        font-size: 19px;
    }
}

/* ===== Email Marketing ===== */
.email-marketing-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.email-marketing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.marketing-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marketing-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.marketing-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.marketing-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.marketing-desc {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .email-marketing-grid { grid-template-columns: 1fr; }
}

/* ===== Extra Features ===== */
.extra-features-section {
    padding: 70px 0 90px;
}

.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.extra-feature-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.extra-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 8px;
}

.extra-subtitle {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.university-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.university-logos img {
    width: 110px;
    height: auto;
    filter: grayscale(1);
    opacity: 0.9;
    transition: all 0.2s ease;
}

.university-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.research-body-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.research-badge {
    border: 2px solid #ffe0cc;
    background: #fff5ed;
    color: var(--primary);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
}

.escrow-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f8fbff;
    border: 1px solid #e9f2ff;
    border-radius: 18px;
    padding: 16px 14px;
}

.escrow-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: rgba(255, 105, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.escrow-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
}

.escrow-desc {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

.extra-note {
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}

.scholar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.scholar-card {
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 14px 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.scholar-avatar {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,105,0,0.22), rgba(0,26,51,0.08));
    color: var(--dark);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.scholar-name {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2px;
}

.scholar-aff {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .extra-features-grid { grid-template-columns: 1fr; }
}

/* ===== Services Landing Enhancements ===== */
.services-page-section {
    padding-top: 48px;
}

.services-categories-grid {
    margin-top: 6px;
}

.services-category-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    border-color: rgba(255, 105, 0, 0.25);
}

.services-category-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.services-category-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.services-category-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 18px;
    margin: 0;
}

.services-category-intro {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.services-category-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-category-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.services-category-list li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.services-category-cta .services-get-started {
    padding: 14px 26px;
    font-weight: 900;
}

.services-check-card h4 i {
    color: var(--primary);
}

.services-why-grid .services-why-card h4 i {
    color: var(--primary);
}

.services-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 10px 0 0;
}

.area-pill {
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    color: var(--dark);
    font-size: 13px;
}

.services-advanced-card {
    padding: 24px 18px;
    position: relative;
    overflow: hidden;
}

.services-advanced-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

/* ===== Career & Skills: Academic career services section ===== */
.academic-career-services {
    position: relative;
    overflow: hidden;
}

.academic-career-services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 45% at 50% -15%, rgba(255, 105, 0, 0.07), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 35%);
}

.academic-career-services > .container {
    position: relative;
    z-index: 1;
}

.acss-section-head {
    max-width: 920px;
    margin: 0 auto 3rem;
}

.acss-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.acss-kicker i {
    font-size: 15px;
    opacity: 0.95;
}

.acss-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.acss-lead {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    max-width: 54rem;
    margin: 0 auto;
}

.acss-card-grid {
    margin-bottom: 2.5rem;
}

.acss-grid-divider {
    height: 0;
    margin: 0.25rem 0 0.5rem;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 26, 51, 0.09);
}

.acss-card {
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 8px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border-top: 3px solid rgba(255, 105, 0, 0.35);
}

.acss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
    border-color: rgba(255, 105, 0, 0.25);
}

.acss-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.acss-card-top {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.acss-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
}

.acss-card-headings {
    min-width: 0;
}

.acss-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy, #001e33);
    line-height: 1.3;
    margin: 0 0 0.65rem;
}

.acss-card-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.acss-bullet-block {
    margin: 0;
    padding: 1.125rem 1.125rem 1rem;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.acss-bullet-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0, 26, 51, 0.1);
}

.acss-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.acss-bullet-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-dark, #0B192C);
}

.acss-bullet-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.15);
    color: var(--primary);
}

.acss-cta-panel {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
}

.acss-cta-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 36rem;
}

.acss-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.acss-cta-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .acss-section-head {
        margin-bottom: 2.25rem;
    }

    .acss-card {
        padding: 1.5rem 1.35rem 1.35rem;
    }

    .acss-card-top {
        flex-direction: row;
    }
}

@media (max-width: 575px) {
    .acss-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .acss-cta-actions .acss-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acss-card {
        transition: none;
    }

    .acss-card:hover {
        transform: none;
    }
}

/* ===== Career & Skills: How our services work (process timeline) ===== */
.career-process-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.career-process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 72% 52% at 12% 18%, rgba(255, 105, 0, 0.09), transparent 58%),
        radial-gradient(ellipse 65% 48% at 88% 72%, rgba(0, 26, 51, 0.07), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, var(--bg-light) 38%, #fafbfc 100%);
}

.career-process-section > .container {
    z-index: 1;
}

.cps-head {
    max-width: 880px;
    margin: 0 auto 3rem;
}

.cps-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cps-kicker i {
    font-size: 15px;
}

.cps-title {
    font-size: clamp(1.7rem, 3.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.cps-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 auto;
    max-width: 46rem;
}

.cps-timeline {
    list-style: none;
    margin: 0 auto 3rem;
    padding: 0.5rem 0 0;
    max-width: 1100px;
    position: relative;
}

.cps-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(
        180deg,
        rgba(255, 105, 0, 0.15) 0%,
        rgba(255, 105, 0, 0.45) 22%,
        rgba(0, 26, 51, 0.12) 78%,
        rgba(0, 26, 51, 0.06) 100%
    );
    z-index: 0;
}

.cps-timeline-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(52px, auto) 1fr;
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: stretch;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    animation: cps-step-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.cps-timeline-step:nth-child(1) { animation-delay: 0.04s; }
.cps-timeline-step:nth-child(2) { animation-delay: 0.1s; }
.cps-timeline-step:nth-child(3) { animation-delay: 0.16s; }
.cps-timeline-step:nth-child(4) { animation-delay: 0.22s; }
.cps-timeline-step:nth-child(5) { animation-delay: 0.28s; }
.cps-timeline-step:nth-child(6) { animation-delay: 0.34s; }

.cps-timeline-step:nth-child(odd) .cps-step-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.cps-timeline-step:nth-child(odd) .cps-node {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cps-timeline-step:nth-child(odd) .cps-step-spacer {
    grid-column: 3;
    grid-row: 1;
}

.cps-timeline-step:nth-child(even) .cps-step-spacer {
    grid-column: 1;
    grid-row: 1;
}

.cps-timeline-step:nth-child(even) .cps-node {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cps-timeline-step:nth-child(even) .cps-step-card {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.cps-node {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary);
    box-shadow:
        0 0 0 6px rgba(255, 105, 0, 0.12),
        0 10px 24px rgba(0, 26, 51, 0.1);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cps-timeline-step:hover .cps-node {
    transform: scale(1.06);
    box-shadow:
        0 0 0 8px rgba(255, 105, 0, 0.14),
        0 14px 28px rgba(0, 26, 51, 0.12);
}

.cps-node-num {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.cps-step-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.35rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.07);
    border-top: 3px solid rgba(255, 105, 0, 0.45);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.cps-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.cps-step-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.cps-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
}

.cps-step-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.65rem;
}

.cps-step-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.cps-step-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.cps-highlights {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.cps-highlights-kicker {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 1.25rem;
}

.cps-highlight-card {
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 8px 26px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-inline-start: 4px solid var(--primary);
}

.cps-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.09);
}

.cps-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1rem;
}

.cps-highlight-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.cps-highlight-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.cps-highlights-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.cps-highlights-note {
    width: 100%;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cps-highlights-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes cps-step-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .cps-timeline::before {
        left: 26px;
        transform: none;
    }

    .cps-timeline-step {
        grid-template-columns: 52px 1fr;
        gap: 1rem 1.15rem;
    }

    .cps-timeline-step:nth-child(n) .cps-step-spacer {
        display: none;
    }

    .cps-timeline-step:nth-child(n) .cps-node {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        margin-top: 0.35rem;
    }

    .cps-timeline-step:nth-child(n) .cps-step-card {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
    }

    .cps-head {
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 575px) {
    .cps-highlights-cta {
        flex-direction: column;
    }

    .cps-highlights-cta .cps-highlights-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cps-timeline-step {
        animation: none;
    }

    .cps-step-card:hover,
    .cps-highlight-card:hover,
    .cps-timeline-step:hover .cps-node {
        transform: none;
    }

    .cps-step-card,
    .cps-highlight-card,
    .cps-node {
        transition: none;
    }
}

/* ===== Submission Support: how it works (timeline + progress) ===== */
.ssp-submission-workflow {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 50px rgba(0, 26, 51, 0.07);
}

.ssp-submission-workflow .ssp-workflow-bg {
    background:
        radial-gradient(ellipse 70% 55% at 8% 12%, rgba(255, 105, 0, 0.11), transparent 55%),
        radial-gradient(ellipse 60% 50% at 92% 88%, rgba(0, 26, 51, 0.09), transparent 52%),
        radial-gradient(ellipse 45% 40% at 50% 50%, rgba(255, 105, 0, 0.04), transparent 60%),
        linear-gradient(168deg, #ffffff 0%, var(--bg-light) 45%, #f3f6fa 100%);
}

.ssp-submission-workflow .ssp-workflow-inner {
    z-index: 1;
}

.ssp-submission-workflow .cps-head {
    margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.ssp-submission-workflow .ssp-workflow-title {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--dark);
}

.ssp-submission-workflow .ssp-workflow-lead {
    font-size: 1.08rem;
    max-width: 40rem;
    color: var(--text);
}

.ssp-submission-workflow .ssp-step-name {
    color: var(--primary);
    font-weight: 800;
}

.ssp-submission-workflow .cps-step-title {
    color: var(--dark);
}

.ssp-submission-workflow .cps-timeline-step:nth-child(5) {
    animation-delay: 0.34s;
    margin-bottom: 0;
}

.ssp-submission-workflow .cps-timeline {
    margin-bottom: 0;
}

.ssp-submission-workflow .cps-step-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ssp-submission-workflow .cps-step-card:hover .cps-step-icon {
    transform: scale(1.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-submission-workflow .cps-step-icon {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-workflow-motifs {
    list-style: none;
    margin: 1.75rem auto 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
    max-width: 920px;
}

.ssp-workflow-motifs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem 0.45rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 26, 51, 0.05);
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.ssp-workflow-motifs li:hover {
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
    transform: translateY(-2px);
}

.ssp-workflow-motif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 13px;
}

.ssp-workflow-motif-label {
    line-height: 1.2;
}

.ssp-workflow-progress {
    max-width: min(720px, 100%);
    margin: 0 auto 2.25rem;
    padding: 0 0.35rem;
}

.ssp-workflow-progress-track {
    position: relative;
    height: 5px;
    border-radius: 6px;
    background: rgba(0, 26, 51, 0.08);
    overflow: hidden;
}

.ssp-workflow-progress-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.25) 0%,
        rgba(255, 105, 0, 0.85) 50%,
        rgba(0, 26, 51, 0.35) 100%
    );
    transform: scaleX(0);
    transform-origin: left center;
    animation: ssp-workflow-progress-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.ssp-workflow-progress-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -16px;
}

.ssp-workflow-progress-steps li {
    position: relative;
    z-index: 1;
}

.ssp-workflow-progress-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.08), 0 6px 16px rgba(0, 26, 51, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ssp-workflow-progress-steps li:hover span {
    transform: scale(1.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 105, 0, 0.12), 0 10px 22px rgba(0, 26, 51, 0.1);
}

@keyframes ssp-workflow-progress-in {
    from {
        transform: scaleX(0);
        opacity: 0.6;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .ssp-workflow-motifs {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .ssp-workflow-motifs li {
        font-size: 11px;
        padding: 0.35rem 0.7rem 0.4rem;
    }

    .ssp-workflow-progress-steps li span {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssp-workflow-progress-fill {
        animation: none;
        transform: scaleX(1);
        opacity: 1;
    }

    .ssp-workflow-motifs li:hover {
        transform: none;
    }

    .ssp-workflow-progress-steps li:hover span {
        transform: none;
    }

    .ssp-submission-workflow .cps-step-card:hover .cps-step-icon {
        transform: none;
    }
}

/* ===== Submission Support: pre-submission quality review (timeline cards) ===== */
.ssp-quality-review {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 50px rgba(0, 26, 51, 0.06);
}

.ssp-quality-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 68% 50% at 6% 20%, rgba(255, 105, 0, 0.1), transparent 55%),
        radial-gradient(ellipse 55% 45% at 94% 85%, rgba(0, 26, 51, 0.08), transparent 52%),
        linear-gradient(172deg, #fbfcfe 0%, #f4f6f9 40%, var(--bg-light) 100%);
}

.ssp-quality-inner {
    z-index: 1;
}

.ssp-quality-head {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.ssp-quality-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-quality-kicker i {
    font-size: 14px;
}

.ssp-quality-title {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-quality-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.ssp-quality-intro .ssp-review-kw,
.ssp-review-card-title .ssp-review-kw {
    color: var(--primary);
    font-weight: 800;
}

.ssp-review-stages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 0.5rem;
    position: relative;
}

.ssp-review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    animation: ssp-quality-card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-review-item:nth-child(1) {
    animation-delay: 0.04s;
}
.ssp-review-item:nth-child(2) {
    animation-delay: 0.1s;
}
.ssp-review-item:nth-child(3) {
    animation-delay: 0.16s;
}
.ssp-review-item:nth-child(4) {
    animation-delay: 0.22s;
}

.ssp-review-node-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.15rem;
    z-index: 1;
}

.ssp-review-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 3px solid rgba(255, 105, 0, 0.45);
    box-shadow:
        0 0 0 5px rgba(255, 105, 0, 0.08),
        0 10px 24px rgba(0, 26, 51, 0.09);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.ssp-review-item:hover .ssp-review-node {
    transform: scale(1.06);
    border-color: var(--primary);
    box-shadow:
        0 0 0 7px rgba(255, 105, 0, 0.12),
        0 14px 30px rgba(0, 26, 51, 0.11);
}

.ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
    content: "";
    position: absolute;
    left: calc(50% + 28px);
    right: -0.25rem;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.45) 0%,
        rgba(255, 105, 0, 0.2) 45%,
        rgba(0, 26, 51, 0.12) 100%
    );
    border-radius: 3px;
    z-index: 0;
    pointer-events: none;
}

.ssp-review-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: 1.35rem 1.2rem 1.25rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-top: 3px solid rgba(255, 105, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.07);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ssp-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.22);
}

.ssp-review-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.9rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-review-card:hover .ssp-review-icon {
    transform: scale(1.06);
}

.ssp-review-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 0.6rem;
}

.ssp-review-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

@keyframes ssp-quality-card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 576px) {
    .ssp-review-stages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1.25rem;
        max-width: 820px;
        margin: 0 auto;
    }

    .ssp-review-item {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .ssp-review-card {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .ssp-review-stages {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 520px;
        margin: 0 auto;
    }

    .ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
        display: none;
    }

    .ssp-review-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0.65rem 1.1rem;
        align-items: start;
        text-align: left;
        padding-bottom: 1.35rem;
        margin-bottom: 1.35rem;
        border-bottom: 1px solid rgba(0, 26, 51, 0.08);
    }

    .ssp-review-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .ssp-review-node-wrap {
        grid-row: 1 / span 2;
        width: auto;
        margin-bottom: 0;
        align-self: center;
    }

    .ssp-review-node {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .ssp-review-card {
        grid-column: 2;
        max-width: none;
        margin: 0;
    }

    .ssp-review-icon {
        margin: 0 0 0.75rem;
    }
}

@media (max-width: 991px) {
    .ssp-quality-head {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .ssp-quality-title {
        font-size: 1.35rem;
    }

    .ssp-quality-intro {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssp-review-item {
        animation: none;
    }

    .ssp-review-card:hover,
    .ssp-review-item:hover .ssp-review-node,
    .ssp-review-card:hover .ssp-review-icon {
        transform: none;
    }

    .ssp-review-card,
    .ssp-review-node,
    .ssp-review-icon {
        transition: none;
    }

    .ssp-why-card {
        animation: none;
    }

    .ssp-why-card:hover,
    .ssp-why-cta__panel:hover {
        transform: none;
    }

    .ssp-why-card,
    .ssp-why-card__icon,
    .ssp-why-cta__panel {
        transition: none;
    }

    .ssp-advanced-card {
        animation: none;
    }

    .ssp-advanced-card:hover {
        transform: none;
    }

    .ssp-advanced-card,
    .ssp-advanced-card__icon {
        transition: none;
    }

    .ssp-advanced-cta__inner:hover {
        transform: none;
    }
}

/* ===== Submission Support: why choose (benefit grid + CTA) ===== */
.ssp-why-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88) inset,
        0 24px 56px rgba(0, 26, 51, 0.07);
}

.ssp-why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 55% at 10% 15%, rgba(255, 105, 0, 0.11), transparent 58%),
        radial-gradient(ellipse 60% 48% at 90% 80%, rgba(0, 26, 51, 0.09), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, #f5f7fa 50%, #eef1f6 100%);
}

.ssp-why-bg::after {
    content: "";
    position: absolute;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    border-radius: 40% 60% 55% 45%;
    right: -18%;
    top: 40%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 105, 0, 0.06), transparent 68%);
    opacity: 0.9;
}

.ssp-why-inner {
    z-index: 1;
}

.ssp-why-head {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.ssp-why-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-why-kicker i {
    font-size: 15px;
}

.ssp-why-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-why-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 38rem;
}

.ssp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.5rem;
    list-style: none;
    margin: 0.5rem auto 0;
    padding: 0.5rem 0 0;
    position: relative;
    max-width: 1100px;
}

.ssp-why-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 105, 0, 0.22) 12%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.18) 88%,
        transparent 100%
    );
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
}

.ssp-why-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 1.45rem 1.35rem 1.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 36px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    animation: ssp-why-card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-why-card:nth-child(1) {
    animation-delay: 0.03s;
}
.ssp-why-card:nth-child(2) {
    animation-delay: 0.08s;
}
.ssp-why-card:nth-child(3) {
    animation-delay: 0.13s;
}
.ssp-why-card:nth-child(4) {
    animation-delay: 0.18s;
}
.ssp-why-card:nth-child(5) {
    animation-delay: 0.23s;
}
.ssp-why-card:nth-child(6) {
    animation-delay: 0.28s;
}

@media (min-width: 992px) {
    .ssp-why-card:nth-child(even) {
        margin-top: 1.35rem;
    }
}

.ssp-why-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px rgba(0, 26, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.28);
    background: rgba(255, 255, 255, 0.78);
}

.ssp-why-card__accent {
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 1rem;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 105, 0, 0.35) 100%);
    opacity: 0.9;
}

.ssp-why-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: 0.35rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.14) 0%, rgba(255, 105, 0, 0.06) 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-why-card:hover .ssp-why-card__icon {
    transform: scale(1.06);
}

.ssp-why-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 0.65rem;
    padding-left: 0.35rem;
}

.ssp-why-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    padding-left: 0.35rem;
    flex-grow: 1;
}

.ssp-why-cta {
    margin-top: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ssp-why-cta__panel {
    position: relative;
    text-align: center;
    padding: clamp(1.75rem, 3vw, 2.35rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.97) 0%, #003366 48%, #001a33 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 50px rgba(0, 26, 51, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ssp-why-cta__panel:hover {
    box-shadow:
        0 26px 60px rgba(0, 26, 51, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-2px);
}

.ssp-why-cta__glow {
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 105, 0, 0.22), transparent 55%);
    pointer-events: none;
}

.ssp-why-cta__title {
    position: relative;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 0.65rem;
}

.ssp-why-cta__lede {
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto 1.35rem;
    max-width: 26rem;
}

.ssp-why-cta__btn {
    position: relative;
    font-weight: 700;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
}

@keyframes ssp-why-card-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .ssp-why-grid::before {
        display: none;
    }

    .ssp-why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 560px;
    }

    .ssp-why-card:nth-child(even) {
        margin-top: 0;
    }

    .ssp-why-card {
        border-left: 3px solid rgba(255, 105, 0, 0.35);
    }

    .ssp-why-card__accent {
        display: none;
    }
}

@media (max-width: 575px) {
    .ssp-why-title {
        font-size: 1.38rem;
    }

    .ssp-why-subtitle {
        font-size: 0.98rem;
    }

    .ssp-why-cta__panel:hover {
        transform: none;
    }
}

/* ===== Submission Support: advanced services grid + CTA ===== */
.ssp-advanced-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 56px rgba(0, 26, 51, 0.07);
}

.ssp-advanced-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 15% 10%, rgba(255, 105, 0, 0.1), transparent 58%),
        radial-gradient(ellipse 55% 45% at 85% 90%, rgba(0, 26, 51, 0.08), transparent 55%),
        linear-gradient(170deg, #ffffff 0%, #f3f5f9 45%, #e8ecf3 100%);
}

.ssp-advanced-bg::before {
    content: "";
    position: absolute;
    width: min(380px, 65vw);
    height: min(380px, 65vw);
    border-radius: 45% 55% 50% 50%;
    left: -12%;
    bottom: 5%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 26, 51, 0.04), transparent 65%);
}

.ssp-advanced-inner {
    z-index: 1;
}

.ssp-advanced-ribbon {
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 105, 0, 0.45) 25%,
        rgba(0, 26, 51, 0.25) 75%,
        transparent
    );
    opacity: 0.85;
    pointer-events: none;
}

.ssp-advanced-head {
    max-width: 900px;
    margin: 0 auto 2.35rem;
    padding-top: 0.35rem;
}

.ssp-advanced-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-advanced-kicker i {
    font-size: 14px;
}

.ssp-advanced-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-advanced-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 40rem;
}

.ssp-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding-top: 0.35rem;
}

.ssp-advanced-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 1.5rem 1.35rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 12px 36px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    animation: ssp-advanced-card-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-advanced-card:nth-child(1) {
    animation-delay: 0.03s;
}
.ssp-advanced-card:nth-child(2) {
    animation-delay: 0.08s;
}
.ssp-advanced-card:nth-child(3) {
    animation-delay: 0.13s;
}
.ssp-advanced-card:nth-child(4) {
    animation-delay: 0.18s;
}
.ssp-advanced-card:nth-child(5) {
    animation-delay: 0.23s;
}
.ssp-advanced-card:nth-child(6) {
    animation-delay: 0.28s;
}

.ssp-advanced-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 22px 48px rgba(0, 26, 51, 0.14);
    border-color: rgba(255, 105, 0, 0.28);
}

.ssp-advanced-card__shine {
    position: absolute;
    top: -40%;
    right: -35%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 0, 0.12), transparent 62%);
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.35s ease;
}

.ssp-advanced-card:hover .ssp-advanced-card__shine {
    opacity: 1;
}

.ssp-advanced-card__icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.16) 0%, rgba(255, 105, 0, 0.05) 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-advanced-card:hover .ssp-advanced-card__icon {
    transform: scale(1.07) rotate(-2deg);
}

.ssp-advanced-card__title {
    position: relative;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 0.65rem;
}

.ssp-advanced-card__desc {
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    flex-grow: 1;
}

.ssp-advanced-card__desc .ssp-adv-kw {
    color: var(--primary);
    font-weight: 700;
}

.ssp-advanced-cta {
    position: relative;
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ssp-advanced-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 26, 51, 0.12) 25%,
        rgba(255, 105, 0, 0.35) 50%,
        rgba(0, 26, 51, 0.12) 75%,
        transparent
    );
}

.ssp-advanced-cta::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.1);
}

.ssp-advanced-cta__inner {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 14px 40px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ssp-advanced-cta__inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
}

.ssp-advanced-cta__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.ssp-advanced-cta__text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 34rem;
}

.ssp-advanced-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ssp-advanced-cta__btn {
    font-weight: 700;
    padding: 0.65rem 1.65rem;
    border-radius: 50px;
}

.ssp-advanced-cta__btn-secondary {
    font-weight: 700;
    padding: 0.55rem 1.45rem;
    border-radius: 50px;
}

@keyframes ssp-advanced-card-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .ssp-advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 820px;
    }
}

@media (max-width: 767px) {
    .ssp-advanced-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .ssp-advanced-title {
        font-size: 1.38rem;
    }

    .ssp-advanced-subtitle {
        font-size: 0.98rem;
    }

    .ssp-advanced-cta__actions {
        flex-direction: column;
    }

    .ssp-advanced-cta__btn,
    .ssp-advanced-cta__btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===== Career page: Research areas (premium card grid) ===== */
.research-areas-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(168deg, #f0f4f8 0%, var(--bg-light) 42%, #eef6ff 100%);
}

.ras-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ras-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 1;
}

.ras-bg-blob--1 {
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 105, 0, 0.14), rgba(255, 105, 0, 0.02) 62%, transparent 70%);
}

.ras-bg-blob--2 {
    width: min(420px, 75vw);
    height: min(420px, 75vw);
    bottom: -18%;
    left: -10%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 26, 51, 0.09), rgba(0, 26, 51, 0.02) 65%, transparent 72%);
}

.ras-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.research-areas-section > .container {
    z-index: 1;
}

.ras-head {
    max-width: 820px;
    margin: 0 auto 2.75rem;
}

.ras-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.ras-title {
    font-size: clamp(1.65rem, 3.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 1.1rem;
    letter-spacing: -0.02em;
}

.ras-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 auto;
    max-width: 40rem;
}

.ras-key {
    color: var(--primary);
    font-weight: 700;
}

.ras-grid {
    margin-bottom: 0.5rem;
}

.ras-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.65rem 1.5rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-top: 3px solid rgba(255, 105, 0, 0.42);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.ras-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.2);
}

.ras-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.ras-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.16) 0%, rgba(255, 105, 0, 0.06) 100%);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    flex-shrink: 0;
}

.ras-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.75rem;
}

.ras-card-desc {
    font-size: 0.9375rem;
    line-height: 1.68;
    color: var(--text);
    margin: 0;
    flex: 1 1 auto;
}

.ras-cta-panel {
    margin-top: 2.75rem;
    padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ras-cta-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.ras-cta-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 34rem;
}

.ras-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ras-cta-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .ras-head {
        margin-bottom: 2.25rem;
    }

    .ras-cta-actions {
        flex-direction: column;
    }

    .ras-cta-actions .ras-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .ras-card {
        background: #ffffff;
    }

    .ras-cta-panel {
        background: #ffffff;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ras-card {
        transition: none;
    }

    .ras-card:hover {
        transform: none;
    }
}

.services-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.metric-value {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .services-metrics-grid { grid-template-columns: 1fr; }
}

/* ===== Global Landing CTAs + Hero ===== */
.inner-hero {
    padding: 72px 0 42px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

/* ===== Service Suite Hero Banners ===== */
.suite-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.suite-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Light overlay so the transparent header remains readable (matches home vibe) */
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
}

.suite-hero > .container {
    position: relative;
    z-index: 1;
}

.suite-hero-title {
    color: var(--dark);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px;
}

.suite-hero-subtitle {
    color: #4A5565;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 58ch;
}

.suite-hero-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.suite-hero-cta {
    padding: 14px 28px;
    font-weight: 900;
}

.suite-rp-hero-bg { background-image: url("../images/publication-bg.webp"); }
.suite-thesis-hero-bg { background-image: url("../images/quality-bg.webp"); }
.suite-market-hero-bg { background-image: url("../images/formatting-bg.webp"); }
.suite-career-hero-bg { background-image: url("../images/about-bg.webp"); }

.suite-conferences-hero-bg { background-image: url("../images/premium-bg.webp"); }
.suite-call-hero-bg { background-image: url("../images/submission-bg.webp"); }
.suite-journals-hero-bg { background-image: url("../images/journal-bg.webp"); }
.suite-portfolio-hero-bg { background-image: url("../images/publication-bg.webp"); }
.suite-blog-hero-bg { background-image: url("../images/formatting-bg.webp"); }

@media (max-width: 991px) {
    .suite-hero { min-height: 520px; }
    .suite-hero-title { font-size: 36px; }
    .suite-hero-subtitle { font-size: 15px; }
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
}

.inner-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.1;
}

.inner-hero-subtitle {
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.inner-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.inner-hero-primary {
    padding: 14px 30px;
}

.inner-hero-badge {
    background: #001A33;
    border-radius: 22px;
    padding: 20px 18px;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.inner-hero-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: rgba(255,105,0,0.16);
    color: #ff6900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.inner-hero-badge-title {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 8px;
}

.inner-hero-badge-text {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.final-cta-section {
    padding: 50px 0 70px;
}

.final-cta-card {
    background: linear-gradient(180deg, #001A33 0%, #003366 100%);
    border-radius: 26px;
    padding: 28px 22px;
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.final-cta-left {
    min-width: 280px;
    flex: 1;
}

.final-cta-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.final-cta-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.7;
}

.final-cta-right {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.final-cta-button {
    padding: 14px 26px;
}

.final-cta-note {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .inner-hero-grid { grid-template-columns: 1fr; }
    .inner-hero-title { font-size: 34px; }
    .final-cta-right { align-items: flex-start; }
}


/* ===== Call for Papers page — premium hero ===== */
.call-for-papers-page .cfp-hero-section {
    overflow: hidden;
}

.call-for-papers-page .cfp-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.05rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 24ch;
    margin-bottom: 1rem;
    color: var(--dark);
}

.call-for-papers-page .cfp-hero-highlight {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.call-for-papers-page .cfp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

.call-for-papers-page .cfp-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

.call-for-papers-page .cfp-hero-lead {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.68;
    color: #4a5565;
    max-width: 58ch;
}

.call-for-papers-page .cfp-hero-em {
    font-weight: 700;
    color: #334155;
}

.call-for-papers-page .cfp-hero-body-unused {
    margin: 0 0 1.35rem;
    font-size: clamp(0.98rem, 1.8vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
    max-width: 58ch;
}

.call-for-papers-page .cfp-hero-actions {
    margin-top: 0.25rem;
    margin-bottom: 1.35rem;
}

.call-for-papers-page .cfp-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.call-for-papers-page .cfp-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

.call-for-papers-page .cfp-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.call-for-papers-page .cfp-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

.call-for-papers-page .cfp-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
}

.call-for-papers-page .cfp-hero-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.call-for-papers-page .cfp-hero-trust__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

.call-for-papers-page .cfp-hero-trust__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    color: var(--primary);
    font-size: 14px;
}

.call-for-papers-page .cfp-hero-trust__text strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 2px;
}

.call-for-papers-page .cfp-hero-trust__text span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    color: #64748b;
}

.call-for-papers-page .cfp-hero-visual-wrap {
    position: relative;
}

.call-for-papers-page .cfp-hero-visual__glow {
    position: absolute;
    inset: 8% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.14) 0%, transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

.call-for-papers-page .cfp-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.call-for-papers-page .cfp-hero-blob--1 {
    width: min(200px, 40vw);
    height: min(200px, 40vw);
    top: -4%;
    right: 0;
    background: rgba(255, 105, 0, 0.18);
}

.call-for-papers-page .cfp-hero-blob--2 {
    width: min(160px, 34vw);
    height: min(160px, 34vw);
    bottom: 0;
    left: -6%;
    background: rgba(13, 148, 136, 0.14);
}

.call-for-papers-page .cfp-hero-visual {
    position: relative;
    margin: 0;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.call-for-papers-page .cfp-hero-visual-wrap:hover .cfp-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12) inset;
}

.call-for-papers-page .cfp-hero-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.call-for-papers-page .cfp-hero-visual__dots {
    display: flex;
    gap: 5px;
}

.call-for-papers-page .cfp-hero-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.call-for-papers-page .cfp-hero-visual__dots span:first-child {
    background: #ff6b6b;
}

.call-for-papers-page .cfp-hero-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.call-for-papers-page .cfp-hero-workflow {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding: 0.65rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.call-for-papers-page .cfp-hero-workflow__step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.55rem 0.35rem;
    border-radius: 12px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.call-for-papers-page .cfp-hero-workflow__step--active {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.06);
}

.call-for-papers-page .cfp-hero-workflow__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.18);
    color: var(--primary);
    font-size: 13px;
}

.call-for-papers-page .cfp-hero-workflow__step strong {
    display: block;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
}

.call-for-papers-page .cfp-hero-workflow__step span {
    display: block;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
    color: #64748b;
}

.call-for-papers-page .cfp-hero-workflow__arrow {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 11px;
    flex-shrink: 0;
}

.call-for-papers-page .cfp-hero-visual__cards {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.call-for-papers-page .cfp-hero-publisher {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.07);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.call-for-papers-page .cfp-hero-publisher--active {
    border-color: rgba(255, 105, 0, 0.22);
    background: linear-gradient(145deg, #fff9f5 0%, #fff 100%);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.08);
}

.call-for-papers-page .cfp-hero-publisher:hover {
    transform: translateX(4px);
    border-color: rgba(255, 105, 0, 0.18);
}

.call-for-papers-page .cfp-hero-publisher__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.18);
    color: var(--primary);
    font-size: 14px;
}

.call-for-papers-page .cfp-hero-publisher strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.call-for-papers-page .cfp-hero-publisher span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

.call-for-papers-page .cfp-hero-visual__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.call-for-papers-page .cfp-hero-visual__metric {
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(0, 26, 51, 0.03);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.call-for-papers-page .cfp-hero-visual__metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 3px;
}

.call-for-papers-page .cfp-hero-visual__metric-val {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
}

.call-for-papers-page .cfp-hero-visual__float {
    position: absolute;
    right: -8px;
    bottom: -10px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff 0%, #fff9f5 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.12);
    animation: conferencesHeroFloat 4s ease-in-out infinite;
}

.call-for-papers-page .cfp-hero-visual__float i {
    color: #16a34a;
    font-size: 18px;
}

.call-for-papers-page .cfp-hero-visual__float strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
}

.call-for-papers-page .cfp-hero-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@keyframes conferencesHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    .call-for-papers-page .cfp-hero-trust {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .call-for-papers-page .cfp-hero-visual-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .call-for-papers-page .cfp-hero-workflow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .call-for-papers-page .cfp-hero-workflow__arrow {
        display: none;
    }

    .call-for-papers-page .cfp-hero-workflow__step {
        flex: 1 1 calc(33.333% - 0.5rem);
        min-width: 88px;
    }
}

@media (max-width: 767px) {
    .call-for-papers-page .cfp-hero-actions .btn {
        width: 100%;
    }

    .call-for-papers-page .cfp-hero-visual__float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        animation: none;
    }

    .call-for-papers-page .cfp-hero-workflow__step {
        flex: 1 1 100%;
        flex-direction: row;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .call-for-papers-page .cfp-hero-trust__item,
    .call-for-papers-page .cfp-hero-visual,
    .call-for-papers-page .cfp-hero-btn-primary,
    .call-for-papers-page .cfp-hero-btn-secondary,
    .call-for-papers-page .cfp-hero-visual__float,
    .call-for-papers-page .cfp-hero-publisher {
        transition: none;
        animation: none;
    }

    .call-for-papers-page .cfp-hero-trust__item:hover,
    .call-for-papers-page .cfp-hero-visual-wrap:hover .cfp-hero-visual,
    .call-for-papers-page .cfp-hero-btn-primary:hover,
    .call-for-papers-page .cfp-hero-btn-secondary:hover,
    .call-for-papers-page .cfp-hero-publisher:hover {
        transform: none;
    }
}

/* ===== Call for Papers page — publisher listings ===== */
.call-for-papers-page .cfp-listings-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
    overflow: hidden;
}

.call-for-papers-page .cfp-listings-section__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 45% at 12% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 88% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.call-for-papers-page .cfp-listings-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
    pointer-events: none;
}

.call-for-papers-page .cfp-listings-section__blob--1 {
    width: min(220px, 40vw);
    height: min(220px, 40vw);
    top: 8%;
    right: -5%;
    background: rgba(255, 105, 0, 0.12);
}

.call-for-papers-page .cfp-listings-section__blob--2 {
    width: min(180px, 34vw);
    height: min(180px, 34vw);
    bottom: 6%;
    left: -4%;
    background: rgba(13, 148, 136, 0.1);
}

.call-for-papers-page .cfp-listings-section > .container {
    position: relative;
    z-index: 1;
}

.call-for-papers-page .cfp-listings-head {
    max-width: 820px;
    margin: 0 auto clamp(28px, 4vw, 44px);
}

.call-for-papers-page .cfp-listings-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.call-for-papers-page .cfp-listings-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.call-for-papers-page .cfp-listings-intro {
    margin: 0 auto;
    max-width: 46rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.call-for-papers-page .cfp-listings-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto clamp(28px, 4vw, 40px);
    max-width: 960px;
}

.call-for-papers-page .cfp-listings-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.call-for-papers-page .cfp-listings-search:focus-within {
    border-color: rgba(255, 105, 0, 0.28);
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.1);
}

.call-for-papers-page .cfp-listings-search i {
    color: var(--primary);
    font-size: 14px;
}

.call-for-papers-page .cfp-listings-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    outline: none;
}

.call-for-papers-page .cfp-listings-search__input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.call-for-papers-page .cfp-listings-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
}

.call-for-papers-page .cfp-listings-filter {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 26, 51, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.call-for-papers-page .cfp-listings-filter:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 105, 0, 0.25);
}

.call-for-papers-page .cfp-listings-filter.is-active {
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border-color: rgba(255, 105, 0, 0.35);
    color: #9a3412;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.14);
}

.call-for-papers-page .cfp-publisher-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2.4vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.call-for-papers-page .cfp-publisher-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 105, 0, 0.2) 55%, transparent 100%);
}

.call-for-papers-page .cfp-publisher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.call-for-papers-page .cfp-publisher-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.call-for-papers-page .cfp-publisher-card__logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.32s ease;
}

.call-for-papers-page .cfp-publisher-card:hover .cfp-publisher-card__logo {
    transform: scale(1.06);
}

.call-for-papers-page .cfp-publisher-card__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

.call-for-papers-page .cfp-publisher-card__blurb {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.call-for-papers-page .cfp-publisher-card__calls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.call-for-papers-page .cfp-publisher-card__calls-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.15rem;
    padding: 0.35rem 0.75rem;
    width: fit-content;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9a3412;
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.call-for-papers-page .cfp-publisher-card__calls-label i {
    font-size: 12px;
}

.call-for-papers-page .cfp-call-item {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
    border-left: 3px solid rgba(255, 105, 0, 0.45);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.call-for-papers-page .cfp-publisher-card:hover .cfp-call-item {
    border-left-color: var(--primary);
}

.call-for-papers-page .cfp-call-item:hover {
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    border-color: rgba(255, 105, 0, 0.15);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.06);
}

.call-for-papers-page .cfp-call-item__title {
    margin: 0 0 0.55rem;
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark);
}

.call-for-papers-page .cfp-call-item__deadline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.08);
}

.call-for-papers-page .cfp-call-item__deadline-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9a3412;
}

.call-for-papers-page .cfp-call-item__deadline-val {
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
}

.call-for-papers-page .cfp-call-item__support {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.62;
    color: #475569;
}

@media (max-width: 991px) {
    .call-for-papers-page .cfp-listings-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .call-for-papers-page .cfp-listings-filter {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .call-for-papers-page .cfp-publisher-card__head {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .call-for-papers-page .cfp-publisher-card,
    .call-for-papers-page .cfp-publisher-card__logo,
    .call-for-papers-page .cfp-listings-filter,
    .call-for-papers-page .cfp-call-item {
        transition: none;
    }

    .call-for-papers-page .cfp-publisher-card:hover,
    .call-for-papers-page .cfp-listings-filter:hover {
        transform: none;
    }
}

/* ===== Call for Papers page — monthly updates CTA ===== */
.call-for-papers-page .cfp-updates-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
}

.call-for-papers-page .cfp-updates-section__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 15% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.call-for-papers-page .cfp-updates-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.45;
    pointer-events: none;
}

.call-for-papers-page .cfp-updates-section__blob--1 {
    width: min(240px, 42vw);
    height: min(240px, 42vw);
    top: -5%;
    left: -6%;
    background: rgba(255, 105, 0, 0.14);
}

.call-for-papers-page .cfp-updates-section__blob--2 {
    width: min(200px, 36vw);
    height: min(200px, 36vw);
    bottom: -8%;
    right: -4%;
    background: rgba(13, 148, 136, 0.12);
}

.call-for-papers-page .cfp-updates-section > .container {
    position: relative;
    z-index: 1;
}

.call-for-papers-page .cfp-updates-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 24px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.08) inset;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.call-for-papers-page .cfp-updates-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 30%, rgba(255, 105, 0, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.call-for-papers-page .cfp-updates-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.call-for-papers-page .cfp-updates-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.call-for-papers-page .cfp-updates-subtitle {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.call-for-papers-page .cfp-updates-lead {
    margin: 0 0 1.25rem;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.call-for-papers-page .cfp-updates-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    max-width: 480px;
}

.call-for-papers-page .cfp-updates-form__input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 26, 51, 0.1);
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.call-for-papers-page .cfp-updates-form__input:focus {
    outline: none;
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.12);
}

.call-for-papers-page .cfp-updates-form__btn {
    flex-shrink: 0;
    font-weight: 700;
}

.call-for-papers-page .cfp-updates-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.call-for-papers-page .cfp-updates-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.26);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.call-for-papers-page .cfp-updates-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255, 105, 0, 0.32);
}

.call-for-papers-page .cfp-updates-btn-secondary {
    font-weight: 700;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.call-for-papers-page .cfp-updates-btn-secondary:hover {
    transform: translateY(-2px);
}

.call-for-papers-page .cfp-updates-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.call-for-papers-page .cfp-updates-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(0, 26, 51, 0.08);
}

.call-for-papers-page .cfp-updates-pill i {
    color: var(--primary);
    font-size: 12px;
}

.call-for-papers-page .cfp-updates-visual {
    position: relative;
    margin: 0;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.call-for-papers-page .cfp-updates-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.12);
}

.call-for-papers-page .cfp-updates-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.call-for-papers-page .cfp-updates-visual__dots {
    display: flex;
    gap: 5px;
}

.call-for-papers-page .cfp-updates-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.call-for-papers-page .cfp-updates-visual__dots span:first-child {
    background: #ff6b6b;
}

.call-for-papers-page .cfp-updates-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.call-for-papers-page .cfp-updates-visual__calendar {
    margin-bottom: 0.85rem;
    padding: 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.call-for-papers-page .cfp-updates-visual__cal-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.call-for-papers-page .cfp-updates-visual__cal-head strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
}

.call-for-papers-page .cfp-updates-visual__cal-head span {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.call-for-papers-page .cfp-updates-visual__cal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
}

.call-for-papers-page .cfp-updates-visual__cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.call-for-papers-page .cfp-updates-visual__cal-day--muted {
    color: #94a3b8;
    background: transparent;
    border-color: transparent;
}

.call-for-papers-page .cfp-updates-visual__cal-day--active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.call-for-papers-page .cfp-updates-visual__cal-day--due {
    color: #9a3412;
    background: #fff5ed;
    border-color: rgba(255, 105, 0, 0.28);
}

.call-for-papers-page .cfp-updates-visual__feed {
    display: grid;
    gap: 0.5rem;
}

.call-for-papers-page .cfp-updates-visual__feed-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.06);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.call-for-papers-page .cfp-updates-visual__feed-item--active {
    border-color: rgba(255, 105, 0, 0.22);
    background: linear-gradient(145deg, #fff9f5 0%, #fff 100%);
}

.call-for-papers-page .cfp-updates-visual__feed-item i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 13px;
}

.call-for-papers-page .cfp-updates-visual__feed-item strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.call-for-papers-page .cfp-updates-visual__feed-item span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

.call-for-papers-page .cfp-updates-visual__float {
    position: absolute;
    right: -6px;
    bottom: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff 0%, #fff9f5 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.12);
    animation: cfpUpdatesFloat 4s ease-in-out infinite;
}

.call-for-papers-page .cfp-updates-visual__float i {
    color: #16a34a;
    font-size: 18px;
}

.call-for-papers-page .cfp-updates-visual__float strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
}

.call-for-papers-page .cfp-updates-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@keyframes cfpUpdatesFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Call for Papers page — trust / benefits grid ===== */
.call-for-papers-page .cfp-trust-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: #ffffff;
    overflow: hidden;
}

.call-for-papers-page .cfp-trust-section__mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.call-for-papers-page .cfp-trust-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.35;
    pointer-events: none;
}

.call-for-papers-page .cfp-trust-section__blob--1 {
    width: min(200px, 38vw);
    height: min(200px, 38vw);
    bottom: 10%;
    right: -5%;
    background: rgba(255, 105, 0, 0.1);
}

.call-for-papers-page .cfp-trust-section > .container {
    position: relative;
    z-index: 1;
}

.call-for-papers-page .cfp-trust-head {
    max-width: 820px;
    margin: 0 auto clamp(32px, 4.5vw, 48px);
}

.call-for-papers-page .cfp-trust-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.call-for-papers-page .cfp-trust-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.call-for-papers-page .cfp-trust-intro {
    margin: 0 auto;
    max-width: 46rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.call-for-papers-page .cfp-trust-card {
    --cfp-trust-accent: var(--primary);
    --cfp-trust-accent-soft: rgba(255, 105, 0, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.call-for-papers-page .cfp-trust-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cfp-trust-accent) 0%, transparent 100%);
}

.call-for-papers-page .cfp-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.call-for-papers-page .cfp-trust-card--editing {
    --cfp-trust-accent: #ff6900;
    --cfp-trust-accent-soft: rgba(255, 105, 0, 0.14);
}

.call-for-papers-page .cfp-trust-card--formatting {
    --cfp-trust-accent: #0d9488;
    --cfp-trust-accent-soft: rgba(13, 148, 136, 0.14);
}

.call-for-papers-page .cfp-trust-card--presentation {
    --cfp-trust-accent: #6366f1;
    --cfp-trust-accent-soft: rgba(99, 102, 241, 0.14);
}

.call-for-papers-page .cfp-trust-card--publication {
    --cfp-trust-accent: #2563eb;
    --cfp-trust-accent-soft: rgba(37, 99, 235, 0.14);
}

.call-for-papers-page .cfp-trust-card--multidisciplinary {
    --cfp-trust-accent: #0891b2;
    --cfp-trust-accent-soft: rgba(8, 145, 178, 0.14);
}

.call-for-papers-page .cfp-trust-card--workflow {
    --cfp-trust-accent: #7c3aed;
    --cfp-trust-accent-soft: rgba(124, 58, 237, 0.14);
}

.call-for-papers-page .cfp-trust-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--cfp-trust-accent-soft);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--cfp-trust-accent);
    font-size: 20px;
    transition: transform 0.32s ease;
}

.call-for-papers-page .cfp-trust-card:hover .cfp-trust-card__icon {
    transform: scale(1.06);
}

.call-for-papers-page .cfp-trust-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1rem, 1.7vw, 1.1rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
}

.call-for-papers-page .cfp-trust-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

@media (max-width: 991px) {
    .call-for-papers-page .cfp-updates-lead {
        max-width: none;
    }

    .call-for-papers-page .cfp-updates-form,
    .call-for-papers-page .cfp-updates-actions {
        justify-content: center;
    }

    .call-for-papers-page .cfp-updates-pills {
        justify-content: center;
    }

    .call-for-papers-page .cfp-updates-visual {
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .call-for-papers-page .cfp-updates-actions .btn {
        width: 100%;
    }

    .call-for-papers-page .cfp-updates-form__btn {
        width: 100%;
    }

    .call-for-papers-page .cfp-updates-visual__float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .call-for-papers-page .cfp-updates-visual,
    .call-for-papers-page .cfp-updates-visual__float,
    .call-for-papers-page .cfp-updates-btn-primary,
    .call-for-papers-page .cfp-updates-btn-secondary,
    .call-for-papers-page .cfp-trust-card,
    .call-for-papers-page .cfp-trust-card__icon {
        transition: none;
        animation: none;
    }

    .call-for-papers-page .cfp-updates-visual:hover,
    .call-for-papers-page .cfp-updates-btn-primary:hover,
    .call-for-papers-page .cfp-updates-btn-secondary:hover,
    .call-for-papers-page .cfp-trust-card:hover {
        transform: none;
    }
}




/* ===== Contact page â€” inquiry section ===== */
.contact-page .contact-inquiry-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.contact-page .contact-inquiry-section__bg,
.contact-page .contact-inquiry-section__mesh,
.contact-page .contact-inquiry-section__orb {
    position: absolute;
    pointer-events: none;
}

.contact-page .contact-inquiry-section__bg {
    inset: 0;
    background:
        radial-gradient(ellipse 55% 48% at 8% 20%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 92% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 52%);
}

.contact-page .contact-inquiry-section__mesh {
    inset: 0;
    opacity: 0.28;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.contact-page .contact-inquiry-section__orb--1 {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    top: 10%;
    right: 5%;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.4;
    background: rgba(255, 105, 0, 0.14);
}

.contact-page .contact-inquiry-section > .container {
    position: relative;
    z-index: 1;
}

.contact-page .contact-inquiry-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-page .contact-inquiry-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.contact-page .contact-inquiry-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.contact-page .contact-inquiry-intro {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    max-width: 42ch;
}

.contact-page .contact-inquiry-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-page .contact-inquiry-visual__glow {
    position: absolute;
    inset: 10% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.1) 0%, transparent 70%);
    filter: blur(20px);
}

.contact-page .contact-inquiry-visual__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
}

.contact-page .contact-inquiry-visual__step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.contact-page .contact-inquiry-visual__step--active {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(255, 105, 0, 0.2);
}

.contact-page .contact-inquiry-visual__step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.22);
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.contact-page .contact-inquiry-visual__step strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 2px;
}

.contact-page .contact-inquiry-visual__step span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
}

.contact-page .contact-inquiry-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-page .contact-inquiry-detail {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-page .contact-inquiry-detail:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 105, 0, 0.18);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.08);
}

.contact-page .contact-inquiry-detail__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    color: var(--primary);
    font-size: 18px;
}

.contact-page .contact-inquiry-detail__icon--whatsapp {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25d366;
}

.contact-page .contact-inquiry-detail__label {
    margin: 0 0 0.2rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-page .contact-inquiry-detail a {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page .contact-inquiry-detail a:hover {
    color: var(--primary);
}

.contact-page .contact-inquiry-form-card {
    position: relative;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.contact-page .contact-inquiry-form-card:hover {
    box-shadow: 0 22px 56px rgba(0, 26, 51, 0.1);
}

.contact-page .contact-inquiry-form-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.contact-page .contact-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page .contact-inquiry-field {
    position: relative;
}

.contact-page .contact-inquiry-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.contact-page .contact-inquiry-field__icon {
    position: absolute;
    left: 12px;
    bottom: 11px;
    color: rgba(74, 85, 101, 0.5);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.contact-page .contact-inquiry-field--icon input,
.contact-page .contact-inquiry-field--icon textarea {
    padding-left: 36px;
}

.contact-page .contact-inquiry-field--textarea .contact-inquiry-field__icon {
    bottom: auto;
    top: 38px;
}

.contact-page .contact-inquiry-field input,
.contact-page .contact-inquiry-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.45;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-page .contact-inquiry-field input:focus,
.contact-page .contact-inquiry-field textarea:focus {
    outline: none;
    border-color: rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.12);
    background: #fff;
}

.contact-page .contact-inquiry-field--phone .iti {
    width: 100%;
}

.contact-page .contact-inquiry-field--phone input {
    padding-left: 52px;
}

.contact-page .contact-inquiry-form__submit {
    margin-top: 0.35rem;
    min-height: 48px;
    font-weight: 800;
    border-radius: 999px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-inquiry-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 105, 0, 0.28);
}

/* ===== Contact page â€” consultation CTA section ===== */
.contact-page .contact-consultation-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.contact-page .contact-consultation-section__bg,
.contact-page .contact-consultation-section__mesh,
.contact-page .contact-consultation-section__orb {
    position: absolute;
    pointer-events: none;
}

.contact-page .contact-consultation-section__bg {
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(13, 148, 136, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 100% 100%, rgba(255, 105, 0, 0.05) 0%, transparent 50%);
}

.contact-page .contact-consultation-section__mesh {
    inset: 0;
    opacity: 0.26;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
}

.contact-page .contact-consultation-section__orb {
    border-radius: 50%;
    filter: blur(44px);
    opacity: 0.42;
}

.contact-page .contact-consultation-section__orb--1 {
    width: clamp(120px, 18vw, 200px);
    height: clamp(120px, 18vw, 200px);
    top: 8%;
    left: 6%;
    background: rgba(13, 148, 136, 0.16);
}

.contact-page .contact-consultation-section__orb--2 {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    bottom: 10%;
    right: 8%;
    background: rgba(255, 105, 0, 0.12);
}

.contact-page .contact-consultation-section > .container {
    position: relative;
    z-index: 1;
}

.contact-page .contact-consultation-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
}

.contact-page .contact-consultation-head {
    margin-bottom: clamp(24px, 3.5vw, 32px);
}

.contact-page .contact-consultation-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d9488;
}

.contact-page .contact-consultation-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.contact-page .contact-consultation-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.contact-page .contact-consultation-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.contact-page .contact-consultation-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-page .contact-consultation-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 14px;
    background: rgba(241, 245, 249, 0.65);
    border: 1px solid rgba(0, 26, 51, 0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-consultation-trust__item:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.22);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.07);
}

.contact-page .contact-consultation-trust__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: #0d9488;
    font-size: 16px;
}

.contact-page .contact-consultation-trust__item strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.contact-page .contact-consultation-trust__item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

.contact-page .contact-consultation-cta {
    min-height: 52px;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-consultation-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.28);
}

@media (max-width: 991px) {
    .contact-page .contact-consultation-trust {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .contact-page .contact-consultation-cta,
    .contact-page .contact-inquiry-form__submit {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page .contact-inquiry-detail,
    .contact-page .contact-inquiry-form-card,
    .contact-page .contact-inquiry-form__submit,
    .contact-page .contact-consultation-trust__item,
    .contact-page .contact-consultation-cta {
        transition: none;
    }

    .contact-page .contact-inquiry-detail:hover,
    .contact-page .contact-inquiry-form__submit:hover,
    .contact-page .contact-consultation-trust__item:hover,
    .contact-page .contact-consultation-cta:hover {
        transform: none;
    }
}


/* ===== PR Services page ===== */

/* PR hero â€” premium split layout (pr-services + market-your-research) */
:is(.pr-services-page, .market-your-research-page) .pr-hero-section {
    overflow: hidden;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin-bottom: 1rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-trust {
    margin: 0 0 0.85rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-highlight {
    color: var(--dark);
    background: linear-gradient(180deg, transparent 58%, rgba(255, 105, 0, 0.22) 58%);
    padding: 0 2px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--dark);
    max-width: 52ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-body {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #4a5565;
    max-width: 54ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-actions {
    margin-top: 0.35rem;
    margin-bottom: 1.35rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 15px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .career-skills-hero-animate--visual {
    animation-delay: 0.22s;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
    position: relative;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual__glow {
    position: absolute;
    inset: 6% 2% 4% 6%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.18) 0%, transparent 68%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--1 {
    width: min(220px, 45vw);
    height: min(220px, 45vw);
    top: -4%;
    right: 0;
    background: rgba(96, 165, 250, 0.2);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--2 {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    bottom: 2%;
    left: -6%;
    background: rgba(255, 105, 0, 0.16);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots {
    display: flex;
    gap: 5px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(1) { background: #fda4af; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(3) { background: #86efac; }

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge i {
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--pr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: prBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--pr-d, 0s);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes prBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-spark {
    display: block;
    width: 100%;
    height: 40px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float {
    position: absolute;
    bottom: 18px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 14px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 991px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-body {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-dash-float {
        right: 8px;
    }
}

@media (max-width: 575px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        grid-template-columns: 1fr;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary,
    :is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
        animation: none;
        transition: none;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
        transform: none;
    }
}

.pr-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .pr-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.pr-section-gap {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}

.suite-pr-services-hero-bg {
    background-image: url("../images/formatting-bg.webp");
}

.pr-services-hero.suite-hero::before {
    background: linear-gradient(
        125deg,
        rgba(0, 26, 51, 0.88) 0%,
        rgba(0, 26, 51, 0.72) 42%,
        rgba(0, 51, 102, 0.55) 100%
    );
}

.pr-services-hero .suite-hero-title {
    color: #fff;
}

.pr-services-hero .suite-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
}

.pr-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    max-width: 62ch;
    margin: 0 auto 8px;
}

.pr-services-hero .pr-hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}

.pr-services-hero .pr-hero-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
}

.pr-why-intro {
    max-width: 56ch;
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pr-why-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.pr-services-service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-services-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
}

.pr-services-service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.pr-service-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #4a5565;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.75;
}

.pr-service-list li {
    margin-bottom: 8px;
}

.pr-benefits-section .section-title .main-title {
    color: var(--dark);
}

.pr-benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 26px 24px;
    min-height: 100%;
    background: linear-gradient(
        155deg,
        rgba(0, 26, 51, 0.97) 0%,
        rgba(0, 40, 82, 0.94) 48%,
        rgba(0, 26, 51, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 40px rgba(0, 12, 30, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pr-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 0, 0.07) 0%,
        transparent 45%
    );
    pointer-events: none;
}

.pr-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow:
        0 22px 50px rgba(0, 12, 30, 0.38),
        0 0 28px rgba(255, 105, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pr-benefit-card-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--primary);
    background: rgba(255, 105, 0, 0.14);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.12);
}

.pr-benefit-card-title {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px;
}

.pr-benefit-card-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-case-card .metric-value {
    font-size: 22px;
    color: var(--dark);
}

.pr-case-card .metric-label {
    font-weight: 700;
}

.pr-cta-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
}

.pr-cta-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

/* ===== eBook services page (light theme, matches homepage) ===== */
.ebook-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .ebook-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.ebook-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 68ch;
    margin: 0 auto 10px;
}

.ebook-service-card {
    position: relative;
    border-radius: 20px;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ebook-service-card:hover {
    transform: translateY(-5px);
    border-color: #e0e4e8;
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    border: 1px solid rgba(255, 105, 0, 0.25);
}

.ebook-service-tag--popular {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ebook-service-tag--trend {
    background: #f0f7ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.ebook-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-service-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-service-card-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0 0 12px;
    flex-grow: 1;
}

.ebook-services-list-section .ebook-service-card-desc {
    margin-bottom: 0;
}

.ebook-services-list-section .section-title .sub-title {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .ebook-services-list-section .offset-lg-3 {
        margin-left: 0;
    }
}

/* ===== eBook Services â€” Process timeline ===== */
.ebook-services-page .ebook-process-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-process-section__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 70% at 92% 8%, rgba(255, 105, 0, 0.08) 0%, transparent 52%),
        radial-gradient(90% 65% at 4% 88%, rgba(0, 26, 51, 0.06) 0%, transparent 55%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 247, 247, 0) 42%, rgba(255, 105, 0, 0.04) 100%);
}

.ebook-services-page .ebook-process-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.ebook-services-page .ebook-process-section__accent--1 {
    width: min(320px, 50vw);
    height: min(320px, 50vw);
    top: -4%;
    right: 6%;
    background: rgba(255, 105, 0, 0.14);
}

.ebook-services-page .ebook-process-section__accent--2 {
    width: min(260px, 44vw);
    height: min(260px, 44vw);
    bottom: 6%;
    left: -2%;
    background: rgba(0, 38, 77, 0.07);
}

.ebook-services-page .ebook-process-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-process-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.ebook-services-page .ebook-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.ebook-services-page .ebook-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.ebook-services-page .ebook-process-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(300px, 30%);
    gap: clamp(24px, 3.5vw, 44px);
    align-items: center;
}

.ebook-services-page .ebook-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    position: relative;
}

.ebook-services-page .ebook-process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.ebook-services-page .ebook-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-process-step__track {
    display: none;
}

.ebook-services-page .ebook-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.35rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(6px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
    margin-top: clamp(12px, 2vw, 20px);
}

.ebook-services-page .ebook-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: -2.35rem auto 1rem;
    width: fit-content;
}

.ebook-services-page .ebook-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4eb 0%, #ffe8d9 100%);
    border: 1px solid rgba(255, 105, 0, 0.35);
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.15);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__num {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-process-step__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    text-align: center;
}

.ebook-services-page .ebook-process-step__desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    text-align: center;
}

.ebook-services-page .ebook-process-visual__panel {
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(10px);
}

.ebook-services-page .ebook-process-visual__flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.ebook-services-page .ebook-process-visual__chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.05);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-services-page .ebook-process-visual__chip i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.ebook-services-page .ebook-process-visual__chip--highlight {
    border-color: rgba(255, 105, 0, 0.28);
    background: linear-gradient(145deg, #fff8f3 0%, #fff 100%);
}

.ebook-services-page .ebook-process-visual__arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 105, 0, 0.55);
    font-size: 16px;
    line-height: 1;
}

/* ===== eBook Services â€” Why publishing matters ===== */
.ebook-services-page .ebook-why-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: #ffffff;
    overflow: hidden;
}

.ebook-services-page .ebook-why-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 45% at 100% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 0% 80%, rgba(0, 26, 51, 0.05) 0%, transparent 50%);
}

.ebook-services-page .ebook-why-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-why-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.ebook-services-page .ebook-why-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-why-sub {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: #64748b;
}

.ebook-services-page .ebook-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.ebook-services-page .ebook-why-card--alt {
    background: linear-gradient(145deg, #fafbfd 0%, #ffffff 100%);
}

.ebook-services-page .ebook-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 105, 0, 0.2) 100%);
    opacity: 0.85;
    transition: height 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.ebook-services-page .ebook-why-card:hover::before {
    height: 4px;
}

.ebook-services-page .ebook-why-card__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 21px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover .ebook-why-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-why-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.02rem, 1.8vw, 1.12rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.ebook-services-page .ebook-why-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #64748b;
}

@media (max-width: 1399px) {
    .ebook-services-page .ebook-process-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-process-visual {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 28px);
        max-width: 560px;
        margin: 0 auto;
        padding-left: 28px;
        border-left: 2px solid rgba(255, 105, 0, 0.22);
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step {
        position: relative;
    }

    .ebook-services-page .ebook-process-step::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 28px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px rgba(255, 105, 0, 0.35);
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }

    .ebook-services-page .ebook-process-step__card {
        text-align: left;
    }

    .ebook-services-page .ebook-process-step__node {
        flex-direction: row;
        margin: -2rem auto 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .ebook-services-page .ebook-process-step__title,
    .ebook-services-page .ebook-process-step__desc {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-process-step__card,
    .ebook-services-page .ebook-process-step__icon,
    .ebook-services-page .ebook-process-step__num,
    .ebook-services-page .ebook-why-card,
    .ebook-services-page .ebook-why-card__icon,
    .ebook-services-page .ebook-why-card::before {
        transition: none;
    }

    .ebook-services-page .ebook-process-step__card:hover,
    .ebook-services-page .ebook-why-card:hover {
        transform: none;
    }
}

/* ===== eBook Services â€” Audience section ===== */
.ebook-services-page .ebook-audience-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-audience-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
}

.ebook-services-page .ebook-audience-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.45;
    pointer-events: none;
}

.ebook-services-page .ebook-audience-section__accent--1 {
    width: min(300px, 48vw);
    height: min(300px, 48vw);
    top: 8%;
    right: -4%;
    background: rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-audience-head {
    max-width: 760px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-audience-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3.5vw, 40px);
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}

.ebook-services-page .ebook-audience-intro__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(8px);
}

.ebook-services-page .ebook-audience-intro__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-intro__text {
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.72;
    color: #4a5565;
}

.ebook-services-page .ebook-audience-kw {
    font-weight: 800;
    color: var(--dark);
    background: linear-gradient(180deg, transparent 62%, rgba(255, 105, 0, 0.18) 62%);
    padding: 0 1px;
}

.ebook-services-page .ebook-audience-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
}

.ebook-services-page .ebook-audience-item {
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-audience-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    padding: clamp(1.1rem, 2vw, 1.25rem);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 0, 0.22);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-services-page .ebook-audience-card__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 11px;
}

.ebook-services-page .ebook-audience-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 17px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover .ebook-audience-card__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.15);
}

.ebook-services-page .ebook-audience-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark);
}

/* ===== eBook Services â€” FAQ accordion ===== */
.ebook-services-page .ebook-faq-section {
    padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 96px);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
}

.ebook-services-page .ebook-faq-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-faq-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item {
    margin: 0;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.08);
}

.ebook-services-page .ebook-faq-accordion .accordion-header {
    margin: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    border: 0;
    transition: color 0.25s ease, background 0.25s ease;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.ebook-services-page .ebook-faq-accordion .accordion-button::after {
    display: none;
}

.ebook-services-page .ebook-faq-item__q {
    flex: 1;
    text-align: left;
}

.ebook-services-page .ebook-faq-item__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 26, 51, 0.08);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, background 0.25s ease, opacity 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle {
    background: rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.25);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    background: var(--primary);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:hover .ebook-faq-item__toggle {
    border-color: rgba(255, 105, 0, 0.3);
}

.ebook-services-page .ebook-faq-accordion .accordion-body,
.ebook-services-page .ebook-faq-item__a {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.ebook-services-page .ebook-faq-accordion .accordion-collapse {
    transition: height 0.32s ease;
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-audience-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-audience-card,
    .ebook-services-page .ebook-audience-card__icon,
    .ebook-services-page .ebook-faq-accordion .ebook-faq-item,
    .ebook-services-page .ebook-faq-item__toggle,
    .ebook-services-page .ebook-faq-item__toggle::before,
    .ebook-services-page .ebook-faq-item__toggle::after {
        transition: none;
    }

    .ebook-services-page .ebook-audience-card:hover {
        transform: none;
    }
}

.ebook-service-seo {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0 0 16px;
}

.ebook-service-cta {
    align-self: flex-start;
    margin-top: auto;
}

.ebook-process-card {
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.ebook-process-num {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.ebook-process-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-process-desc {
    font-size: 14px;
    font-weight: 600;
    color: #4a5565;
    margin: 0;
    line-height: 1.65;
}

.ebook-benefit-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.ebook-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-benefit-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.35;
}

.ebook-benefit-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0;
}

.ebook-use-case-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 560px;
}

.ebook-use-case-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ebook-use-case-list li:last-child {
    margin-bottom: 0;
}

.ebook-use-case-list .fa-check {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.ebook-cta-strip {
    padding: 2.5rem 0;
}

.ebook-cta-inner {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.ebook-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.ebook-cta-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
}

.ebook-cta-btn {
    padding: 14px 26px;
    font-weight: 900;
}

.ebook-cta-btn-outline {
    padding: 12px 24px;
    font-weight: 800;
}

.ebook-seo-section {
    padding: 1.5rem 0 3rem;
    border-top: 1px solid #eef0f2;
}

.ebook-seo-boost {
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== Conference services page (light theme, matches homepage) ===== */
.conference-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .conference-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.conference-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.78;
    max-width: 65ch;
    margin: 0 auto 10px;
}

.conference-svc-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.conference-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.conference-svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.conference-svc-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 10px;
}

.conference-svc-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conference-svc-btn {
    margin-top: auto;
    align-self: flex-start;
}

.conference-services-page .conference-step-card {
    border-radius: 20px;
    padding: 22px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-services-page .conference-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.conference-step-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.conference-services-page .conference-step-card h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
}

.conference-services-page .conference-step-card p {
    color: #4a5565;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.conference-services-page .conference-benefit-card {
    border-radius: 20px;
    padding: 22px 20px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-services-page .conference-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.conference-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.conference-services-page .conference-benefit-card h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
}

.conference-services-page .conference-benefit-card p {
    color: #4a5565;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.conference-cta-panel {
    border-radius: 20px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.conference-cta-title {
    color: var(--dark);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 900;
    margin: 0;
}

/* ===== Market Your Research page ===== */
.market-your-research-page {
    --myr-section-pad-y: clamp(56px, 7vw, 96px);
    --myr-card-pad-block: 24px;
    --myr-card-pad-inline: 22px;
    --myr-radius-card: 18px;
    --myr-shadow-soft: 0 12px 32px rgba(0, 26, 51, 0.07);
    --myr-shadow-hover: 0 20px 44px rgba(0, 26, 51, 0.12);
    --myr-ease: cubic-bezier(0.34, 1.25, 0.64, 1);
    --myr-transition: 0.26s var(--myr-ease);
}

/* MYR — academic impact / trust section */
.market-your-research-page .myr-impact-section {
    position: relative;
    padding: var(--myr-section-pad-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 32%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-impact-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 58% 48% at 12% 18%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 52% 42% at 88% 78%, rgba(59, 130, 246, 0.06) 0%, transparent 52%);
    pointer-events: none;
}

.market-your-research-page .myr-impact-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-impact-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-impact-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-impact-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-impact-sub {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-impact-card {
    --myr-impact-accent: var(--primary);
    --myr-impact-soft: rgba(255, 105, 0, 0.12);
    --myr-impact-gradient: linear-gradient(165deg, #fff8f2 0%, rgba(255, 255, 255, 0.92) 58%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: var(--myr-impact-gradient);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: var(--myr-shadow-soft);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-impact-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, var(--myr-impact-soft) 0%, transparent 68%);
    pointer-events: none;
}

.market-your-research-page .myr-impact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--myr-shadow-hover);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-impact-card--researchers {
    --myr-impact-accent: #ff6900;
    --myr-impact-soft: rgba(255, 105, 0, 0.16);
    --myr-impact-gradient: linear-gradient(165deg, #fff8f2 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--promotions {
    --myr-impact-accent: #6366f1;
    --myr-impact-soft: rgba(99, 102, 241, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #eef2ff 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--reach {
    --myr-impact-accent: #0d9488;
    --myr-impact-soft: rgba(13, 148, 136, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #ecfdf5 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--visibility {
    --myr-impact-accent: #2563eb;
    --myr-impact-soft: rgba(37, 99, 235, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #eff6ff 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--myr-impact-accent);
    font-size: 20px;
    box-shadow: 0 6px 18px var(--myr-impact-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-impact-card:hover .myr-impact-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-impact-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-impact-card__desc {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .pr-hero-actions {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .market-your-research-page .myr-impact-card__title {
        font-size: 1.05rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-impact-card,
    .market-your-research-page .myr-impact-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-impact-card:hover,
    .market-your-research-page .myr-impact-card:hover .myr-impact-card__icon {
        transform: none;
    }
}

.market-your-research-page .myr-hero-section {
    position: relative;
    overflow: hidden;
    padding-top: clamp(120px, 12vw, 168px);
    padding-bottom: clamp(72px, 9vw, 112px);
    background: linear-gradient(165deg, #f4f8fd 0%, #eef4fb 42%, #f8fafc 100%);
    box-shadow: 0 28px 56px rgba(0, 26, 51, 0.07);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 12% 18%, rgba(59, 130, 246, 0.11), transparent 55%),
        radial-gradient(circle at 88% 22%, rgba(255, 105, 0, 0.12), transparent 42%),
        radial-gradient(circle at 70% 88%, rgba(14, 165, 233, 0.08), transparent 45%);
}

.market-your-research-page .myr-hero-bg::before,
.market-your-research-page .myr-hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.85;
}

.market-your-research-page .myr-hero-bg::before {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    left: -8%;
    top: 18%;
    background: rgba(96, 165, 250, 0.22);
}

.market-your-research-page .myr-hero-bg::after {
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    right: -6%;
    bottom: 8%;
    background: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.06);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 1.4vw, 14px);
}

.market-your-research-page .myr-hero-kicker i {
    color: var(--primary);
    font-size: 13px;
}

.market-your-research-page .myr-hero-cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 clamp(14px, 1.8vw, 18px);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.22);
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.market-your-research-page .myr-hero-cred-badge i {
    font-size: 12px;
    color: #0d9488;
}

.market-your-research-page .myr-hero-kw {
    color: var(--primary);
    font-weight: 800;
}

.market-your-research-page .myr-hero-title {
    font-size: clamp(2.05rem, 4.8vw, 2.55rem);
    line-height: 1.12;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: clamp(18px, 2.2vw, 26px);
     
}

 
.market-your-research-page .myr-hero-highlight {
    color: var(--primary);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .market-your-research-page .myr-hero-highlight {
        background: linear-gradient(120deg, var(--primary) 0%, #ff8534 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.market-your-research-page .myr-hero-subtitle {
    max-width: 36rem;
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    line-height: 1.62;
    color: #3d4a5c;
    margin-bottom: clamp(12px, 1.6vw, 16px);
    font-weight: 500;
}

.market-your-research-page .myr-hero-supporting {
    max-width: 32rem;
    font-size: clamp(0.88rem, 1.35vw, 0.97rem);
    line-height: 1.65;
    color: #64748b;
    margin-bottom: clamp(26px, 3.2vw, 34px);
    font-weight: 500;
}

.market-your-research-page .myr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.market-your-research-page .myr-hero-btn-primary {
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.market-your-research-page .myr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.42);
    filter: brightness(1.03);
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

.market-your-research-page .myr-hero-btn-secondary {
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65) !important;
    color: var(--dark) !important;
    border: 2px solid rgba(0, 26, 51, 0.14) !important;
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.market-your-research-page .myr-hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--dark) !important;
    box-shadow: 0 10px 26px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-hero-cta-note {
    margin: clamp(12px, 1.6vw, 16px) 0 clamp(22px, 2.8vw, 28px);
    max-width: 36rem;
    font-size: clamp(0.86rem, 1.25vw, 0.95rem);
    line-height: 1.58;
    font-weight: 600;
    color: #64748b;
}

.market-your-research-page .myr-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.market-your-research-page .myr-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 26, 51, 0.07);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.market-your-research-page .myr-trust-badge i {
    color: #0d9488;
    flex-shrink: 0;
}

.market-your-research-page .myr-trust-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-bottom: clamp(22px, 2.8vw, 30px);
    padding-top: 4px;
}

.market-your-research-page .myr-trust-platforms-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.market-your-research-page .myr-trust-platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.market-your-research-page .myr-platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--dark);
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-platform-icon abbr {
    text-decoration: none;
    border: 0;
    cursor: default;
}

.market-your-research-page .myr-platform-icon-in {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 13px;
}

.market-your-research-page .myr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 1200px) {
    .market-your-research-page .myr-hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.market-your-research-page .myr-stat-item {
    min-width: 0;
    border: 1px solid rgba(0, 26, 51, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    padding: 14px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-your-research-page .myr-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-stat-item strong {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-stat-item .myr-stat-em {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.market-your-research-page .myr-stat-item span {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 4px;
}

/* Hero visual â€” dashboard mockup */
.market-your-research-page .myr-hero-visual-wrap {
    position: relative;
    padding: clamp(8px, 2vw, 20px) 0;
}

.market-your-research-page .myr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}

.market-your-research-page .myr-hero-blob--1 {
    width: min(280px, 70%);
    height: min(280px, 50vw);
    right: 6%;
    top: -4%;
    background: rgba(59, 130, 246, 0.2);
    animation: myrHeroFloatA 9s ease-in-out infinite;
}

.market-your-research-page .myr-hero-blob--2 {
    width: min(220px, 55%);
    height: min(220px, 45vw);
    left: 4%;
    bottom: 6%;
    background: rgba(255, 105, 0, 0.16);
    animation: myrHeroFloatB 11s ease-in-out infinite;
}

@keyframes myrHeroFloatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8px, 12px) scale(1.04); }
}

@keyframes myrHeroFloatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-hero-blob--1,
    .market-your-research-page .myr-hero-blob--2 {
        animation: none;
    }
    .market-your-research-page .myr-dash-bar {
        animation: none !important;
    }
    .market-your-research-page .myr-dash-float {
        animation: none !important;
    }
    .market-your-research-page .myr-hero-btn-primary:hover,
    .market-your-research-page .myr-hero-btn-secondary:hover {
        transform: none;
    }
}

.market-your-research-page .myr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 24px;
    border: 1px solid rgba(0, 26, 51, 0.08);
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 24px 56px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    padding: clamp(18px, 2.8vw, 26px);
    overflow: visible;
}

.market-your-research-page .myr-hero-visual--dashboard {
    min-height: 320px;
}

.market-your-research-page .myr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.market-your-research-page .myr-dash-window-dots {
    display: flex;
    gap: 6px;
}

.market-your-research-page .myr-dash-window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
}

.market-your-research-page .myr-dash-window-dots span:nth-child(1) { background: #fda4af; }
.market-your-research-page .myr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
.market-your-research-page .myr-dash-window-dots span:nth-child(3) { background: #86efac; }

.market-your-research-page .myr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 105, 0, 0.1);
    color: var(--dark);
}

.market-your-research-page .myr-dash-badge i {
    color: var(--primary);
}

.market-your-research-page .myr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--myr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: myrBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--myr-d, 0s);
}

.market-your-research-page .myr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes myrBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

.market-your-research-page .myr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

.market-your-research-page .myr-dash-spark {
    display: block;
    width: 100%;
    height: 48px;
}

.market-your-research-page .myr-dash-metrics {
    display: flex;
    gap: 12px;
}

.market-your-research-page .myr-dash-metric {
    flex: 1;
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8ecf1;
}

.market-your-research-page .myr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.market-your-research-page .myr-dash-metric-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #15803d;
}

.market-your-research-page .myr-dash-float {
    position: absolute;
    right: -6px;
    top: 42%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.14);
    animation: myrDashFloat 5s ease-in-out infinite;
}

.market-your-research-page .myr-dash-float i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 16px;
}

.market-your-research-page .myr-dash-float strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-dash-float span {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

@keyframes myrDashFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 575px) {
    .market-your-research-page .myr-dash-float {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 14px;
        animation: none;
    }
}

.market-your-research-page .myr-hero-visual img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* MYR â€” problem / comparison section (premium) */
.market-your-research-page .myr-problem-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 38%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-problem-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 8% 15%, rgba(59, 130, 246, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 92% 85%, rgba(255, 105, 0, 0.06) 0%, transparent 52%);
    pointer-events: none;
}

.market-your-research-page .myr-problem-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-problem-top {
    margin-bottom: clamp(40px, 5vw, 56px);
}

.market-your-research-page .myr-problem-heading {
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 clamp(16px, 2vw, 20px);
    max-width: 22ch;
}

.market-your-research-page .myr-problem-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.market-your-research-page .myr-problem-lead {
    font-size: clamp(1rem, 1.65vw, 1.08rem);
    line-height: 1.65;
    font-weight: 600;
    color: #334155;
    margin: 0 0 0.75rem;
    max-width: 42rem;
}

.market-your-research-page .myr-problem-desc {
    font-size: clamp(0.94rem, 1.4vw, 1rem);
    line-height: 1.68;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 1.25rem;
    max-width: 42rem;
}

.market-your-research-page .myr-problem-struggles-label {
    margin: 0 0 0.65rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
}

.market-your-research-page .myr-problem-struggles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.market-your-research-page .myr-problem-struggles-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.55;
    color: #475569;
}

.market-your-research-page .myr-problem-struggles-list li i {
    flex-shrink: 0;
    margin-top: 0.45em;
    font-size: 6px;
    color: var(--primary);
}

.market-your-research-page .myr-problem-visual {
    position: relative;
}

.market-your-research-page .myr-problem-visual__glow {
    position: absolute;
    inset: 8% 4% 6% 8%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.16) 0%, transparent 68%);
    filter: blur(22px);
    pointer-events: none;
}

.market-your-research-page .myr-problem-visual__panel {
    position: relative;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 26, 51, 0.06), 0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.market-your-research-page .myr-problem-visual:hover .myr-problem-visual__panel {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 26, 51, 0.08), 0 28px 64px rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-problem-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.market-your-research-page .myr-problem-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-problem-visual__badge i {
    color: var(--primary);
}

.market-your-research-page .myr-problem-visual__dots {
    display: flex;
    gap: 5px;
}

.market-your-research-page .myr-problem-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.market-your-research-page .myr-problem-visual__dots span:nth-child(1) { background: #fda4af; }
.market-your-research-page .myr-problem-visual__dots span:nth-child(2) { background: #fcd34d; }
.market-your-research-page .myr-problem-visual__dots span:nth-child(3) { background: #86efac; }

.market-your-research-page .myr-problem-visual__chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-problem-visual__bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--myr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: myrBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.market-your-research-page .myr-problem-visual__bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 18px rgba(255, 105, 0, 0.3);
}

.market-your-research-page .myr-problem-visual__bar--peak {
    background: linear-gradient(180deg, #34d399 0%, #059669 100%);
    box-shadow: 0 0 18px rgba(5, 150, 105, 0.25);
}

@keyframes myrBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

.market-your-research-page .myr-problem-visual__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.market-your-research-page .myr-problem-visual__metric {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-problem-visual__metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

.market-your-research-page .myr-problem-visual__metric-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.market-your-research-page .myr-problem-visual__float {
    position: absolute;
    bottom: 18px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-problem-visual__float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 14px;
}

.market-your-research-page .myr-problem-visual__float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-problem-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

.market-your-research-page .myr-problem-compare {
    margin-bottom: clamp(32px, 4vw, 44px);
}

.market-your-research-page .myr-problem-compare__head {
    margin-bottom: clamp(24px, 3.5vw, 32px);
}

.market-your-research-page .myr-problem-compare__title {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-problem-closing {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 36px rgba(255, 105, 0, 0.1);
}

.market-your-research-page .myr-problem-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-problem-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR â€” services section (premium cards) */
.market-your-research-page .myr-services-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
    overflow: hidden;
}

.market-your-research-page .myr-services-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 12% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 88% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.market-your-research-page .myr-services-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-services-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-services-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.market-your-research-page .myr-services-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-services-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-svc-card {
    --myr-svc-accent: var(--primary);
    --myr-svc-accent-soft: rgba(255, 105, 0, 0.12);
    --myr-svc-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    --myr-svc-icon-border: rgba(255, 105, 0, 0.28);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-svc-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-svc-accent) 0%, transparent 100%);
    opacity: 0.95;
    transition: height 0.32s ease;
}

.market-your-research-page .myr-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-svc-card:hover .myr-svc-card__accent {
    height: 5px;
}

.market-your-research-page .myr-svc-card--bio {
    --myr-svc-accent: #ff6900;
    --myr-svc-accent-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-svc-card--social {
    --myr-svc-accent: #6366f1;
    --myr-svc-accent-soft: rgba(99, 102, 241, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
    --myr-svc-icon-border: rgba(99, 102, 241, 0.28);
}

.market-your-research-page .myr-svc-card--youtube {
    --myr-svc-accent: #dc2626;
    --myr-svc-accent-soft: rgba(220, 38, 38, 0.12);
    --myr-svc-icon-bg: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
    --myr-svc-icon-border: rgba(220, 38, 38, 0.25);
}

.market-your-research-page .myr-svc-card--pr {
    --myr-svc-accent: #0d9488;
    --myr-svc-accent-soft: rgba(13, 148, 136, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    --myr-svc-icon-border: rgba(13, 148, 136, 0.28);
}

.market-your-research-page .myr-svc-card--profile {
    --myr-svc-accent: #2563eb;
    --myr-svc-accent-soft: rgba(37, 99, 235, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    --myr-svc-icon-border: rgba(37, 99, 235, 0.28);
}

.market-your-research-page .myr-svc-card--discover {
    --myr-svc-accent: #7c3aed;
    --myr-svc-accent-soft: rgba(124, 58, 237, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
    --myr-svc-icon-border: rgba(124, 58, 237, 0.28);
}

.market-your-research-page .myr-svc-card__header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.market-your-research-page .myr-svc-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--myr-svc-icon-bg);
    border: 1px solid var(--myr-svc-icon-border);
    color: var(--myr-svc-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-svc-accent-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-svc-card:hover .myr-svc-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-svc-card__title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-svc-card__lead {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-svc-card__includes {
    margin-bottom: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-svc-card__label {
    margin: 0 0 0.55rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--myr-svc-accent);
}

.market-your-research-page .myr-svc-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.market-your-research-page .myr-svc-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #475569;
}

.market-your-research-page .myr-svc-card__list li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--myr-svc-accent-soft);
    color: var(--myr-svc-accent);
    font-size: 10px;
}

.market-your-research-page .myr-svc-card__ideal {
    margin-top: auto;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(0, 26, 51, 0.12);
    transition: border-color 0.32s ease, background 0.32s ease;
}

.market-your-research-page .myr-svc-card:hover .myr-svc-card__ideal {
    border-color: var(--myr-svc-accent-soft);
    background: rgba(255, 255, 255, 0.95);
}

.market-your-research-page .myr-svc-card__ideal-label {
    margin: 0 0 0.35rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.market-your-research-page .myr-svc-card__ideal-label i {
    color: var(--myr-svc-accent);
    font-size: 12px;
}

.market-your-research-page .myr-svc-card__ideal-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.55;
    color: #334155;
}

@media (max-width: 991px) {
    .market-your-research-page .myr-problem-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .market-your-research-page .myr-problem-visual__float {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-problem-visual__bar,
    .market-your-research-page .myr-problem-visual__panel,
    .market-your-research-page .myr-svc-card,
    .market-your-research-page .myr-svc-card__icon {
        animation: none;
        transition: none;
    }

    .market-your-research-page .myr-problem-visual:hover .myr-problem-visual__panel,
    .market-your-research-page .myr-svc-card:hover,
    .market-your-research-page .myr-svc-card:hover .myr-svc-card__icon {
        transform: none;
    }
}

.market-your-research-page .myr-compare-card {
    border: 1px solid #eef1f5;
    border-radius: var(--myr-radius-card);
    padding: clamp(1.25rem, 2.5vw, 1.65rem);
    background: #fff;
    backdrop-filter: blur(8px);
    transition: transform var(--myr-transition), box-shadow var(--myr-transition), border-color var(--myr-transition);
}

.market-your-research-page .myr-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--myr-shadow-hover);
    border-color: rgba(255, 105, 0, 0.15);
}

.market-your-research-page .myr-compare-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.market-your-research-page .myr-compare-card-before .myr-compare-label {
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.market-your-research-page .myr-compare-card-after .myr-compare-label {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.market-your-research-page .myr-compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-your-research-page .myr-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    line-height: 1.45;
}

.market-your-research-page .myr-compare-list li:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-compare-list li > i {
    flex-shrink: 0;
    width: 1.1em;
    margin-top: 2px;
    text-align: center;
}

.market-your-research-page .myr-compare-card-before .myr-compare-list li > i {
    color: #ea580c;
    font-size: 13px;
}

.market-your-research-page .myr-compare-card-after .myr-compare-list li > i {
    color: #16a34a;
    font-size: 13px;
}

.market-your-research-page .myr-compare-card-before {
    background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.market-your-research-page .myr-compare-card-after {
    background: linear-gradient(180deg, #fafffd 0%, #ffffff 100%);
}

.market-your-research-page .myr-results-section,
.market-your-research-page .myr-process-section,
.market-your-research-page .myr-ecosystem-section,
.market-your-research-page .myr-authority-section,
.market-your-research-page .myr-platforms-section,
.market-your-research-page .myr-testimonials-section,
.market-your-research-page .myr-vs-section,
.market-your-research-page .myr-pricing-section,
.market-your-research-page .myr-why-section,
.market-your-research-page .myr-faq-section,
.market-your-research-page .myr-audit-section {
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
}

/* MYR — comparison section (premium) */
.market-your-research-page .myr-vs-section {
    position: relative;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-vs-section__bg,
.market-your-research-page .myr-vs-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-vs-section__bg {
    background:
        radial-gradient(ellipse 55% 48% at 8% 12%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 92% 88%, rgba(148, 163, 184, 0.06) 0%, transparent 52%);
}

.market-your-research-page .myr-vs-section__mesh {
    opacity: 0.32;
    background-image: radial-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.market-your-research-page .myr-vs-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-vs-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.market-your-research-page .myr-vs-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-vs-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-vs-head .myr-vs-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-vs-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-vs-card {
    --myr-vs-accent: var(--primary);
    --myr-vs-soft: rgba(255, 105, 0, 0.12);
    --myr-vs-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-vs-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-vs-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-vs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
}

.market-your-research-page .myr-vs-card:hover .myr-vs-card__accent {
    height: 5px;
}

.market-your-research-page .myr-vs-card--scopus {
    --myr-vs-accent: #0d9488;
    --myr-vs-soft: rgba(13, 148, 136, 0.14);
    --myr-vs-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(13, 148, 136, 0.22);
}

.market-your-research-page .myr-vs-card--scopus:hover {
    border-color: rgba(13, 148, 136, 0.38);
    box-shadow: 0 20px 48px rgba(13, 148, 136, 0.12);
}

.market-your-research-page .myr-vs-card--generic {
    --myr-vs-accent: #94a3b8;
    --myr-vs-soft: rgba(148, 163, 184, 0.16);
    --myr-vs-icon-bg: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(148, 163, 184, 0.35);
}

.market-your-research-page .myr-vs-card--generic:hover {
    border-color: rgba(148, 163, 184, 0.5);
}

.market-your-research-page .myr-vs-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.market-your-research-page .myr-vs-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--myr-vs-icon-bg);
    border: 1px solid var(--myr-vs-soft);
    color: var(--myr-vs-accent);
    font-size: 20px;
    box-shadow: 0 6px 18px var(--myr-vs-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-vs-card:hover .myr-vs-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-vs-card__title {
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-vs-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.market-your-research-page .myr-vs-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
}

.market-your-research-page .myr-vs-card__list li:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-vs-card__list li i {
    flex-shrink: 0;
    width: 20px;
    margin-top: 3px;
    text-align: center;
    font-size: 12px;
}

.market-your-research-page .myr-vs-card--scopus .myr-vs-card__list li i {
    color: #0d9488;
}

.market-your-research-page .myr-vs-card--generic .myr-vs-card__list li i {
    color: #94a3b8;
}

.market-your-research-page .myr-vs-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.7) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-left: 4px solid #0d9488;
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-vs-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-vs-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR — pricing section (premium) */
.market-your-research-page .myr-pricing-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-pricing-section__bg,
.market-your-research-page .myr-pricing-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-pricing-section__bg {
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
}

.market-your-research-page .myr-pricing-section__mesh {
    opacity: 0.28;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.market-your-research-page .myr-pricing-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-pricing-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.market-your-research-page .myr-pricing-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-pricing-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-pricing-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-pricing-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-price-card {
    --myr-price-accent: var(--primary);
    --myr-price-soft: rgba(255, 105, 0, 0.12);
    --myr-price-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-price-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-price-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.market-your-research-page .myr-price-card:hover .myr-price-card__accent {
    height: 5px;
}

.market-your-research-page .myr-price-card--basic {
    --myr-price-accent: #64748b;
    --myr-price-soft: rgba(100, 116, 139, 0.14);
    --myr-price-icon-bg: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

.market-your-research-page .myr-price-card--standard {
    --myr-price-accent: #2563eb;
    --myr-price-soft: rgba(37, 99, 235, 0.14);
    --myr-price-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-price-card--premium {
    --myr-price-accent: #ff6900;
    --myr-price-soft: rgba(255, 105, 0, 0.16);
}

.market-your-research-page .myr-price-card--popular {
    border-color: rgba(37, 99, 235, 0.28);
    background: linear-gradient(165deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.12),
        0 10px 32px rgba(0, 26, 51, 0.06);
    transform: scale(1.02);
}

.market-your-research-page .myr-price-card--popular:hover {
    transform: scale(1.02) translateY(-6px);
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow:
        0 22px 52px rgba(37, 99, 235, 0.16),
        0 12px 36px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-price-card--recommended {
    border-color: rgba(255, 105, 0, 0.32);
    background: linear-gradient(165deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    box-shadow:
        0 14px 40px rgba(255, 105, 0, 0.1),
        0 10px 32px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-price-card--recommended:hover {
    border-color: rgba(255, 105, 0, 0.45);
    box-shadow:
        0 22px 52px rgba(255, 105, 0, 0.14),
        0 12px 36px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.market-your-research-page .myr-price-badge--popular {
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
}

.market-your-research-page .myr-price-badge--recommended {
    border: 1px solid rgba(255, 105, 0, 0.35);
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
}

.market-your-research-page .myr-price-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-price-icon-bg);
    border: 1px solid var(--myr-price-soft);
    color: var(--myr-price-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-price-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-price-card:hover .myr-price-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-price-card--popular .myr-price-card__title,
.market-your-research-page .myr-price-card--recommended .myr-price-card__title {
    padding-right: clamp(5rem, 28%, 8.5rem);
}

.market-your-research-page .myr-price-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 1.8vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-price-card__lead {
    margin: 0 0 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-price-card__includes {
    flex-grow: 1;
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(241, 245, 249, 0.55);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-price-card__label {
    margin: 0 0 0.65rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-price-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-your-research-page .myr-price-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: #475569;
}

.market-your-research-page .myr-price-card__list li:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-price-card__list li i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 4px;
    text-align: center;
    font-size: 11px;
    color: #0d9488;
}

.market-your-research-page .myr-price-card__cta {
    margin-top: auto;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.market-your-research-page .myr-price-card__cta:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .market-your-research-page .myr-price-card--popular {
        transform: none;
    }

    .market-your-research-page .myr-price-card--popular:hover {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-vs-card,
    .market-your-research-page .myr-vs-card__icon,
    .market-your-research-page .myr-price-card,
    .market-your-research-page .myr-price-card__icon,
    .market-your-research-page .myr-price-card__cta {
        transition: none;
    }

    .market-your-research-page .myr-vs-card:hover,
    .market-your-research-page .myr-vs-card:hover .myr-vs-card__icon,
    .market-your-research-page .myr-price-card:hover,
    .market-your-research-page .myr-price-card--popular,
    .market-your-research-page .myr-price-card--popular:hover,
    .market-your-research-page .myr-price-card:hover .myr-price-card__icon,
    .market-your-research-page .myr-price-card__cta:hover {
        transform: none;
    }
}

/* MYR — process section (premium timeline) */
.market-your-research-page .myr-process-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-process-section__bg,
.market-your-research-page .myr-process-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-process-section__bg {
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.market-your-research-page .myr-process-section__mesh {
    opacity: 0.4;
    background-image: radial-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.market-your-research-page .myr-process-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-process-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.market-your-research-page .myr-process-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-process-intro {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-process-desc {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.market-your-research-page .myr-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
    position: relative;
}

.market-your-research-page .myr-process-timeline::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.market-your-research-page .myr-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.market-your-research-page .myr-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.1rem, 2vw, 1.35rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.market-your-research-page .myr-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.market-your-research-page .myr-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.market-your-research-page .myr-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--primary) 0%, #ff8534 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.35);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-process-step__card:hover .myr-process-step__num {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.42);
}

.market-your-research-page .myr-process-step__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-process-step__card:hover .myr-process-step__icon {
    transform: scale(1.08);
}

.market-your-research-page .myr-process-step__title {
    margin: 0 0 0.55rem;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
    text-align: center;
}

.market-your-research-page .myr-process-step__text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
}

.market-your-research-page .myr-process-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-process-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-process-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR â€” ecosystem section */
.market-your-research-page .myr-ecosystem-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 42%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-ecosystem-section__bg,
.market-your-research-page .myr-ecosystem-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-ecosystem-section__bg {
    background:
        radial-gradient(ellipse 60% 45% at 15% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 85% 80%, rgba(255, 105, 0, 0.05) 0%, transparent 52%);
}

.market-your-research-page .myr-ecosystem-section__mesh {
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.market-your-research-page .myr-ecosystem-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-ecosystem-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-ecosystem-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-ecosystem-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-ecosystem-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-ecosystem-intro {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-ecosystem-desc {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.market-your-research-page .myr-eco-card {
    --myr-eco-accent: var(--primary);
    --myr-eco-soft: rgba(255, 105, 0, 0.12);
    --myr-eco-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-eco-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-eco-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-eco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-eco-card:hover .myr-eco-card__accent {
    height: 5px;
}

.market-your-research-page .myr-eco-card--visibility {
    --myr-eco-accent: #ff6900;
    --myr-eco-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-eco-card--authority {
    --myr-eco-accent: #0d9488;
    --myr-eco-soft: rgba(13, 148, 136, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-eco-card--reach {
    --myr-eco-accent: #6366f1;
    --myr-eco-soft: rgba(99, 102, 241, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
}

.market-your-research-page .myr-eco-card--engagement {
    --myr-eco-accent: #2563eb;
    --myr-eco-soft: rgba(37, 99, 235, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-eco-card--citation {
    --myr-eco-accent: #7c3aed;
    --myr-eco-soft: rgba(124, 58, 237, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.market-your-research-page .myr-eco-card--presence {
    --myr-eco-accent: #059669;
    --myr-eco-soft: rgba(5, 150, 105, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-eco-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-eco-icon-bg);
    border: 1px solid var(--myr-eco-soft);
    color: var(--myr-eco-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-eco-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-eco-card:hover .myr-eco-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-eco-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-eco-card__text {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-ecosystem-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 36px rgba(255, 105, 0, 0.08);
}

.market-your-research-page .myr-ecosystem-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-ecosystem-closing strong {
    color: var(--dark);
    font-weight: 800;
}

@media (max-width: 1199px) {
    .market-your-research-page .myr-process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .market-your-research-page .myr-process-timeline::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .market-your-research-page .myr-process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 1.25rem;
        border-left: 2px solid rgba(255, 105, 0, 0.25);
    }

    .market-your-research-page .myr-process-step__card {
        text-align: left;
    }

    .market-your-research-page .myr-process-step__node {
        flex-direction: row;
        justify-content: flex-start;
    }

    .market-your-research-page .myr-process-step__title,
    .market-your-research-page .myr-process-step__text {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-process-step__card,
    .market-your-research-page .myr-process-step__icon,
    .market-your-research-page .myr-process-step__num,
    .market-your-research-page .myr-eco-card,
    .market-your-research-page .myr-eco-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-process-step__card:hover,
    .market-your-research-page .myr-process-step__card:hover .myr-process-step__icon,
    .market-your-research-page .myr-process-step__card:hover .myr-process-step__num,
    .market-your-research-page .myr-eco-card:hover,
    .market-your-research-page .myr-eco-card:hover .myr-eco-card__icon {
        transform: none;
    }
}

/* MYR â€” authority / why choose section */
.market-your-research-page .myr-authority-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(135deg, #f5f8fc 0%, #fafbfc 42%, #f0f4fa 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-authority-section__bg,
.market-your-research-page .myr-authority-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-authority-section__bg {
    background:
        radial-gradient(ellipse 55% 48% at 10% 20%, rgba(255, 105, 0, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 52%);
}

.market-your-research-page .myr-authority-section__mesh {
    opacity: 0.35;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.market-your-research-page .myr-authority-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-authority-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-authority-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-authority-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-authority-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-authority-intro {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-auth-card {
    --myr-auth-accent: var(--primary);
    --myr-auth-soft: rgba(255, 105, 0, 0.12);
    --myr-auth-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-auth-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-auth-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-auth-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.market-your-research-page .myr-auth-card:hover .myr-auth-card__accent {
    height: 5px;
}

.market-your-research-page .myr-auth-card--comm {
    --myr-auth-accent: #ff6900;
    --myr-auth-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-auth-card--ethical {
    --myr-auth-accent: #059669;
    --myr-auth-soft: rgba(5, 150, 105, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-auth-card--position {
    --myr-auth-accent: #2563eb;
    --myr-auth-soft: rgba(37, 99, 235, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-auth-card--human {
    --myr-auth-accent: #6366f1;
    --myr-auth-soft: rgba(99, 102, 241, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
}

.market-your-research-page .myr-auth-card--workflow {
    --myr-auth-accent: #0d9488;
    --myr-auth-soft: rgba(13, 148, 136, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-auth-card--longterm {
    --myr-auth-accent: #7c3aed;
    --myr-auth-soft: rgba(124, 58, 237, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.market-your-research-page .myr-auth-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-auth-icon-bg);
    border: 1px solid var(--myr-auth-soft);
    color: var(--myr-auth-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-auth-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-auth-card:hover .myr-auth-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-auth-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.12rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-auth-card__text {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

/* MYR â€” platforms showcase */
.market-your-research-page .myr-platforms-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
    overflow: hidden;
}

.market-your-research-page .myr-platforms-section__bg,
.market-your-research-page .myr-platforms-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-platforms-section__bg {
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 20% 90%, rgba(255, 105, 0, 0.05) 0%, transparent 50%);
}

.market-your-research-page .myr-platforms-section__mesh {
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
}

.market-your-research-page .myr-platforms-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-platforms-head {
    max-width: 780px;
    margin: 0 auto clamp(32px, 4.5vw, 48px);
}

.market-your-research-page .myr-platforms-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-platforms-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-platforms-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-platforms-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-plat-card {
    --myr-plat-accent: #003a70;
    --myr-plat-soft: rgba(0, 58, 112, 0.12);
    --myr-plat-bg: linear-gradient(165deg, #f8fafc 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 132px;
    padding: 1.25rem 1rem;
    border-radius: 18px;
    background: var(--myr-plat-bg);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    backdrop-filter: blur(6px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.market-your-research-page .myr-plat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
    border-color: rgba(255, 105, 0, 0.25);
}

.market-your-research-page .myr-plat-card--scholar {
    --myr-plat-accent: #4285f4;
    --myr-plat-soft: rgba(66, 133, 244, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #eff6ff 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--rg {
    --myr-plat-accent: #00d0af;
    --myr-plat-soft: rgba(0, 208, 175, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #ecfdf5 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--linkedin {
    --myr-plat-accent: #0a66c2;
    --myr-plat-soft: rgba(10, 102, 194, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #eff6ff 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--academia {
    --myr-plat-accent: #b45309;
    --myr-plat-soft: rgba(180, 83, 9, 0.12);
    --myr-plat-bg: linear-gradient(165deg, #fffbeb 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--orcid {
    --myr-plat-accent: #a6ce39;
    --myr-plat-soft: rgba(166, 206, 57, 0.18);
    --myr-plat-bg: linear-gradient(165deg, #f7fee7 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--youtube {
    --myr-plat-accent: #dc2626;
    --myr-plat-soft: rgba(220, 38, 38, 0.12);
    --myr-plat-bg: linear-gradient(165deg, #fef2f2 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--blogs {
    --myr-plat-accent: #6366f1;
    --myr-plat-soft: rgba(99, 102, 241, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #eef2ff 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--media {
    --myr-plat-accent: #0d9488;
    --myr-plat-soft: rgba(13, 148, 136, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #ecfdf5 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--myr-plat-soft);
    color: var(--myr-plat-accent);
    font-size: 22px;
    box-shadow: 0 6px 16px var(--myr-plat-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-plat-card:hover .myr-plat-card__icon {
    transform: scale(1.08);
}

.market-your-research-page .myr-plat-card__name {
    margin: 0;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
}

.market-your-research-page .myr-platforms-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-platforms-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-platforms-closing strong {
    color: var(--dark);
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-auth-card,
    .market-your-research-page .myr-auth-card__icon,
    .market-your-research-page .myr-plat-card,
    .market-your-research-page .myr-plat-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-auth-card:hover,
    .market-your-research-page .myr-auth-card:hover .myr-auth-card__icon,
    .market-your-research-page .myr-plat-card:hover,
    .market-your-research-page .myr-plat-card:hover .myr-plat-card__icon {
        transform: none;
    }
}


@media (max-width: 1199px) {
  .top-banner .left-col h1 {
    font-size: 46px;
  }
  .support-content-box {
    padding: 42px 32px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .home-solutions-section,
  .home-manuscripts-section,
  .sec-four,
  .sec-six,
  .perks-section,
  .publication-support-section,
  .subject-area-section,
  .why-choose-section,
  .testimonial-section,
  .steps-section,
  .call-for-papers-section,
  .faq-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .top-banner {
    padding: 138px 0 72px 0 !important;
  }

  .top-banner .left-col {
    text-align: center;
    margin-bottom: 28px;
  }

  .top-banner .left-col h1 {
    font-size: 38px;
  }

  .top-banner .btn-sec {
    justify-content: center;
  }

  .sec-four .row.align-items-center {
    row-gap: 22px;
  }

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

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

  .faq-accordion-2col {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-solutions-section,
  .home-manuscripts-section,
  .sec-four,
  .sec-six,
  .perks-section,
  .publication-support-section,
  .subject-area-section,
  .why-choose-section,
  .testimonial-section,
  .steps-section,
  .call-for-papers-section,
  .faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .top-banner {
    padding: 128px 0 58px 0 !important;
  }

  .top-banner .left-col h1 {
    font-size: 31px;
    line-height: 1.3;
  }

  .top-banner .left-col p {
    font-size: 15px;
  }

  .top-banner .btn-sec {
    flex-wrap: wrap;
    gap: 10px;
  }

  .home-solution-card,
  .custom-service-card,
  .feature-card-custom,
  .step-card {
    border-radius: 16px;
  }

  .support-content-box {
    padding: 32px 20px;
  }

  .support-content-box .title {
    font-size: 30px;
  }

  .main-title,
  .section-main-heading,
  .steps-main-title,
  .faq-title,
  .success-title {
    font-size: 30px !important;
    line-height: 1.25;
  }

  .perks-grid,
  .subject-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OFFCANVAS MOBILE DROPDOWN ===== */
.offcanvas-body .dropdown-menu { position: static !important; transform: none !important; float: none !important; box-shadow: none !important; border: none !important; padding-left: 15px !important; background-color: transparent !important; opacity: 1 !important; visibility: visible !important; transition: none !important; display: none !important; }
.offcanvas-body .dropdown-menu.show { display: block !important; }
.offcanvas-body .dropdown-menu .dropdown-item { color: var(--gray) !important; }
.offcanvas-body .dropdown-menu .dropdown-item:hover { background-color: transparent !important; color: var(--primary) !important; }

.offcanvas-body .mega-menu {
  min-width: 100%;
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 !important;
}

.offcanvas-body .mega-menu-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 8px 0 0 0;
}

.offcanvas-body .mega-col {
  background: transparent;
  border: 0;
}

.offcanvas-body .mega-title a {
  color: var(--white) !important;
}

.offcanvas-body .mega-title a:hover,
.offcanvas-body .mega-title a.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-title-plain {
  color: var(--white) !important;
}

.offcanvas-body .mega-list-conference-bullets li {
  color: var(--gray) !important;
}

.offcanvas-body .mega-menu-conferences::before {
  display: none;
}

.offcanvas-body .mega-menu-conferences {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .mega-menu-market::before {
  display: none;
}

.offcanvas-body .mega-menu-market {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .mega-list-pr-bullets li,
.offcanvas-body .mega-list-ebook-bullets li {
  color: var(--gray) !important;
}

.offcanvas-body .mega-list-pr-bullets .mega-link,
.offcanvas-body .mega-list-market-stack .mega-link {
  color: var(--gray) !important;
  text-decoration: underline !important;
}

.offcanvas-body .mega-list-pr-bullets .mega-link:hover,
.offcanvas-body .mega-list-market-stack .mega-link:hover,
.offcanvas-body .mega-list-market-stack .mega-link.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-list-callfor-links .mega-link {
  color: var(--gray) !important;
  text-decoration: underline !important;
}

.offcanvas-body .mega-menu-grid:not(.mega-menu-grid--3) article.mega-col:last-child .mega-title {
  color: var(--white) !important;
  cursor: default;
}

.offcanvas-body .mega-list-plain .mega-link {
  color: var(--gray) !important;
}

.offcanvas-body .mega-list-plain .mega-link:hover,
.offcanvas-body .mega-list-plain .mega-link.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-list li {
  color: var(--gray);
}

.offcanvas-body .mega-list li::marker {
  color: var(--gray);
}

@media (max-width: 1199px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mega-menu-grid { grid-template-columns: 1fr; }
}

/* Conferences 3-col mega: keep 2/1 columns on smaller breakpoints (wins over rules above) */
@media (max-width: 1199px) {
  .mega-menu-grid.mega-menu-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mega-menu-grid.mega-menu-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .dropdown-toggle::after { opacity: 0; }
}



.client img {
    filter: grayscale(1);
}

.client img:hover {
    filter: grayscale(0);
}

.client p {
    text-align: center;
    padding: 25px 0px 0px 0px;
    font-weight: 500;
}

.header h3 {
    margin: 0;
    font-weight: 800;
}

 

.sticky h3 {
    color: #fff;
}

.heading-color {
    color: #ff6900;
}

/* ===== Home Inspiration Sections ===== */
.home-solutions-section {
    padding-top: 20px;
    padding-bottom: 45px;
    background: var(--white);
}

.home-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-solution-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 24px 20px 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
    height: 100%;
}

.home-solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 105, 0, 0.3);
}

.home-solution-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff5ed;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
}

.home-solution-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.home-solution-card p {
    margin-bottom: 0;
    color: #4A5565;
    font-weight: 500;
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .home-solutions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-solutions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.home-manuscripts-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--bg-light);
}

.home-manuscripts-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-manuscripts-viewport {
    overflow: hidden;
    width: 100%;
}

.home-manuscripts-track {
    display: flex;
    gap: 18px;
    transition: transform 450ms ease;
    will-change: transform;
}

.home-manuscript-card {
    flex: 0 0 calc((100% - 18px) / 2);
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: stretch;
    gap: 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-manuscript-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 105, 0, 0.26);
}

.home-manuscript-image {
    width: 46%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f5f8;
    border: 1px solid #eef0f2;
}

.home-manuscript-image img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
}

/* Journal logos / wide artwork â€” avoid cropping and unstable % height */
.home-manuscript-image--contain {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.home-manuscript-image--contain img {
    width: 100%;
    height: auto;
    min-height: 0;
  
    object-fit: contain;
    object-position: center;
    padding: 12px;
    box-sizing: border-box;
}

.home-manuscript-authors {
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-manuscript-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-manuscript-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.35;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-manuscript-card p {
    color: #4A5565;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.7;
}

.home-manuscript-body p + p {
    margin-top: 10px;
}

.home-manuscripts-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e7eaf0;
    background: #fff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.home-manuscripts-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.home-manuscripts-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .home-solutions-section {
        padding-top: 8px;
        padding-bottom: 35px;
    }
    .home-solution-card h3,
    .home-manuscript-card h3 {
        font-size: 18px;
    }
    .home-manuscripts-slider {
        gap: 8px;
    }
    .home-manuscripts-arrow {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .home-manuscript-card {
        flex: 0 0 100%;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }
    .home-manuscript-image {
        width: 100%;
    }
    .home-manuscript-image img {
        min-height: 160px;
    }
    .home-manuscript-image--contain img {
        min-height: 0;
        max-height: 200px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-manuscript-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .home-manuscript-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}







/* Card Main Container */
.custom-service-card {
    /* Lighter/pastel orange for a softer, homepage-friendly look */
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.20);
    border-radius: 15px;
    padding: 20px 25px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.custom-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Typography */
.custom-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 15px;
    line-height: 1.3;
}

.custom-service-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures buttons align even with different text lengths */
}

/* Button Styling */
.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #ff7c32 !important; /* Brand Orange */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.learn-more i {
    font-size: 12px;
    margin-left: 8px;
}

.learn-more:hover {
    color: #e66a28 !important;
    letter-spacing: 0.5px;
}

.services-col
 {
    padding: 15px 0px;
}







/* Section Styles */
.publication-support-section {
    padding: 0 !important;
    background-color: #f8f9fa; /* Optional background light gray */
}

/* Main Wrapper for Rounded Corners and Shadow */
.main-wrapper {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #001e33; /* Dark Navy Background */
}

/* Image Styling */
.support-img-box {
    height: 100%;
    min-height: 400px;
}

.support-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image covers the full area */
    display: block;
}

/* Content Styling */
.support-content-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-content-box .title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-content-box .description {
    color: #b0c4d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* List Styling */
.support-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.support-list li {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.support-list li i {
    color: #ff6a00; /* Orange Checkmark */
    font-size: 18px;
    margin-right: 12px;
}

/* Button Styling */
.btn-learn-more {
    padding: 12px 35px; /* Side padding thori barha di hai image jaisa dikhne ke liye */
    display: inline-flex; /* inline-block se behtar alignment deta hai */
    align-items: center;
    justify-content: center;
    width: fit-content; /* Yeh button ko full width hone se rokega */
    font-weight: 600;
    transition: all ease-in-out 0.3s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--primary, #ff6a00);
    background: var(--primary, #ff6a00);
    color: var(--white, #ffffff);
    border-radius: 50px;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: transparent;
    color: var(--primary, #ff6a00) !important;
    border-color: var(--primary, #ff6a00);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .support-content-box {
        padding: 40px 30px;
    }
    .support-img-box {
        min-height: 300px;
    }
}








/* Container Padding */
.subject-area-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Titles */
.main-title {
    font-size: 38px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 10px;
}

.sub-title {
    color: #666;
    font-size: 16px;
}

/* Grid Layout: 8 columns for Desktop */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 40px;
}

/* Card Styling */
.subject-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px; /* Smooth rounded corners */
    padding: 30px 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.subject-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #ffeadb;
}

/* Icon Circle Background */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 124, 50, 0.1);
    margin-bottom: 10px; 
}

.icon-circle img {
    width: 40px; 
    height: auto;
    
}

/* Text Styling */
.subject-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #001e33;
    margin: 0;
    line-height: 1.2;
}

/* Experts count hidden by default on devices with hover */
.subject-item .expert-count {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
}

.subject-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 124, 50, 0.35);
}

.subject-item:hover .expert-count {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 42px;
}

.subject-item:hover .expert-num {
    transform: scale(1.06);
}

.subject-item .expert-num {
    display: inline-block;
    transition: transform 0.28s ease;
}

/* --- Responsive Behavior --- */

/* Tablets (4 cards per row) */
@media (max-width: 1200px) {
    .subject-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Landscape (3 cards per row) */
@media (max-width: 991px) {
    .subject-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Portrait (2 cards per row) */
@media (max-width: 576px) {
    .subject-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .main-title { font-size: 28px; }
}

/* Touch/mobile fallback: show count without hover */
@media (hover: none), (pointer: coarse) {
    .subject-item .expert-count {
        opacity: 1;
        transform: none;
        max-height: none;
        overflow: visible;
    }
}











:root {
    --primary-navy: #001e33;
    --accent-orange: #ff7c32;
    --text-muted: #666666;
}

.heading-color {
    color: var(--accent-orange);
}

.section-main-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-sub-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Card Styling */
.feature-card-custom {
    background: #fff5ed;
    border: 1px solid #f0f0f0;
    border-radius: 20px; 
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); 
}

.feature-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

.feature-card-custom h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-card-custom p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-choose-split {
    align-items: stretch;
}

.why-awards-panel {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
}

.why-awards-slider {
    width: 100%;
}

.why-award-item {
    padding: 10px;
}

.why-award-item img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 16px;
}

.why-choose-cards-grid .feature-card-custom {
    min-height: 100%;
}

@media (max-width: 991px) {
    .why-awards-panel {
        margin-bottom: 4px;
        min-height: 220px;
    }
}

/* ===== Home: Publication expertise (premium LP block) ===== */
.publication-trust-lp.why-choose-section {
    --pub-trust-accent: #f58220;
    --pub-trust-navy: #0b1120;
    --pub-trust-card: #fff8f0;
    padding-top: clamp(88px, 9vw, 120px) !important;
    padding-bottom: clamp(88px, 9vw, 120px) !important;
    background: none;
    border-top: none;
    border-bottom: none;
}

.publication-trust-lp__intro {
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem) !important;
}

.publication-trust-lp__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 1.25rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--pub-trust-accent, #f58220);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.35);
}

.publication-trust-lp__badge i {
    color: #ffffff;
    font-size: 0.82rem;
    opacity: 0.95;
}

.publication-trust-lp__heading {
    font-size: clamp(1.85rem, 1.2rem + 2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--pub-trust-navy, #0b1120);
    margin-bottom: 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.publication-trust-lp__heading-line {
    display: block;
    font-weight: 700;
    color: var(--pub-trust-navy, #0b1120);
}

.publication-trust-lp__heading-accent {
    display: block;
    font-weight: 800;
    color: var(--pub-trust-accent, #f58220) !important;
}

.publication-trust-lp__lead {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.82;
    color: #5a6573;
}

.publication-trust-lp__split {
    --bs-gutter-x: 1.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 1200px) {
    .publication-trust-lp__split {
        --bs-gutter-x: 2.25rem;
    }

    .publication-trust-lp__split .publication-trust-lp__col-slider {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .publication-trust-lp__split .publication-trust-lp__col-cards {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.publication-trust-lp__slider-shell {
    position: relative;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.publication-trust-lp .publication-trust-lp__slider {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.publication-trust-lp .publication-trust-lp__slider .slick-list {
    border-radius: 0;
    overflow: hidden;
    flex: 1;
}

.publication-trust-lp .publication-trust-lp__slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* One certificate per view: full-width slide */
.publication-trust-lp .publication-trust-lp__slider .slick-slide {
    height: auto;
    width: 100% !important;
}

.publication-trust-lp .publication-trust-lp__slider .slick-slide > div {
    height: 100%;
    width: 100%;
}

.publication-trust-lp .why-award-item {
    padding: 0;
}

.publication-trust-lp__slide {
    padding: 0;
    height: 100%;
    outline: none;
}

.publication-trust-lp__slide-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 620px;
    height: 100%;
    box-shadow: none;
    isolation: isolate;
    background: transparent;
}

.publication-trust-lp__slide-frame::before,
.publication-trust-lp__slide-frame::after {
    display: none;
}

@media (min-width: 992px) {
    .publication-trust-lp__slide-frame {
        min-height: clamp(640px, 82vh, 920px);
    }
}

.publication-trust-lp__slide-cert {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit; 
    box-sizing: border-box;
}

.publication-trust-lp__slide-cert-card {
    max-width: 100%;
    box-shadow: none;
    box-sizing: border-box;
}

.publication-trust-lp__slide-cert-inner {
    border-radius: 0;
    border: none;
    background: transparent;
    box-sizing: border-box;
    box-shadow: none;
}

.publication-trust-lp .publication-trust-lp__slide-cert-inner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(90vh, 920px);
    object-fit: contain;
    object-position: center;
    vertical-align: top;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots {
    position: relative;
    bottom: auto;
    margin: 1.1rem 0 0;
    padding: 0;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li button {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li button::before {
    display: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li.slick-active button {
    background: var(--pub-trust-accent, #f58220);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
    position: absolute;
    /* Center on slide area (Slick includes dots in slider height) */
    top: calc(50% - 1.35rem);
    z-index: 4;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 10px 28px rgba(11, 17, 32, 0.26);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev:hover,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next:hover {
    background: #ffffff;
    color: var(--pub-trust-navy, #0b1120);
    box-shadow: 0 12px 32px rgba(11, 17, 32, 0.28);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
    left: clamp(8px, 5vw, 18px);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
    right: clamp(8px, 5vw, 18px);
}

@media (min-width: 992px) {
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
        left: clamp(10px, 7%, 28px);
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        right: clamp(10px, 7%, 28px);
    }
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev i,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next i {
    font-size: 15px;
    line-height: 1;
    color: inherit;
    font-weight: 700;
}

.publication-trust-lp__card {
    background: var(--pub-trust-card, #fdf8f4);
    border: 1px solid rgba(11, 17, 32, 0.06);
    border-radius: 14px;
    padding: 1.45rem 1.4rem;
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.publication-trust-lp__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11, 17, 32, 0.1);
    border-color: rgba(245, 130, 32, 0.35);
    background: #ffffff;
}

.publication-trust-lp__card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.publication-trust-lp__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pub-trust-accent, #f58220);
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(245, 130, 32, 0.38);
}

.publication-trust-lp__card-title {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.32;
    color: var(--pub-trust-navy, #0b1120);
    margin: 0;
    padding-top: 0.2rem;
}

.publication-trust-lp__card-desc {
    font-size: 0.875rem;
    line-height: 1.68;
    color: #5a6b7a;
    margin: 0 0 0.6rem;
}

.publication-trust-lp__card-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--pub-trust-navy, #0b1120);
}

.publication-trust-lp__card-list {
    margin: 0 0 0.85rem;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #3d4f63;
}

.publication-trust-lp__card-list--checks li {
    position: relative;
    margin-bottom: 0.4rem;
    padding-left: 1.35rem;
}

.publication-trust-lp__card-list--checks li:last-child {
    margin-bottom: 0;
}

.publication-trust-lp__card-list--checks li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.72rem;
    color: var(--pub-trust-accent, #f58220);
    font-weight: normal;
}

.publication-trust-lp__card-result {
    margin: auto 0 0;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(11, 17, 32, 0.08);
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 700;
    color: var(--pub-trust-accent, #f58220);
}

.publication-trust-lp__card-result strong {
    font-weight: 800;
}

.publication-trust-lp__stats {
    padding-top: 0.25rem;
}

.publication-trust-lp__stats-row {
    padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(1rem, 2vw, 1.5rem);
    background: var(--pub-trust-card, #fdf8f4);
    border: 1px solid rgba(11, 17, 32, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.05);
}

.publication-trust-lp__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.35rem 0.25rem;
}

.publication-trust-lp__stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.14);
    color: var(--pub-trust-accent, #f58220);
    font-size: 1.12rem;
    margin-bottom: 0.15rem;
}

.publication-trust-lp__stat-num {
    font-size: clamp(1.35rem, 1rem + 1.2vw, 1.65rem);
    font-weight: 800;
    color: var(--pub-trust-navy, #0b1120);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.publication-trust-lp__stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5a6d80;
    line-height: 1.35;
    max-width: 11rem;
}

@media (max-width: 991px) {
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
        left: 10px;
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        right: 10px;
    }

    .publication-trust-lp__slide-frame {
        min-height: 520px;
    }

    .publication-trust-lp .publication-trust-lp__slide-cert-inner img {
        max-height: min(85vh, 820px);
    }
}

@media (max-width: 767px) {
    .publication-trust-lp__cards > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev,
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-main-heading {
        font-size: 28px;
    }
    .feature-card-custom {
        padding: 30px 20px;
    }
}







/* Card Design */
.slider-item {
    padding: 10px; /* Spacing between cards */
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    min-height: 320px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stars-yellow { color: #ffc107; font-size: 14px; }
.stars-green { color: #00b67a; } /* Trustpilot Green */

.uni-name { color: #ff7c32; font-weight: 500; }

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #f8f8f8;
    padding-top: 20px;
}

/* Slick Dots Customization */
.slick-dots li button:before {
    font-size: 10px;
    color: #ff7c32;
}
.slick-dots li.slick-active button:before {
    color: #ff7c32;
}

.user-details h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-section .success-title {
    font-size: 37px;
    font-weight: 700;
    color: var(--dark);
}

.success-title {
    font-size: 42px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 18px;
    color: #4b5563;
}

/* Trustpilot Header Styling */
.excellent-text {
    font-size: 24px;
    font-weight: 700;
    color: #001e33;
}

.trustpilot-reviews {
    font-size: 15px;
    color: #4b5563;
}

.trustpilot-reviews strong {
    color: #001e33;
}

.tp-brand {
    color: #00b67a; /* Trustpilot Green Color */
    font-weight: 700;
    margin-left: 5px;
}

/* ----- Hero: Trustpilot + Bark review platform cards ----- */
.review-platforms-hero {
    width: 100%;
    max-width: 720px;
}

.review-platforms-hero-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.review-platform-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 8px 26px rgba(0, 30, 51, 0.07);
    border: 1px solid #e8ecf1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 30, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.2);
}

.review-platform-card--trustpilot:hover {
    border-color: rgba(0, 182, 122, 0.35);
}

.review-platform-card--trustpilot {
    border-top: 3px solid #00b67a;
}

.review-platform-card--bark {
    border-top: 3px solid var(--primary);
}

.review-platform-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-platform-logo-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    margin-left: 0;
}

.review-platform-card .tp-brand.review-platform-logo-line {
    margin-left: 0;
}

.review-platform-card .tp-brand.review-platform-logo-line i {
    font-size: 14px;
}

.bark-brand {
    color: #0f172a;
    font-weight: 800;
}

.bark-brand i {
    color: var(--primary);
    font-size: 14px;
}

.review-platform-rating-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.review-platform-card .excellent-text {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #001e33;
    letter-spacing: -0.03em;
}

.review-platform-rating-suffix {
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
}

.bark-rating-excellent {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #001e33;
    letter-spacing: -0.03em;
}

.review-platform-card .trustpilot-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1;
}

.bark-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1;
}

.bark-star-icon {
    color: #f59e0b;
}

.review-platform-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.55;
    margin: 10px 0 0;
    max-width: 280px;
}

.review-platform-card .trustpilot-reviews {
    font-size: 14px;
    margin-top: 12px !important;
}

.bark-reviews-line {
    font-size: 14px;
    color: #4b5563;
    margin-top: 12px !important;
}

.bark-reviews-line strong {
    color: #001e33;
}

@media (max-width: 767px) {
    .review-platform-card .excellent-text,
    .bark-rating-excellent {
        font-size: 32px;
    }
    .review-platform-card {
        padding: 20px 16px;
    }
}

/* Responsive adjust */
@media (max-width: 768px) {
    .success-title { font-size: 32px; }
    .excellent-text { font-size: 20px; }
}








.steps-section {
    background-color: #ffffff;
    position: relative;
}

.steps-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #001e33;
    line-height: 1.2;
}

.steps-sub-text {
    color: #666;
    font-size: 16px;
    margin-top: 15px;
}

/* Steps Row Connector Line */
.steps-row-container {
    position: relative;
    z-index: 1;
}

/* Connecting flow arrows on desktop */
.steps-row-container > [class*="col-"] {
    position: relative;
}

@media (min-width: 992px) {
    .steps-row-container > [class*="col-"]::after {
        content: "\f105";
        font-family: FontAwesome;
        position: absolute;
        right: -4px;
        top: 44%;
        transform: translateY(-50%);
        color: rgba(255, 124, 50, 0.55);
        font-size: 22px;
        z-index: 2;
        pointer-events: none;
    }

    .steps-row-container > [class*="col-"]:nth-child(4n)::after,
    .steps-row-container > [class*="col-"]:last-child::after {
        display: none;
    }
}

/* Card Styling */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 20px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10);
}

/* Orange Number Circle */
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff7c32;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 124, 50, 0.3);
}

/* Icon Styling */
.step-icon {
    width: 80px;
    height: 80px;
    background: #fff4ec;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe2cf;
}

.step-icon img {
    width: 40px;
    height: auto;
}

.step-icon i {
    font-size: 30px;
    color: #ff7c32;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #001e33;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .steps-main-title { font-size: 30px; }
    .step-card { margin-top: 20px; }
    .steps-row-container > [class*="col-"]::after { display: none; }
}







.cta-card {
    /* Aapka bataya hua gradient color */
    background: linear-gradient(180deg, #001A33 0%, #003366 100%); 
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for depth */
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Orange Button */
.btn-submit-orange {
    background-color: #ff6900;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-submit-orange:hover {
    background-color: #e66a25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 124, 50, 0.3);
    color: #ffffff;
}

/* White Outline Button */
.btn-view-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-outline:hover {
    background-color: #ffffff;
    color: #001A33;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}











/* FAQ Section Styling */
.faq-section {
    background-color: #fcfcfc;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #667085;
    font-size: 16px;
}

/* Accordion Custom Styling */
.custom-accordion .accordion-item {
    border: 1px solid #f2f4f7;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Two-column FAQ layout (desktop/tablet) */
.faq-accordion-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-accordion-2col .accordion-item {
    margin-bottom: 0 !important;
}

.custom-accordion .accordion-button {
    padding: 24px;
    font-weight: 700;
    color: #001e33;
    background-color: #ffffff;
    box-shadow: none;
    font-size: 16px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #001e33;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f4f7;
}

.custom-accordion .accordion-body {
    padding: 24px;
    color: #475467;
    line-height: 1.6;
    font-size: 15px;
}

/* Custom +/- Icons (Orange) */
.custom-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    width: 32px;
    height: 32px;
    background-color: #fff1e9; /* Light orange bg */
    color: #ff7c32; /* Brand orange */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: 'âˆ’'; /* Minus sign */
    background-color: #ff7c32;
    color: #ffffff;
    transform: rotate(0deg);
}

/* Contact Button */
.btn-contact-support {
    background-color: #ff7c32;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact-support:hover {
    background-color: #e66a25;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 124, 50, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-accordion-2col {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 30px;
    }
    .custom-accordion .accordion-button {
        padding: 18px;
        font-size: 15px;
    }
}

.footer h3 {
    color: #ffff;
    font-weight: 700;
}
.footer .footer-logo {width: 150px;}
.fourteen-box {
    text-align: center;
    background-color: #d9d9d9;
    border-radius: 25px;
    padding: 25px 10px;
}
/* intl-tel-input width for legacy #phone2 / modal (sprites: head.php :root + intlTelInput.css) */
.iti {
    width: 100%;
}
     @media (max-width: 767px) {
          .top-banner {
    padding-top: 150px !important
  }
     }

/* ===== HOMEPAGE: PERKS + TRUST + EXPERTS ===== */
.perks-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.perk-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background-color: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.perk-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.perk-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

@media (max-width: 1024px) {
    .perks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .perks-grid { grid-template-columns: 1fr; }
}

.trust-certificates {
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-certificate {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 16px 10px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-cert-logo {
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 18px;
    color: var(--dark);
}

.trust-cert-logo--ieee {
    color: #0b3d91;
}

.trust-cert-logo--wos {
    color: #0047a7;
}

.trust-cert-image {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.trust-cert-meta {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.expert-count {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

.expert-num {
    color: var(--primary);
    font-weight: 900;
    font-size: 16px;
    margin-right: 4px;
}

/* ===== Conferences ===== */
.conference-intro-card,
.conference-benefits-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
}

.conference-intro-card h4,
.conference-benefits-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.conference-bullets {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conference-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 0;
}

.conference-bullets li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.benefit-item {
    flex: 1;
    min-width: 220px;
    background: var(--bg-light);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.benefit-item h5 {
    margin: 12px 0 6px;
    font-weight: 900;
    font-size: 15px;
    color: var(--dark);
}

.benefit-item p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.conferences-subtitle {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.conference-list-subtitle {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.conference-service-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.conference-service-card .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.conference-service-card h4 {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 16px;
    color: var(--dark);
}

.conference-service-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.conference-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.conference-listing-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.listing-title {
    margin: 0 0 10px;
    font-weight: 900;
    color: var(--dark);
}

.listing-top h4.listing-title,
.listing-title {
    font-size: 16px;
}

.listing-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.listing-pill {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    background: #f8fafc;
    border: 1px solid #eef0f2;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.listing-pill--mode {
    background: #fff5ed;
    border-color: rgba(255, 105, 0, 0.25);
}

.listing-meta {
    padding-top: 4px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #eef0f2;
    padding-top: 12px;
}

.meta-label {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.meta-value {
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
}

.listing-cta {
    margin-top: 14px;
}

.conference-cta-note {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .conference-listing-grid { grid-template-columns: 1fr; }
    .conferences-subtitle { font-size: 22px; }
}

/* ===== Call for Papers ===== */
.callfor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.callfor-provider {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.provider-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
}

.provider-blurb {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 16px;
}

.provider-calls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-call-card {
    background: var(--bg-light);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 14px 14px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
}

.call-left {
    flex: 1;
    min-width: 0;
}

.call-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.call-deadline {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.deadline-label {
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.deadline-value {
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.call-right {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.call-cta-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .callfor-grid { grid-template-columns: 1fr; }
    .provider-call-card { flex-direction: column; align-items: stretch; }
    .call-right { width: 100%; }
}

/* ===== Journals ===== */
.journals-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.platform-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    height: 100%;
}

.platform-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.platform-desc {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 18px;
}

.q1-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.q1-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.q1-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 0;
}

.q1-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.platform-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-cta-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .journals-platform-grid { grid-template-columns: 1fr; }
}

/* ===== Portfolio Carousel ===== */
.portfolio-carousel-wrap {
    margin-top: 18px;
}

.portfolio-carousel .portfolio-slide {
    padding: 10px 8px;
}

.portfolio-card {
    height: 100%;
    min-height: 320px;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.04) 0%, rgba(0, 26, 51, 0.02) 100%);
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.portfolio-cover {
    position: relative;
    background: #001A33;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-cover img {
    width: 150px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    background: transparent;
}

.portfolio-year-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 105, 0, 0.95);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
}

.portfolio-details {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-author {
    font-weight: 900;
    color: var(--dark);
    font-size: 15px;
}

.portfolio-university {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.portfolio-cta {
    margin-top: 8px;
}

.portfolio-note {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.portfolio-carousel .slick-dots li button:before {
    color: #ff7c32;
    font-size: 10px;
}

.portfolio-carousel .slick-dots li.slick-active button:before {
    color: #ff7c32;
}

/* Portfolio filter UI + grid */
.portfolio-filter-ui {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,26,51,0.08);
    border-radius: 18px;
    padding: 14px 14px 12px;
}

.portfolio-filter-pill {
    cursor: default;
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 999px;
    padding: 8px 12px;
}

.portfolio-filter-pill.is-active {
    color: #fff;
    background: var(--primary);
    border-color: rgba(255,105,0,0.35);
}

.portfolio-filter-note {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-top: 10px;
}

.portfolio-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-grid-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.portfolio-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.portfolio-grid-cover {
    position: relative;
    background: #001A33;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.portfolio-grid-cover img {
    width: 120px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.portfolio-grid-year {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,105,0,0.95);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
}

.portfolio-grid-body {
    padding: 14px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.portfolio-grid-author {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
}

.portfolio-grid-university {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
}

.portfolio-grid-actions {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .portfolio-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .portfolio-card-grid { grid-template-columns: 1fr; }
}

/* ===== Blog System + Marketing ===== */
.blog-page-section {
    padding: 70px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 22px;
    align-items: start;
}

.blog-sidebar {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-sidebar h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fafafa;
    transition: all 0.2s ease;
}

.category-list a:hover {
    border-color: #ffe9dd;
    background: #fff5ed;
    color: var(--dark);
}

.category-list a.is-active {
    border-color: rgba(255, 105, 0, 0.35);
    background: #fff5ed;
    color: var(--dark);
}

.blog-main h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.blog-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.blog-card h3 {
    margin: 10px 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
}

.blog-card p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.blog-card .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-card .blog-pill {
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.25);
    color: var(--primary);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.blog-card .readmore {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.blog-detail-article {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.blog-detail-article h2 {
    font-size: 18px;
    font-weight: 900;
    margin-top: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.blog-detail-article ul {
    padding-left: 18px;
    margin-bottom: 0;
    color: var(--text);
}

.blog-detail-article p {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-post-grid { grid-template-columns: 1fr; }
    .blog-main h1 { font-size: 34px; }
}

/* ===== Floating Lead Popup (Book Free Consultation) ===== */
body.lead-popup-open {
    overflow: hidden;
}

.lead-popup {
    --lead-radius: 14px;
    --lead-input-h: 52px;
    --lead-fs: 15px;
    --lead-gap: 16px;
    --lead-border: #e2e5ec;
    --lead-focus: var(--primary, #f97316);
    --lead-focus-ring: rgba(249, 115, 22, 0.2);

    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lead-popup.is-visible {
    display: flex;
}

.lead-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
}

.lead-popup-panel {
    position: relative;
    width: 100%;
    max-width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    border-radius: 22px;
    border: 1px solid #e8eaef;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.lead-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e8eaef;
    background: var(--white);
    color: var(--dark);
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lead-popup-close:hover {
    background: #f8f9fb;
    border-color: #dde1e8;
}

.lead-popup-content {
    padding: 28px 32px 26px;
}

.lead-popup-header {
    padding-right: 48px;
    margin-bottom: 20px;
}

.lead-popup-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff5ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 14px;
}

.lead-popup-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.lead-popup-subtitle {
    margin: 0 0 4px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.45;
}

.lead-popup-form label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #4b5563;
    display: block;
    margin-bottom: 8px;
    line-height: 1.2;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--lead-gap);
    row-gap: 18px;
}

.lead-field {
    min-width: 0;
}

.lead-field input,
.lead-field select {
    width: 100%;
    height: var(--lead-input-h);
    border: 1px solid var(--lead-border);
    border-radius: var(--lead-radius);
    padding: 0 14px;
    font-size: var(--lead-fs);
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    line-height: 1.25;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.lead-field input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.lead-field input:hover,
.lead-field select:hover {
    border-color: #cdd2dc;
}

.lead-field input:focus,
.lead-field select:focus {
    outline: none;
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

/* intl-tel-input: scoped variables + alignment (sprites via head.php :root) */
.lead-popup .lead-field--phone .iti {
    width: 100%;
    display: block;
    position: relative;
    --iti-spacer-horizontal: 10px;
    --iti-arrow-padding: 8px;
    --iti-dialcode-color: #4b5563;
}

/* Min width so flag + dial code + arrow are not crushed in the 2-column grid */
.lead-popup .iti__country-container {
    min-width: 7.5rem;
    border-radius: var(--lead-radius) 0 0 var(--lead-radius);
    border: 1px solid var(--lead-border);
    border-right: none;
    background: #fff;
    font-weight: 600;
    font-size: var(--lead-fs);
    box-sizing: border-box;
}

.lead-popup .iti__selected-country {
    border-radius: var(--lead-radius) 0 0 var(--lead-radius);
    line-height: normal;
    color: #111827;
}

.lead-popup .iti__selected-country-primary {
    font-weight: 600;
    gap: 6px;
    padding: 0 8px 0 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.lead-popup .iti__flag-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-popup .iti__flag {
    flex-shrink: 0;
}

.lead-popup .iti .iti__selected-dial-code {
    margin-left: 4px;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
    flex-shrink: 0;
}

.lead-popup .iti__arrow {
    flex-shrink: 0;
    align-self: center;
}

.lead-popup .iti__tel-input {
    width: 100% !important;
    height: var(--lead-input-h) !important;
    border: 1px solid var(--lead-border);
    border-radius: 0 var(--lead-radius) var(--lead-radius) 0;
    /* Do not set padding-left: intl-tel-input sets it for country/dial code */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 14px !important;
    font-size: var(--lead-fs) !important;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup .iti__flag {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lead-popup .iti__tel-input:hover,
.lead-popup .iti__country-container:hover {
    border-color: #cdd2dc;
}

.lead-popup .iti__tel-input:focus {
    outline: none;
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

.lead-popup .iti__country-container:focus-within {
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

.lead-popup .lead-field--phone.iti-invalid .iti__tel-input,
.lead-popup .lead-field--phone.iti-invalid .iti__country-container {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.lead-popup .lead-phone-error {
    display: block;
    min-height: 20px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #b02a37;
}

.lead-popup .lead-phone-error:empty {
    display: none;
}

/*
 * intl-tel-input portals the country UI to body as .iti--container (default z-index 1060).
 * Lead popup uses z-index 2000, so the list was hidden behind the modal overlay.
 */
body .iti--container {
    z-index: 10070 !important;
}

body .iti--fullscreen-popup.iti--container {
    z-index: 10070 !important;
}

body .iti--container .iti__dropdown-content {
    border-radius: 12px;
    border: 1px solid var(--lead-border, #e2e5ec);
    box-shadow: 0 16px 48px rgba(17, 24, 39, 0.18);
    overflow: hidden;
    background: #fff;
}

body .iti--fullscreen-popup .iti__dropdown-content {
    border-radius: 16px;
}

/* Inline dropdown (desktop): allow a taller list than the default 185px */
body .iti--inline-dropdown .iti__country-list {
    max-height: min(280px, 50vh) !important;
}

body .iti__search-input {
    border-bottom: 1px solid var(--lead-border, #e2e5ec);
    font-size: 15px;
}

.lead-popup-actions {
    margin-top: 22px;
}

.lead-popup-submit {
    min-height: 54px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em;
    border-radius: var(--lead-radius) !important;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup-submit:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.lead-popup-submit:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.lead-popup-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--lead-focus-ring), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lead-consent-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    margin-top: 14px;
    line-height: 1.45;
    text-align: center;
}

.lead-popup-success {
    margin-top: 16px;
    background: #f2fdf4;
    border: 1px solid #c7f1cf;
    padding: 14px 16px;
    border-radius: var(--lead-radius);
    color: #115c24;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 575.98px) {
    .lead-popup {
        padding: 12px 14px;
        align-items: center;
    }

    .lead-popup-panel {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 20px;
    }

    .lead-popup-content {
        padding: 22px 18px 20px;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
        row-gap: var(--lead-gap);
    }

    .lead-popup-content h3 {
        font-size: 19px;
    }
}

/* ===== Email Marketing ===== */
.email-marketing-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.email-marketing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.marketing-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marketing-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.marketing-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.marketing-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.marketing-desc {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .email-marketing-grid { grid-template-columns: 1fr; }
}

/* ===== Extra Features ===== */
.extra-features-section {
    padding: 70px 0 90px;
}

.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.extra-feature-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.extra-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 8px;
}

.extra-subtitle {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.university-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.university-logos img {
    width: 110px;
    height: auto;
    filter: grayscale(1);
    opacity: 0.9;
    transition: all 0.2s ease;
}

.university-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.research-body-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.research-badge {
    border: 2px solid #ffe0cc;
    background: #fff5ed;
    color: var(--primary);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
}

.escrow-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f8fbff;
    border: 1px solid #e9f2ff;
    border-radius: 18px;
    padding: 16px 14px;
}

.escrow-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: rgba(255, 105, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.escrow-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
}

.escrow-desc {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

.extra-note {
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}

.scholar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.scholar-card {
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 14px 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.scholar-avatar {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,105,0,0.22), rgba(0,26,51,0.08));
    color: var(--dark);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.scholar-name {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2px;
}

.scholar-aff {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .extra-features-grid { grid-template-columns: 1fr; }
}

/* ===== Services Landing Enhancements ===== */
.services-page-section {
    padding-top: 48px;
}

.services-categories-grid {
    margin-top: 6px;
}

.services-category-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    border-color: rgba(255, 105, 0, 0.25);
}

.services-category-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.services-category-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.services-category-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 18px;
    margin: 0;
}

.services-category-intro {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.services-category-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-category-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.services-category-list li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.services-category-cta .services-get-started {
    padding: 14px 26px;
    font-weight: 900;
}

.services-check-card h4 i {
    color: var(--primary);
}

.services-why-grid .services-why-card h4 i {
    color: var(--primary);
}

.services-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 10px 0 0;
}

.area-pill {
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    color: var(--dark);
    font-size: 13px;
}

.services-advanced-card {
    padding: 24px 18px;
    position: relative;
    overflow: hidden;
}

.services-advanced-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

/* ===== Career & Skills: Academic career services section ===== */
.academic-career-services {
    position: relative;
    overflow: hidden;
}

.academic-career-services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 45% at 50% -15%, rgba(255, 105, 0, 0.07), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 35%);
}

.academic-career-services > .container {
    position: relative;
    z-index: 1;
}

.acss-section-head {
    max-width: 920px;
    margin: 0 auto 3rem;
}

.acss-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.acss-kicker i {
    font-size: 15px;
    opacity: 0.95;
}

.acss-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.acss-lead {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    max-width: 54rem;
    margin: 0 auto;
}

.acss-card-grid {
    margin-bottom: 2.5rem;
}

.acss-grid-divider {
    height: 0;
    margin: 0.25rem 0 0.5rem;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 26, 51, 0.09);
}

.acss-card {
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 8px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border-top: 3px solid rgba(255, 105, 0, 0.35);
}

.acss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
    border-color: rgba(255, 105, 0, 0.25);
}

.acss-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.acss-card-top {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.acss-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
}

.acss-card-headings {
    min-width: 0;
}

.acss-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy, #001e33);
    line-height: 1.3;
    margin: 0 0 0.65rem;
}

.acss-card-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.acss-bullet-block {
    margin: 0;
    padding: 1.125rem 1.125rem 1rem;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.acss-bullet-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0, 26, 51, 0.1);
}

.acss-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.acss-bullet-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-dark, #0B192C);
}

.acss-bullet-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.15);
    color: var(--primary);
}

.acss-cta-panel {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
}

.acss-cta-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 36rem;
}

.acss-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.acss-cta-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .acss-section-head {
        margin-bottom: 2.25rem;
    }

    .acss-card {
        padding: 1.5rem 1.35rem 1.35rem;
    }

    .acss-card-top {
        flex-direction: row;
    }
}

@media (max-width: 575px) {
    .acss-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .acss-cta-actions .acss-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acss-card {
        transition: none;
    }

    .acss-card:hover {
        transform: none;
    }
}

/* ===== Career & Skills: How our services work (process timeline) ===== */
.career-process-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.career-process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 72% 52% at 12% 18%, rgba(255, 105, 0, 0.09), transparent 58%),
        radial-gradient(ellipse 65% 48% at 88% 72%, rgba(0, 26, 51, 0.07), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, var(--bg-light) 38%, #fafbfc 100%);
}

.career-process-section > .container {
    z-index: 1;
}

.cps-head {
    max-width: 880px;
    margin: 0 auto 3rem;
}

.cps-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cps-kicker i {
    font-size: 15px;
}

.cps-title {
    font-size: clamp(1.7rem, 3.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.cps-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 auto;
    max-width: 46rem;
}

.cps-timeline {
    list-style: none;
    margin: 0 auto 3rem;
    padding: 0.5rem 0 0;
    max-width: 1100px;
    position: relative;
}

.cps-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(
        180deg,
        rgba(255, 105, 0, 0.15) 0%,
        rgba(255, 105, 0, 0.45) 22%,
        rgba(0, 26, 51, 0.12) 78%,
        rgba(0, 26, 51, 0.06) 100%
    );
    z-index: 0;
}

.cps-timeline-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(52px, auto) 1fr;
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: stretch;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    animation: cps-step-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.cps-timeline-step:nth-child(1) { animation-delay: 0.04s; }
.cps-timeline-step:nth-child(2) { animation-delay: 0.1s; }
.cps-timeline-step:nth-child(3) { animation-delay: 0.16s; }
.cps-timeline-step:nth-child(4) { animation-delay: 0.22s; }
.cps-timeline-step:nth-child(5) { animation-delay: 0.28s; }
.cps-timeline-step:nth-child(6) { animation-delay: 0.34s; }

.cps-timeline-step:nth-child(odd) .cps-step-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.cps-timeline-step:nth-child(odd) .cps-node {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cps-timeline-step:nth-child(odd) .cps-step-spacer {
    grid-column: 3;
    grid-row: 1;
}

.cps-timeline-step:nth-child(even) .cps-step-spacer {
    grid-column: 1;
    grid-row: 1;
}

.cps-timeline-step:nth-child(even) .cps-node {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cps-timeline-step:nth-child(even) .cps-step-card {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.cps-node {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary);
    box-shadow:
        0 0 0 6px rgba(255, 105, 0, 0.12),
        0 10px 24px rgba(0, 26, 51, 0.1);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cps-timeline-step:hover .cps-node {
    transform: scale(1.06);
    box-shadow:
        0 0 0 8px rgba(255, 105, 0, 0.14),
        0 14px 28px rgba(0, 26, 51, 0.12);
}

.cps-node-num {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.cps-step-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.35rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.07);
    border-top: 3px solid rgba(255, 105, 0, 0.45);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.cps-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.cps-step-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.cps-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
}

.cps-step-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.65rem;
}

.cps-step-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.cps-step-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.cps-highlights {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.cps-highlights-kicker {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 1.25rem;
}

.cps-highlight-card {
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 8px 26px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-inline-start: 4px solid var(--primary);
}

.cps-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.09);
}

.cps-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1rem;
}

.cps-highlight-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.cps-highlight-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.cps-highlights-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.cps-highlights-note {
    width: 100%;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cps-highlights-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes cps-step-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .cps-timeline::before {
        left: 26px;
        transform: none;
    }

    .cps-timeline-step {
        grid-template-columns: 52px 1fr;
        gap: 1rem 1.15rem;
    }

    .cps-timeline-step:nth-child(n) .cps-step-spacer {
        display: none;
    }

    .cps-timeline-step:nth-child(n) .cps-node {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        margin-top: 0.35rem;
    }

    .cps-timeline-step:nth-child(n) .cps-step-card {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
    }

    .cps-head {
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 575px) {
    .cps-highlights-cta {
        flex-direction: column;
    }

    .cps-highlights-cta .cps-highlights-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cps-timeline-step {
        animation: none;
    }

    .cps-step-card:hover,
    .cps-highlight-card:hover,
    .cps-timeline-step:hover .cps-node {
        transform: none;
    }

    .cps-step-card,
    .cps-highlight-card,
    .cps-node {
        transition: none;
    }
}

/* ===== Submission Support: how it works (timeline + progress) ===== */
.ssp-submission-workflow {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 50px rgba(0, 26, 51, 0.07);
}

.ssp-submission-workflow .ssp-workflow-bg {
    background:
        radial-gradient(ellipse 70% 55% at 8% 12%, rgba(255, 105, 0, 0.11), transparent 55%),
        radial-gradient(ellipse 60% 50% at 92% 88%, rgba(0, 26, 51, 0.09), transparent 52%),
        radial-gradient(ellipse 45% 40% at 50% 50%, rgba(255, 105, 0, 0.04), transparent 60%),
        linear-gradient(168deg, #ffffff 0%, var(--bg-light) 45%, #f3f6fa 100%);
}

.ssp-submission-workflow .ssp-workflow-inner {
    z-index: 1;
}

.ssp-submission-workflow .cps-head {
    margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.ssp-submission-workflow .ssp-workflow-title {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--dark);
}

.ssp-submission-workflow .ssp-workflow-lead {
    font-size: 1.08rem;
    max-width: 40rem;
    color: var(--text);
}

.ssp-submission-workflow .ssp-step-name {
    color: var(--primary);
    font-weight: 800;
}

.ssp-submission-workflow .cps-step-title {
    color: var(--dark);
}

.ssp-submission-workflow .cps-timeline-step:nth-child(5) {
    animation-delay: 0.34s;
    margin-bottom: 0;
}

.ssp-submission-workflow .cps-timeline {
    margin-bottom: 0;
}

.ssp-submission-workflow .cps-step-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ssp-submission-workflow .cps-step-card:hover .cps-step-icon {
    transform: scale(1.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-submission-workflow .cps-step-icon {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-workflow-motifs {
    list-style: none;
    margin: 1.75rem auto 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
    max-width: 920px;
}

.ssp-workflow-motifs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem 0.45rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 26, 51, 0.05);
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.ssp-workflow-motifs li:hover {
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
    transform: translateY(-2px);
}

.ssp-workflow-motif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 13px;
}

.ssp-workflow-motif-label {
    line-height: 1.2;
}

.ssp-workflow-progress {
    max-width: min(720px, 100%);
    margin: 0 auto 2.25rem;
    padding: 0 0.35rem;
}

.ssp-workflow-progress-track {
    position: relative;
    height: 5px;
    border-radius: 6px;
    background: rgba(0, 26, 51, 0.08);
    overflow: hidden;
}

.ssp-workflow-progress-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.25) 0%,
        rgba(255, 105, 0, 0.85) 50%,
        rgba(0, 26, 51, 0.35) 100%
    );
    transform: scaleX(0);
    transform-origin: left center;
    animation: ssp-workflow-progress-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.ssp-workflow-progress-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -16px;
}

.ssp-workflow-progress-steps li {
    position: relative;
    z-index: 1;
}

.ssp-workflow-progress-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.08), 0 6px 16px rgba(0, 26, 51, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ssp-workflow-progress-steps li:hover span {
    transform: scale(1.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 105, 0, 0.12), 0 10px 22px rgba(0, 26, 51, 0.1);
}

@keyframes ssp-workflow-progress-in {
    from {
        transform: scaleX(0);
        opacity: 0.6;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .ssp-workflow-motifs {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .ssp-workflow-motifs li {
        font-size: 11px;
        padding: 0.35rem 0.7rem 0.4rem;
    }

    .ssp-workflow-progress-steps li span {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssp-workflow-progress-fill {
        animation: none;
        transform: scaleX(1);
        opacity: 1;
    }

    .ssp-workflow-motifs li:hover {
        transform: none;
    }

    .ssp-workflow-progress-steps li:hover span {
        transform: none;
    }

    .ssp-submission-workflow .cps-step-card:hover .cps-step-icon {
        transform: none;
    }
}

/* ===== Submission Support: pre-submission quality review (timeline cards) ===== */
.ssp-quality-review {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 50px rgba(0, 26, 51, 0.06);
}

.ssp-quality-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 68% 50% at 6% 20%, rgba(255, 105, 0, 0.1), transparent 55%),
        radial-gradient(ellipse 55% 45% at 94% 85%, rgba(0, 26, 51, 0.08), transparent 52%),
        linear-gradient(172deg, #fbfcfe 0%, #f4f6f9 40%, var(--bg-light) 100%);
}

.ssp-quality-inner {
    z-index: 1;
}

.ssp-quality-head {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.ssp-quality-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-quality-kicker i {
    font-size: 14px;
}

.ssp-quality-title {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-quality-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.ssp-quality-intro .ssp-review-kw,
.ssp-review-card-title .ssp-review-kw {
    color: var(--primary);
    font-weight: 800;
}

.ssp-review-stages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 0.5rem;
    position: relative;
}

.ssp-review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    animation: ssp-quality-card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-review-item:nth-child(1) {
    animation-delay: 0.04s;
}
.ssp-review-item:nth-child(2) {
    animation-delay: 0.1s;
}
.ssp-review-item:nth-child(3) {
    animation-delay: 0.16s;
}
.ssp-review-item:nth-child(4) {
    animation-delay: 0.22s;
}

.ssp-review-node-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.15rem;
    z-index: 1;
}

.ssp-review-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 3px solid rgba(255, 105, 0, 0.45);
    box-shadow:
        0 0 0 5px rgba(255, 105, 0, 0.08),
        0 10px 24px rgba(0, 26, 51, 0.09);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.ssp-review-item:hover .ssp-review-node {
    transform: scale(1.06);
    border-color: var(--primary);
    box-shadow:
        0 0 0 7px rgba(255, 105, 0, 0.12),
        0 14px 30px rgba(0, 26, 51, 0.11);
}

.ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
    content: "";
    position: absolute;
    left: calc(50% + 28px);
    right: -0.25rem;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.45) 0%,
        rgba(255, 105, 0, 0.2) 45%,
        rgba(0, 26, 51, 0.12) 100%
    );
    border-radius: 3px;
    z-index: 0;
    pointer-events: none;
}

.ssp-review-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: 1.35rem 1.2rem 1.25rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-top: 3px solid rgba(255, 105, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.07);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ssp-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.22);
}

.ssp-review-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.9rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-review-card:hover .ssp-review-icon {
    transform: scale(1.06);
}

.ssp-review-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 0.6rem;
}

.ssp-review-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

@keyframes ssp-quality-card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 576px) {
    .ssp-review-stages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1.25rem;
        max-width: 820px;
        margin: 0 auto;
    }

    .ssp-review-item {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .ssp-review-card {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .ssp-review-stages {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 520px;
        margin: 0 auto;
    }

    .ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
        display: none;
    }

    .ssp-review-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0.65rem 1.1rem;
        align-items: start;
        text-align: left;
        padding-bottom: 1.35rem;
        margin-bottom: 1.35rem;
        border-bottom: 1px solid rgba(0, 26, 51, 0.08);
    }

    .ssp-review-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .ssp-review-node-wrap {
        grid-row: 1 / span 2;
        width: auto;
        margin-bottom: 0;
        align-self: center;
    }

    .ssp-review-node {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .ssp-review-card {
        grid-column: 2;
        max-width: none;
        margin: 0;
    }

    .ssp-review-icon {
        margin: 0 0 0.75rem;
    }
}

@media (max-width: 991px) {
    .ssp-quality-head {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .ssp-quality-title {
        font-size: 1.35rem;
    }

    .ssp-quality-intro {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssp-review-item {
        animation: none;
    }

    .ssp-review-card:hover,
    .ssp-review-item:hover .ssp-review-node,
    .ssp-review-card:hover .ssp-review-icon {
        transform: none;
    }

    .ssp-review-card,
    .ssp-review-node,
    .ssp-review-icon {
        transition: none;
    }

    .ssp-why-card {
        animation: none;
    }

    .ssp-why-card:hover,
    .ssp-why-cta__panel:hover {
        transform: none;
    }

    .ssp-why-card,
    .ssp-why-card__icon,
    .ssp-why-cta__panel {
        transition: none;
    }

    .ssp-advanced-card {
        animation: none;
    }

    .ssp-advanced-card:hover {
        transform: none;
    }

    .ssp-advanced-card,
    .ssp-advanced-card__icon {
        transition: none;
    }

    .ssp-advanced-cta__inner:hover {
        transform: none;
    }
}

/* ===== Submission Support: why choose (benefit grid + CTA) ===== */
.ssp-why-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88) inset,
        0 24px 56px rgba(0, 26, 51, 0.07);
}

.ssp-why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 55% at 10% 15%, rgba(255, 105, 0, 0.11), transparent 58%),
        radial-gradient(ellipse 60% 48% at 90% 80%, rgba(0, 26, 51, 0.09), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, #f5f7fa 50%, #eef1f6 100%);
}

.ssp-why-bg::after {
    content: "";
    position: absolute;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    border-radius: 40% 60% 55% 45%;
    right: -18%;
    top: 40%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 105, 0, 0.06), transparent 68%);
    opacity: 0.9;
}

.ssp-why-inner {
    z-index: 1;
}

.ssp-why-head {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.ssp-why-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-why-kicker i {
    font-size: 15px;
}

.ssp-why-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-why-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 38rem;
}

.ssp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.5rem;
    list-style: none;
    margin: 0.5rem auto 0;
    padding: 0.5rem 0 0;
    position: relative;
    max-width: 1100px;
}

.ssp-why-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 105, 0, 0.22) 12%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.18) 88%,
        transparent 100%
    );
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
}

.ssp-why-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 1.45rem 1.35rem 1.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 36px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    animation: ssp-why-card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-why-card:nth-child(1) {
    animation-delay: 0.03s;
}
.ssp-why-card:nth-child(2) {
    animation-delay: 0.08s;
}
.ssp-why-card:nth-child(3) {
    animation-delay: 0.13s;
}
.ssp-why-card:nth-child(4) {
    animation-delay: 0.18s;
}
.ssp-why-card:nth-child(5) {
    animation-delay: 0.23s;
}
.ssp-why-card:nth-child(6) {
    animation-delay: 0.28s;
}

@media (min-width: 992px) {
    .ssp-why-card:nth-child(even) {
        margin-top: 1.35rem;
    }
}

.ssp-why-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px rgba(0, 26, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.28);
    background: rgba(255, 255, 255, 0.78);
}

.ssp-why-card__accent {
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 1rem;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 105, 0, 0.35) 100%);
    opacity: 0.9;
}

.ssp-why-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: 0.35rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.14) 0%, rgba(255, 105, 0, 0.06) 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-why-card:hover .ssp-why-card__icon {
    transform: scale(1.06);
}

.ssp-why-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 0.65rem;
    padding-left: 0.35rem;
}

.ssp-why-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    padding-left: 0.35rem;
    flex-grow: 1;
}

.ssp-why-cta {
    margin-top: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ssp-why-cta__panel {
    position: relative;
    text-align: center;
    padding: clamp(1.75rem, 3vw, 2.35rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.97) 0%, #003366 48%, #001a33 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 50px rgba(0, 26, 51, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ssp-why-cta__panel:hover {
    box-shadow:
        0 26px 60px rgba(0, 26, 51, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-2px);
}

.ssp-why-cta__glow {
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 105, 0, 0.22), transparent 55%);
    pointer-events: none;
}

.ssp-why-cta__title {
    position: relative;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 0.65rem;
}

.ssp-why-cta__lede {
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto 1.35rem;
    max-width: 26rem;
}

.ssp-why-cta__btn {
    position: relative;
    font-weight: 700;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
}

@keyframes ssp-why-card-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .ssp-why-grid::before {
        display: none;
    }

    .ssp-why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 560px;
    }

    .ssp-why-card:nth-child(even) {
        margin-top: 0;
    }

    .ssp-why-card {
        border-left: 3px solid rgba(255, 105, 0, 0.35);
    }

    .ssp-why-card__accent {
        display: none;
    }
}

@media (max-width: 575px) {
    .ssp-why-title {
        font-size: 1.38rem;
    }

    .ssp-why-subtitle {
        font-size: 0.98rem;
    }

    .ssp-why-cta__panel:hover {
        transform: none;
    }
}

/* ===== Submission Support: advanced services grid + CTA ===== */
.ssp-advanced-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 56px rgba(0, 26, 51, 0.07);
}

.ssp-advanced-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 15% 10%, rgba(255, 105, 0, 0.1), transparent 58%),
        radial-gradient(ellipse 55% 45% at 85% 90%, rgba(0, 26, 51, 0.08), transparent 55%),
        linear-gradient(170deg, #ffffff 0%, #f3f5f9 45%, #e8ecf3 100%);
}

.ssp-advanced-bg::before {
    content: "";
    position: absolute;
    width: min(380px, 65vw);
    height: min(380px, 65vw);
    border-radius: 45% 55% 50% 50%;
    left: -12%;
    bottom: 5%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 26, 51, 0.04), transparent 65%);
}

.ssp-advanced-inner {
    z-index: 1;
}

.ssp-advanced-ribbon {
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 105, 0, 0.45) 25%,
        rgba(0, 26, 51, 0.25) 75%,
        transparent
    );
    opacity: 0.85;
    pointer-events: none;
}

.ssp-advanced-head {
    max-width: 900px;
    margin: 0 auto 2.35rem;
    padding-top: 0.35rem;
}

.ssp-advanced-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-advanced-kicker i {
    font-size: 14px;
}

.ssp-advanced-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-advanced-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 40rem;
}

.ssp-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding-top: 0.35rem;
}

.ssp-advanced-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 1.5rem 1.35rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 12px 36px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    animation: ssp-advanced-card-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-advanced-card:nth-child(1) {
    animation-delay: 0.03s;
}
.ssp-advanced-card:nth-child(2) {
    animation-delay: 0.08s;
}
.ssp-advanced-card:nth-child(3) {
    animation-delay: 0.13s;
}
.ssp-advanced-card:nth-child(4) {
    animation-delay: 0.18s;
}
.ssp-advanced-card:nth-child(5) {
    animation-delay: 0.23s;
}
.ssp-advanced-card:nth-child(6) {
    animation-delay: 0.28s;
}

.ssp-advanced-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 22px 48px rgba(0, 26, 51, 0.14);
    border-color: rgba(255, 105, 0, 0.28);
}

.ssp-advanced-card__shine {
    position: absolute;
    top: -40%;
    right: -35%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 0, 0.12), transparent 62%);
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.35s ease;
}

.ssp-advanced-card:hover .ssp-advanced-card__shine {
    opacity: 1;
}

.ssp-advanced-card__icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.16) 0%, rgba(255, 105, 0, 0.05) 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-advanced-card:hover .ssp-advanced-card__icon {
    transform: scale(1.07) rotate(-2deg);
}

.ssp-advanced-card__title {
    position: relative;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 0.65rem;
}

.ssp-advanced-card__desc {
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    flex-grow: 1;
}

.ssp-advanced-card__desc .ssp-adv-kw {
    color: var(--primary);
    font-weight: 700;
}

.ssp-advanced-cta {
    position: relative;
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ssp-advanced-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 26, 51, 0.12) 25%,
        rgba(255, 105, 0, 0.35) 50%,
        rgba(0, 26, 51, 0.12) 75%,
        transparent
    );
}

.ssp-advanced-cta::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.1);
}

.ssp-advanced-cta__inner {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 14px 40px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ssp-advanced-cta__inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
}

.ssp-advanced-cta__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.ssp-advanced-cta__text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 34rem;
}

.ssp-advanced-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ssp-advanced-cta__btn {
    font-weight: 700;
    padding: 0.65rem 1.65rem;
    border-radius: 50px;
}

.ssp-advanced-cta__btn-secondary {
    font-weight: 700;
    padding: 0.55rem 1.45rem;
    border-radius: 50px;
}

@keyframes ssp-advanced-card-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .ssp-advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 820px;
    }
}

@media (max-width: 767px) {
    .ssp-advanced-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .ssp-advanced-title {
        font-size: 1.38rem;
    }

    .ssp-advanced-subtitle {
        font-size: 0.98rem;
    }

    .ssp-advanced-cta__actions {
        flex-direction: column;
    }

    .ssp-advanced-cta__btn,
    .ssp-advanced-cta__btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===== Career page: Research areas (premium card grid) ===== */
.research-areas-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(168deg, #f0f4f8 0%, var(--bg-light) 42%, #eef6ff 100%);
}

.ras-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ras-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 1;
}

.ras-bg-blob--1 {
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 105, 0, 0.14), rgba(255, 105, 0, 0.02) 62%, transparent 70%);
}

.ras-bg-blob--2 {
    width: min(420px, 75vw);
    height: min(420px, 75vw);
    bottom: -18%;
    left: -10%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 26, 51, 0.09), rgba(0, 26, 51, 0.02) 65%, transparent 72%);
}

.ras-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.research-areas-section > .container {
    z-index: 1;
}

.ras-head {
    max-width: 820px;
    margin: 0 auto 2.75rem;
}

.ras-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.ras-title {
    font-size: clamp(1.65rem, 3.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 1.1rem;
    letter-spacing: -0.02em;
}

.ras-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 auto;
    max-width: 40rem;
}

.ras-key {
    color: var(--primary);
    font-weight: 700;
}

.ras-grid {
    margin-bottom: 0.5rem;
}

.ras-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.65rem 1.5rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-top: 3px solid rgba(255, 105, 0, 0.42);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.ras-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.2);
}

.ras-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.ras-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.16) 0%, rgba(255, 105, 0, 0.06) 100%);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    flex-shrink: 0;
}

.ras-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.75rem;
}

.ras-card-desc {
    font-size: 0.9375rem;
    line-height: 1.68;
    color: var(--text);
    margin: 0;
    flex: 1 1 auto;
}

.ras-cta-panel {
    margin-top: 2.75rem;
    padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ras-cta-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.ras-cta-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 34rem;
}

.ras-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ras-cta-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .ras-head {
        margin-bottom: 2.25rem;
    }

    .ras-cta-actions {
        flex-direction: column;
    }

    .ras-cta-actions .ras-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .ras-card {
        background: #ffffff;
    }

    .ras-cta-panel {
        background: #ffffff;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ras-card {
        transition: none;
    }

    .ras-card:hover {
        transform: none;
    }
}

.services-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.metric-value {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .services-metrics-grid { grid-template-columns: 1fr; }
}

/* ===== Global Landing CTAs + Hero ===== */
.inner-hero {
    padding: 72px 0 42px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

/* ===== Service Suite Hero Banners ===== */
.suite-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.suite-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Light overlay so the transparent header remains readable (matches home vibe) */
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
}

.suite-hero > .container {
    position: relative;
    z-index: 1;
}

.suite-hero-title {
    color: var(--dark);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px;
}

.suite-hero-subtitle {
    color: #4A5565;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 58ch;
}

.suite-hero-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.suite-hero-cta {
    padding: 14px 28px;
    font-weight: 900;
}

.suite-rp-hero-bg { background-image: url("../images/publication-bg.webp"); }
.suite-thesis-hero-bg { background-image: url("../images/quality-bg.webp"); }
.suite-market-hero-bg { background-image: url("../images/formatting-bg.webp"); }
.suite-career-hero-bg { background-image: url("../images/about-bg.webp"); }

.suite-cfp-hero-bg { background-image: url("../images/premium-bg.webp"); }
.suite-call-hero-bg { background-image: url("../images/submission-bg.webp"); }
.suite-journals-hero-bg { background-image: url("../images/journal-bg.webp"); }
.suite-portfolio-hero-bg { background-image: url("../images/publication-bg.webp"); }
.suite-blog-hero-bg { background-image: url("../images/formatting-bg.webp"); }

@media (max-width: 991px) {
    .suite-hero { min-height: 520px; }
    .suite-hero-title { font-size: 36px; }
    .suite-hero-subtitle { font-size: 15px; }
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
}

.inner-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.1;
}

.inner-hero-subtitle {
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.inner-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.inner-hero-primary {
    padding: 14px 30px;
}

.inner-hero-badge {
    background: #001A33;
    border-radius: 22px;
    padding: 20px 18px;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.inner-hero-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: rgba(255,105,0,0.16);
    color: #ff6900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.inner-hero-badge-title {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 8px;
}

.inner-hero-badge-text {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.final-cta-section {
    padding: 50px 0 70px;
}

.final-cta-card {
    background: linear-gradient(180deg, #001A33 0%, #003366 100%);
    border-radius: 26px;
    padding: 28px 22px;
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.final-cta-left {
    min-width: 280px;
    flex: 1;
}

.final-cta-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.final-cta-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.7;
}

.final-cta-right {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.final-cta-button {
    padding: 14px 26px;
}

.final-cta-note {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .inner-hero-grid { grid-template-columns: 1fr; }
    .inner-hero-title { font-size: 34px; }
    .final-cta-right { align-items: flex-start; }
}

/* ===== PR Services page ===== */

/* PR hero â€” premium split layout (pr-services + market-your-research) */
:is(.pr-services-page, .market-your-research-page) .pr-hero-section {
    overflow: hidden;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin-bottom: 1rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-trust {
    margin: 0 0 0.85rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-highlight {
    color: var(--dark);
    background: linear-gradient(180deg, transparent 58%, rgba(255, 105, 0, 0.22) 58%);
    padding: 0 2px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--dark);
    max-width: 52ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-body {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #4a5565;
    max-width: 54ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-actions {
    margin-top: 0.35rem;
    margin-bottom: 1.35rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 15px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .career-skills-hero-animate--visual {
    animation-delay: 0.22s;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
    position: relative;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual__glow {
    position: absolute;
    inset: 6% 2% 4% 6%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.18) 0%, transparent 68%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--1 {
    width: min(220px, 45vw);
    height: min(220px, 45vw);
    top: -4%;
    right: 0;
    background: rgba(96, 165, 250, 0.2);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--2 {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    bottom: 2%;
    left: -6%;
    background: rgba(255, 105, 0, 0.16);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots {
    display: flex;
    gap: 5px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(1) { background: #fda4af; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(3) { background: #86efac; }

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge i {
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--pr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: prBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--pr-d, 0s);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes prBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-spark {
    display: block;
    width: 100%;
    height: 40px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float {
    position: absolute;
    bottom: 18px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 14px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 991px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-body {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-dash-float {
        right: 8px;
    }
}

@media (max-width: 575px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        grid-template-columns: 1fr;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary,
    :is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
        animation: none;
        transition: none;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
        transform: none;
    }
}

.pr-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .pr-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.pr-section-gap {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}

.suite-pr-services-hero-bg {
    background-image: url("../images/formatting-bg.webp");
}

.pr-services-hero.suite-hero::before {
    background: linear-gradient(
        125deg,
        rgba(0, 26, 51, 0.88) 0%,
        rgba(0, 26, 51, 0.72) 42%,
        rgba(0, 51, 102, 0.55) 100%
    );
}

.pr-services-hero .suite-hero-title {
    color: #fff;
}

.pr-services-hero .suite-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
}

.pr-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    max-width: 62ch;
    margin: 0 auto 8px;
}

.pr-services-hero .pr-hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}

.pr-services-hero .pr-hero-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
}

.pr-why-intro {
    max-width: 56ch;
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pr-why-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.pr-services-service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-services-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
}

.pr-services-service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.pr-service-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #4a5565;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.75;
}

.pr-service-list li {
    margin-bottom: 8px;
}

.pr-benefits-section .section-title .main-title {
    color: var(--dark);
}

.pr-benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 26px 24px;
    min-height: 100%;
    background: linear-gradient(
        155deg,
        rgba(0, 26, 51, 0.97) 0%,
        rgba(0, 40, 82, 0.94) 48%,
        rgba(0, 26, 51, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 40px rgba(0, 12, 30, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pr-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 0, 0.07) 0%,
        transparent 45%
    );
    pointer-events: none;
}

.pr-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow:
        0 22px 50px rgba(0, 12, 30, 0.38),
        0 0 28px rgba(255, 105, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pr-benefit-card-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--primary);
    background: rgba(255, 105, 0, 0.14);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.12);
}

.pr-benefit-card-title {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px;
}

.pr-benefit-card-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-case-card .metric-value {
    font-size: 22px;
    color: var(--dark);
}

.pr-case-card .metric-label {
    font-weight: 700;
}

.pr-cta-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
}

.pr-cta-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

/* ===== eBook services page (light theme, matches homepage) ===== */
.ebook-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .ebook-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.ebook-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 68ch;
    margin: 0 auto 10px;
}

.ebook-service-card {
    position: relative;
    border-radius: 20px;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ebook-service-card:hover {
    transform: translateY(-5px);
    border-color: #e0e4e8;
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    border: 1px solid rgba(255, 105, 0, 0.25);
}

.ebook-service-tag--popular {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ebook-service-tag--trend {
    background: #f0f7ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.ebook-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-service-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-service-card-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0 0 12px;
    flex-grow: 1;
}

.ebook-services-list-section .ebook-service-card-desc {
    margin-bottom: 0;
}

.ebook-services-list-section .section-title .sub-title {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .ebook-services-list-section .offset-lg-3 {
        margin-left: 0;
    }
}

/* ===== eBook Services â€” Process timeline ===== */
.ebook-services-page .ebook-process-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-process-section__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 70% at 92% 8%, rgba(255, 105, 0, 0.08) 0%, transparent 52%),
        radial-gradient(90% 65% at 4% 88%, rgba(0, 26, 51, 0.06) 0%, transparent 55%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 247, 247, 0) 42%, rgba(255, 105, 0, 0.04) 100%);
}

.ebook-services-page .ebook-process-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.ebook-services-page .ebook-process-section__accent--1 {
    width: min(320px, 50vw);
    height: min(320px, 50vw);
    top: -4%;
    right: 6%;
    background: rgba(255, 105, 0, 0.14);
}

.ebook-services-page .ebook-process-section__accent--2 {
    width: min(260px, 44vw);
    height: min(260px, 44vw);
    bottom: 6%;
    left: -2%;
    background: rgba(0, 38, 77, 0.07);
}

.ebook-services-page .ebook-process-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-process-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.ebook-services-page .ebook-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.ebook-services-page .ebook-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.ebook-services-page .ebook-process-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(300px, 30%);
    gap: clamp(24px, 3.5vw, 44px);
    align-items: center;
}

.ebook-services-page .ebook-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    position: relative;
}

.ebook-services-page .ebook-process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.ebook-services-page .ebook-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-process-step__track {
    display: none;
}

.ebook-services-page .ebook-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.35rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(6px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
    margin-top: clamp(12px, 2vw, 20px);
}

.ebook-services-page .ebook-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: -2.35rem auto 1rem;
    width: fit-content;
}

.ebook-services-page .ebook-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4eb 0%, #ffe8d9 100%);
    border: 1px solid rgba(255, 105, 0, 0.35);
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.15);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__num {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-process-step__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    text-align: center;
}

.ebook-services-page .ebook-process-step__desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    text-align: center;
}

.ebook-services-page .ebook-process-visual__panel {
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(10px);
}

.ebook-services-page .ebook-process-visual__flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.ebook-services-page .ebook-process-visual__chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.05);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-services-page .ebook-process-visual__chip i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.ebook-services-page .ebook-process-visual__chip--highlight {
    border-color: rgba(255, 105, 0, 0.28);
    background: linear-gradient(145deg, #fff8f3 0%, #fff 100%);
}

.ebook-services-page .ebook-process-visual__arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 105, 0, 0.55);
    font-size: 16px;
    line-height: 1;
}

/* ===== eBook Services â€” Why publishing matters ===== */
.ebook-services-page .ebook-why-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: #ffffff;
    overflow: hidden;
}

.ebook-services-page .ebook-why-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 45% at 100% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 0% 80%, rgba(0, 26, 51, 0.05) 0%, transparent 50%);
}

.ebook-services-page .ebook-why-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-why-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.ebook-services-page .ebook-why-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-why-sub {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: #64748b;
}

.ebook-services-page .ebook-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.ebook-services-page .ebook-why-card--alt {
    background: linear-gradient(145deg, #fafbfd 0%, #ffffff 100%);
}

.ebook-services-page .ebook-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 105, 0, 0.2) 100%);
    opacity: 0.85;
    transition: height 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.ebook-services-page .ebook-why-card:hover::before {
    height: 4px;
}

.ebook-services-page .ebook-why-card__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 21px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover .ebook-why-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-why-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.02rem, 1.8vw, 1.12rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.ebook-services-page .ebook-why-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #64748b;
}

@media (max-width: 1399px) {
    .ebook-services-page .ebook-process-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-process-visual {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 28px);
        max-width: 560px;
        margin: 0 auto;
        padding-left: 28px;
        border-left: 2px solid rgba(255, 105, 0, 0.22);
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step {
        position: relative;
    }

    .ebook-services-page .ebook-process-step::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 28px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px rgba(255, 105, 0, 0.35);
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }

    .ebook-services-page .ebook-process-step__card {
        text-align: left;
    }

    .ebook-services-page .ebook-process-step__node {
        flex-direction: row;
        margin: -2rem auto 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .ebook-services-page .ebook-process-step__title,
    .ebook-services-page .ebook-process-step__desc {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-process-step__card,
    .ebook-services-page .ebook-process-step__icon,
    .ebook-services-page .ebook-process-step__num,
    .ebook-services-page .ebook-why-card,
    .ebook-services-page .ebook-why-card__icon,
    .ebook-services-page .ebook-why-card::before {
        transition: none;
    }

    .ebook-services-page .ebook-process-step__card:hover,
    .ebook-services-page .ebook-why-card:hover {
        transform: none;
    }
}

/* ===== eBook Services â€” Audience section ===== */
.ebook-services-page .ebook-audience-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-audience-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
}

.ebook-services-page .ebook-audience-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.45;
    pointer-events: none;
}

.ebook-services-page .ebook-audience-section__accent--1 {
    width: min(300px, 48vw);
    height: min(300px, 48vw);
    top: 8%;
    right: -4%;
    background: rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-audience-head {
    max-width: 760px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-audience-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3.5vw, 40px);
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}

.ebook-services-page .ebook-audience-intro__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(8px);
}

.ebook-services-page .ebook-audience-intro__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-intro__text {
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.72;
    color: #4a5565;
}

.ebook-services-page .ebook-audience-kw {
    font-weight: 800;
    color: var(--dark);
    background: linear-gradient(180deg, transparent 62%, rgba(255, 105, 0, 0.18) 62%);
    padding: 0 1px;
}

.ebook-services-page .ebook-audience-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
}

.ebook-services-page .ebook-audience-item {
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-audience-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    padding: clamp(1.1rem, 2vw, 1.25rem);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 0, 0.22);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-services-page .ebook-audience-card__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 11px;
}

.ebook-services-page .ebook-audience-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 17px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover .ebook-audience-card__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.15);
}

.ebook-services-page .ebook-audience-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark);
}

/* ===== eBook Services â€” FAQ accordion ===== */
.ebook-services-page .ebook-faq-section {
    padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 96px);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
}

.ebook-services-page .ebook-faq-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-faq-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item {
    margin: 0;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.08);
}

.ebook-services-page .ebook-faq-accordion .accordion-header {
    margin: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    border: 0;
    transition: color 0.25s ease, background 0.25s ease;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.ebook-services-page .ebook-faq-accordion .accordion-button::after {
    display: none;
}

.ebook-services-page .ebook-faq-item__q {
    flex: 1;
    text-align: left;
}

.ebook-services-page .ebook-faq-item__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 26, 51, 0.08);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, background 0.25s ease, opacity 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle {
    background: rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.25);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    background: var(--primary);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:hover .ebook-faq-item__toggle {
    border-color: rgba(255, 105, 0, 0.3);
}

.ebook-services-page .ebook-faq-accordion .accordion-body,
.ebook-services-page .ebook-faq-item__a {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.ebook-services-page .ebook-faq-accordion .accordion-collapse {
    transition: height 0.32s ease;
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-audience-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-audience-card,
    .ebook-services-page .ebook-audience-card__icon,
    .ebook-services-page .ebook-faq-accordion .ebook-faq-item,
    .ebook-services-page .ebook-faq-item__toggle,
    .ebook-services-page .ebook-faq-item__toggle::before,
    .ebook-services-page .ebook-faq-item__toggle::after {
        transition: none;
    }

    .ebook-services-page .ebook-audience-card:hover {
        transform: none;
    }
}

.ebook-service-seo {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0 0 16px;
}

.ebook-service-cta {
    align-self: flex-start;
    margin-top: auto;
}

.ebook-process-card {
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.ebook-process-num {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.ebook-process-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-process-desc {
    font-size: 14px;
    font-weight: 600;
    color: #4a5565;
    margin: 0;
    line-height: 1.65;
}

.ebook-benefit-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.ebook-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-benefit-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.35;
}

.ebook-benefit-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0;
}

.ebook-use-case-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 560px;
}

.ebook-use-case-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ebook-use-case-list li:last-child {
    margin-bottom: 0;
}

.ebook-use-case-list .fa-check {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.ebook-cta-strip {
    padding: 2.5rem 0;
}

.ebook-cta-inner {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.ebook-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.ebook-cta-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
}

.ebook-cta-btn {
    padding: 14px 26px;
    font-weight: 900;
}

.ebook-cta-btn-outline {
    padding: 12px 24px;
    font-weight: 800;
}

.ebook-seo-section {
    padding: 1.5rem 0 3rem;
    border-top: 1px solid #eef0f2;
}

.ebook-seo-boost {
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*

.call-for-papers-page .cfp-hero-visual__publishers {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.call-for-papers-page .cfp-hero-publisher {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.07);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.call-for-papers-page .cfp-hero-publisher--active {
    border-color: rgba(255, 105, 0, 0.22);
    background: linear-gradient(145deg, #fff9f5 0%, #fff 100%);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.08);
}

.call-for-papers-page .cfp-hero-publisher:hover {
    transform: translateX(4px);
    border-color: rgba(255, 105, 0, 0.18);
}

.call-for-papers-page .cfp-hero-publisher__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.18);
    color: var(--primary);
    font-size: 14px;
}

.call-for-papers-page .cfp-hero-publisher strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.call-for-papers-page .cfp-hero-publisher span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

/* ===== Conferences page — support section ===== */
.conferences-page .conf-support-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
    overflow: hidden;
}

.conferences-page .conf-support-section__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 10% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 92% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.conferences-page .conf-support-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.45;
    pointer-events: none;
}

.conferences-page .conf-support-section__blob--1 {
    width: min(240px, 42vw);
    height: min(240px, 42vw);
    top: 8%;
    right: -4%;
    background: rgba(255, 105, 0, 0.14);
}

.conferences-page .conf-support-section__blob--2 {
    width: min(200px, 36vw);
    height: min(200px, 36vw);
    bottom: 6%;
    left: -5%;
    background: rgba(13, 148, 136, 0.12);
}

.conferences-page .conf-support-section > .container {
    position: relative;
    z-index: 1;
}

.conferences-page .conf-support-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.conferences-page .conf-support-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.conferences-page .conf-support-kicker i {
    font-size: 14px;
}

.conferences-page .conf-support-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.conferences-page .conf-support-intro {
    margin: 0 auto;
    max-width: 46rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.conferences-page .conf-support-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

.conferences-page .conf-support-lead {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.72;
    color: #475569;
    max-width: 58ch;
}

.conferences-page .conf-support-body {
    margin: 0 0 1.35rem;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
    max-width: 58ch;
}

.conferences-page .conf-support-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.conferences-page .conf-support-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.conferences-page .conf-support-check:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 105, 0, 0.22);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

.conferences-page .conf-support-check__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 10px;
}

.conferences-page .conf-support-check__text {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #334155;
}

.conferences-page .conf-support-visual-wrap {
    position: relative;
}

.conferences-page .conf-support-visual__glow {
    position: absolute;
    inset: 8% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.14) 0%, transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

.conferences-page .conf-support-visual {
    position: relative;
    margin: 0;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 26, 51, 0.06), 0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.conferences-page .conf-support-visual-wrap:hover .conf-support-visual {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 26, 51, 0.08), 0 28px 64px rgba(0, 26, 51, 0.12);
}

.conferences-page .conf-support-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.conferences-page .conf-support-visual__dots {
    display: flex;
    gap: 5px;
}

.conferences-page .conf-support-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.conferences-page .conf-support-visual__dots span:first-child {
    background: #ff6b6b;
}

.conferences-page .conf-support-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.conferences-page .conf-support-visual__stage {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.conferences-page .conf-support-visual__podium {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    color: var(--primary);
    font-size: 22px;
    min-height: 88px;
}

.conferences-page .conf-support-visual__screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.conferences-page .conf-support-visual__screen-bar {
    height: 7px;
    width: var(--conf-w, 80%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.conferences-page .conf-support-visual__screen-bar--accent {
    background: linear-gradient(90deg, var(--primary) 0%, #fb923c 100%);
}

.conferences-page .conf-support-visual__topics {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.conferences-page .conf-support-visual__topic {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.07);
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.conferences-page .conf-support-visual__topic--active {
    border-color: rgba(255, 105, 0, 0.22);
    background: linear-gradient(145deg, #fff9f5 0%, #fff 100%);
}

.conferences-page .conf-support-visual__topic:hover {
    transform: translateX(4px);
}

.conferences-page .conf-support-visual__topic-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.18);
    color: var(--primary);
    font-size: 14px;
}

.conferences-page .conf-support-visual__topic strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.conferences-page .conf-support-visual__topic span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.conferences-page .conf-support-visual__float {
    position: absolute;
    right: -8px;
    bottom: -10px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff 0%, #fff9f5 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.12);
    animation: confSupportFloat 4s ease-in-out infinite;
}

.conferences-page .conf-support-visual__float i {
    color: var(--primary);
    font-size: 16px;
}

.conferences-page .conf-support-visual__float strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
}

.conferences-page .conf-support-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@keyframes confSupportFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Conferences page — why section ===== */
.conferences-page .conf-why-section {
    position: relative;
    padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
    background: #fff;
    overflow: hidden;
}

.conferences-page .conf-why-section__mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.conferences-page .conf-why-section > .container {
    position: relative;
    z-index: 1;
}

.conferences-page .conf-why-head {
    max-width: 760px;
    margin: 0 auto clamp(32px, 4.5vw, 48px);
}

.conferences-page .conf-why-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.conferences-page .conf-why-title {
    margin: 0;
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.conferences-page .conf-why-card {
    --conf-why-accent: var(--primary);
    --conf-why-accent-soft: rgba(255, 105, 0, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.conferences-page .conf-why-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--conf-why-accent) 0%, transparent 100%);
}

.conferences-page .conf-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.conferences-page .conf-why-card--clarity {
    --conf-why-accent: #ff6900;
    --conf-why-accent-soft: rgba(255, 105, 0, 0.14);
}

.conferences-page .conf-why-card--readiness {
    --conf-why-accent: #0d9488;
    --conf-why-accent-soft: rgba(13, 148, 136, 0.14);
}

.conferences-page .conf-why-card--confidence {
    --conf-why-accent: #6366f1;
    --conf-why-accent-soft: rgba(99, 102, 241, 0.14);
}

.conferences-page .conf-why-card--publication {
    --conf-why-accent: #2563eb;
    --conf-why-accent-soft: rgba(37, 99, 235, 0.14);
}

.conferences-page .conf-why-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--conf-why-accent-soft);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--conf-why-accent);
    font-size: 20px;
    transition: transform 0.32s ease;
}

.conferences-page .conf-why-card:hover .conf-why-card__icon {
    transform: scale(1.06);
}

.conferences-page .conf-why-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.conferences-page .conf-why-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #475569;
}

@media (max-width: 991px) {
    .conferences-page .conf-support-checklist {
        grid-template-columns: 1fr;
    }

    .conferences-page .conf-support-visual-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .conferences-page .conf-support-visual__float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conferences-page .conf-support-check,
    .conferences-page .conf-support-visual,
    .conferences-page .conf-support-visual__topic,
    .conferences-page .conf-support-visual__float,
    .conferences-page .conf-why-card,
    .conferences-page .conf-why-card__icon {
        transition: none;
        animation: none;
    }

    .conferences-page .conf-support-check:hover,
    .conferences-page .conf-support-visual-wrap:hover .conf-support-visual,
    .conferences-page .conf-support-visual__topic:hover,
    .conferences-page .conf-why-card:hover,
    .conferences-page .conf-why-card:hover .conf-why-card__icon {
        transform: none;
    }
}


/* ===== Conferences page — participation services grid ===== */
.conferences-page .conf-services-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f8fafc 100%);
    overflow: hidden;
}

.conferences-page .conf-services-section__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 45% at 15% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 90% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.conferences-page .conf-services-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
    pointer-events: none;
}

.conferences-page .conf-services-section__blob--1 {
    width: min(220px, 40vw);
    height: min(220px, 40vw);
    top: 12%;
    right: -5%;
    background: rgba(255, 105, 0, 0.12);
}

.conferences-page .conf-services-section > .container {
    position: relative;
    z-index: 1;
}

.conferences-page .conf-services-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.conferences-page .conf-services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.conferences-page .conf-services-kicker i {
    font-size: 14px;
}

.conferences-page .conf-services-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.conferences-page .conf-services-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.conferences-page .conf-service-card {
    --conf-svc-accent: var(--primary);
    --conf-svc-accent-soft: rgba(255, 105, 0, 0.12);
    --conf-svc-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.conferences-page .conf-service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--conf-svc-accent) 0%, transparent 100%);
}

.conferences-page .conf-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.conferences-page .conf-service-card--editing {
    --conf-svc-accent: #ff6900;
    --conf-svc-accent-soft: rgba(255, 105, 0, 0.14);
}

.conferences-page .conf-service-card--formatting {
    --conf-svc-accent: #0d9488;
    --conf-svc-accent-soft: rgba(13, 148, 136, 0.14);
    --conf-svc-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.conferences-page .conf-service-card--design {
    --conf-svc-accent: #6366f1;
    --conf-svc-accent-soft: rgba(99, 102, 241, 0.14);
    --conf-svc-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
}

.conferences-page .conf-service-card--speaker {
    --conf-svc-accent: #2563eb;
    --conf-svc-accent-soft: rgba(37, 99, 235, 0.14);
    --conf-svc-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.conferences-page .conf-service-card--registration {
    --conf-svc-accent: #7c3aed;
    --conf-svc-accent-soft: rgba(124, 58, 237, 0.14);
    --conf-svc-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.conferences-page .conf-service-card--journal {
    --conf-svc-accent: #0891b2;
    --conf-svc-accent-soft: rgba(8, 145, 178, 0.14);
    --conf-svc-icon-bg: linear-gradient(145deg, #ecfeff 0%, #cffafe 100%);
}

.conferences-page .conf-service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--conf-svc-icon-bg);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--conf-svc-accent);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.conferences-page .conf-service-card:hover .conf-service-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(0, 26, 51, 0.1);
}

.conferences-page .conf-service-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.02rem, 1.7vw, 1.15rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.conferences-page .conf-service-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #475569;
}

/* ===== Conferences page — workflow timeline ===== */
.conferences-page .conf-process-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 45%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.conferences-page .conf-process-section__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.conferences-page .conf-process-section > .container {
    position: relative;
    z-index: 1;
}

.conferences-page .conf-process-head {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.conferences-page .conf-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.conferences-page .conf-process-kicker i {
    font-size: 14px;
}

.conferences-page .conf-process-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.conferences-page .conf-process-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.conferences-page .conf-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    position: relative;
}

.conferences-page .conf-process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.conferences-page .conf-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.conferences-page .conf-process-step__track {
    display: none;
}

.conferences-page .conf-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.conferences-page .conf-process-step:nth-child(even) .conf-process-step__card {
    margin-top: clamp(12px, 2vw, 20px);
}

.conferences-page .conf-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.conferences-page .conf-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: -2.35rem auto 1rem;
    width: fit-content;
}

.conferences-page .conf-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4eb 0%, #ffe8d9 100%);
    border: 1px solid rgba(255, 105, 0, 0.35);
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.15);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.conferences-page .conf-process-step__card:hover .conf-process-step__num {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.22);
}

.conferences-page .conf-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.conferences-page .conf-process-step__card:hover .conf-process-step__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.conferences-page .conf-process-step__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    text-align: center;
}

.conferences-page .conf-process-step__desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    text-align: center;
}

@media (max-width: 1199px) {
    .conferences-page .conf-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conferences-page .conf-process-timeline::before {
        display: none;
    }

    .conferences-page .conf-process-step:nth-child(even) .conf-process-step__card {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .conferences-page .conf-process-timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .conferences-page .conf-process-step__node {
        margin-top: 0;
        flex-direction: row;
        justify-content: center;
    }

    .conferences-page .conf-process-step__card {
        padding-top: 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conferences-page .conf-service-card,
    .conferences-page .conf-service-card__icon,
    .conferences-page .conf-process-step__card,
    .conferences-page .conf-process-step__num,
    .conferences-page .conf-process-step__icon {
        transition: none;
    }

    .conferences-page .conf-service-card:hover,
    .conferences-page .conf-service-card:hover .conf-service-card__icon,
    .conferences-page .conf-process-step__card:hover,
    .conferences-page .conf-process-step__card:hover .conf-process-step__num,
    .conferences-page .conf-process-step__card:hover .conf-process-step__icon {
        transform: none;
    }
}


/* ===== Conferences page — listings grid ===== */
.conferences-page .conf-listings-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
    overflow: hidden;
}

.conferences-page .conf-listings-section__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 45% at 12% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 88% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.conferences-page .conf-listings-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
    pointer-events: none;
}

.conferences-page .conf-listings-section__blob--1 {
    width: min(200px, 38vw);
    height: min(200px, 38vw);
    top: 10%;
    right: -4%;
    background: rgba(255, 105, 0, 0.12);
}

.conferences-page .conf-listings-section > .container {
    position: relative;
    z-index: 1;
}

.conferences-page .conf-listings-head {
    max-width: 780px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

.conferences-page .conf-listings-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.conferences-page .conf-listings-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.conferences-page .conf-listings-intro {
    margin: 0 auto;
    max-width: 46rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #64748b;
}

.conferences-page .conf-listings-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto clamp(28px, 4vw, 36px);
    max-width: 520px;
}

.conferences-page .conf-listings-filter {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 26, 51, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.conferences-page .conf-listings-filter:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 105, 0, 0.25);
}

.conferences-page .conf-listings-filter.is-active {
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border-color: rgba(255, 105, 0, 0.35);
    color: #9a3412;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.14);
}

.conferences-page .conf-listing-card {
    --conf-list-accent: var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2.2vw, 1.5rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.conferences-page .conf-listing-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--conf-list-accent) 0%, transparent 100%);
}

.conferences-page .conf-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.conferences-page .conf-listing-card__head {
    margin-bottom: 1rem;
}

.conferences-page .conf-listing-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.32s ease;
}

.conferences-page .conf-listing-card:hover .conf-listing-card__icon {
    transform: scale(1.06);
}

.conferences-page .conf-listing-card__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
}

.conferences-page .conf-listing-card__category {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.45;
    color: #64748b;
}

.conferences-page .conf-listing-card__deadline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.conferences-page .conf-listing-card__deadline-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9a3412;
}

.conferences-page .conf-listing-card__deadline-val {
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
}

.conferences-page .conf-listing-card__focus {
    flex: 1;
    margin-bottom: 1.15rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.conferences-page .conf-listing-card__focus-label {
    margin: 0 0 0.35rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
}

.conferences-page .conf-listing-card__focus-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
}

.conferences-page .conf-listing-card__cta {
    margin-top: auto;
}

.conferences-page .conf-listing-card__btn {
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.2);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.conferences-page .conf-listing-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 105, 0, 0.28);
}

/* ===== Conferences page — participation CTA ===== */
.conferences-page .conf-participation-cta-section {
    position: relative;
    padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f7fafc 100%);
    overflow: hidden;
}

.conferences-page .conf-participation-cta__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 20% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 85% 80%, rgba(0, 26, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.conferences-page .conf-participation-cta__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.45;
    pointer-events: none;
}

.conferences-page .conf-participation-cta__blob--1 {
    width: min(220px, 40vw);
    height: min(220px, 40vw);
    top: -5%;
    left: -3%;
    background: rgba(255, 105, 0, 0.14);
}

.conferences-page .conf-participation-cta__blob--2 {
    width: min(180px, 34vw);
    height: min(180px, 34vw);
    bottom: 0;
    right: -4%;
    background: rgba(13, 148, 136, 0.12);
}

.conferences-page .conf-participation-cta-section > .container {
    position: relative;
    z-index: 1;
}

.conferences-page .conf-participation-cta-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.conferences-page .conf-participation-cta-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 105, 0, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.conferences-page .conf-participation-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.conferences-page .conf-participation-cta-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.conferences-page .conf-participation-cta-lead {
    margin: 0 0 1.35rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #475569;
    max-width: 54ch;
}

.conferences-page .conf-participation-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .conferences-page .conf-participation-cta-actions {
        justify-content: flex-start;
    }
}

.conferences-page .conf-participation-cta-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.conferences-page .conf-participation-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

.conferences-page .conf-participation-cta-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.conferences-page .conf-participation-cta-btn-secondary:hover {
    transform: translateY(-2px);
}

.conferences-page .conf-participation-cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .conferences-page .conf-participation-cta-trust {
        justify-content: flex-start;
    }
}

.conferences-page .conf-participation-cta-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 26, 51, 0.08);
    font-size: 11px;
    font-weight: 700;
    color: #475569;
}

.conferences-page .conf-participation-cta-trust__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 11px;
}

.conferences-page .conf-participation-cta-visual {
    position: relative;
    margin: 0;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 26, 51, 0.06), 0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.conferences-page .conf-participation-cta-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 26, 51, 0.08), 0 28px 64px rgba(0, 26, 51, 0.12);
}

.conferences-page .conf-participation-cta-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.conferences-page .conf-participation-cta-visual__dots {
    display: flex;
    gap: 5px;
}

.conferences-page .conf-participation-cta-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.conferences-page .conf-participation-cta-visual__dots span:first-child {
    background: #ff6b6b;
}

.conferences-page .conf-participation-cta-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.conferences-page .conf-participation-cta-visual__stage {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.conferences-page .conf-participation-cta-visual__podium {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    color: var(--primary);
    font-size: 22px;
    min-height: 88px;
}

.conferences-page .conf-participation-cta-visual__screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: #1e293b;
}

.conferences-page .conf-participation-cta-visual__bar {
    height: 7px;
    width: var(--conf-bar-w, 80%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.conferences-page .conf-participation-cta-visual__bar--accent {
    background: linear-gradient(90deg, var(--primary) 0%, #fb923c 100%);
}

.conferences-page .conf-participation-cta-visual__float {
    position: absolute;
    right: -6px;
    bottom: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff 0%, #fff9f5 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.12);
    animation: confParticipationFloat 4s ease-in-out infinite;
}

.conferences-page .conf-participation-cta-visual__float i {
    color: #16a34a;
    font-size: 16px;
}

.conferences-page .conf-participation-cta-visual__float strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
}

.conferences-page .conf-participation-cta-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@keyframes confParticipationFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 767px) {
    .conferences-page .conf-participation-cta-actions .btn {
        width: 100%;
    }

    .conferences-page .conf-participation-cta-visual__float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conferences-page .conf-listings-filter,
    .conferences-page .conf-listing-card,
    .conferences-page .conf-listing-card__icon,
    .conferences-page .conf-listing-card__btn,
    .conferences-page .conf-participation-cta-btn-primary,
    .conferences-page .conf-participation-cta-btn-secondary,
    .conferences-page .conf-participation-cta-visual,
    .conferences-page .conf-participation-cta-visual__float {
        transition: none;
        animation: none;
    }

    .conferences-page .conf-listings-filter:hover,
    .conferences-page .conf-listing-card:hover,
    .conferences-page .conf-listing-card:hover .conf-listing-card__icon,
    .conferences-page .conf-listing-card__btn:hover,
    .conferences-page .conf-participation-cta-btn-primary:hover,
    .conferences-page .conf-participation-cta-btn-secondary:hover,
    .conferences-page .conf-participation-cta-visual:hover {
        transform: none;
    }
}

/* ===== Contact page â€” premium hero ===== */
.contact-page .contact-hero-section {
    overflow: hidden;
}

.contact-page .contact-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 22ch;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-page .contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

.contact-page .contact-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

.contact-page .contact-hero-lead {
    margin: 0 0 1.25rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.68;
    color: #4a5565;
    max-width: 54ch;
}

.contact-page .contact-hero-actions {
    margin-top: 0.25rem;
    margin-bottom: 1.35rem;
}

.contact-page .contact-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

.contact-page .contact-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.contact-page .contact-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

.contact-page .contact-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
}

.contact-page .contact-hero-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-page .contact-hero-trust__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

.contact-page .contact-hero-trust__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    color: var(--primary);
    font-size: 14px;
}

.contact-page .contact-hero-trust__text strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-page .contact-hero-trust__text span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    color: #64748b;
}

.contact-page .contact-hero-visual-wrap {
    position: relative;
}

.contact-page .contact-hero-visual__glow {
    position: absolute;
    inset: 8% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.14) 0%, transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

.contact-page .contact-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.contact-page .contact-hero-blob--1 {
    width: min(200px, 40vw);
    height: min(200px, 40vw);
    top: -4%;
    right: 0;
    background: rgba(255, 105, 0, 0.18);
}

.contact-page .contact-hero-blob--2 {
    width: min(160px, 34vw);
    height: min(160px, 34vw);
    bottom: 0;
    left: -6%;
    background: rgba(13, 148, 136, 0.14);
}

.contact-page .contact-hero-visual {
    position: relative;
    margin: 0;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-page .contact-hero-visual-wrap:hover .contact-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12) inset;
}

.contact-page .contact-hero-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.contact-page .contact-hero-visual__dots {
    display: flex;
    gap: 5px;
}

.contact-page .contact-hero-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.contact-page .contact-hero-visual__dots span:first-child {
    background: #ff6900;
}

.contact-page .contact-hero-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 105, 0, 0.1);
    border: 1px solid rgba(255, 105, 0, 0.22);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c2410c;
}

.contact-page .contact-hero-visual__topics {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.contact-page .contact-hero-topic {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(241, 245, 249, 0.65);
    border: 1px solid rgba(0, 26, 51, 0.06);
    transition: border-color 0.28s ease, background 0.28s ease;
}

.contact-page .contact-hero-topic--active {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(255, 105, 0, 0.22);
}

.contact-page .contact-hero-topic__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    color: var(--primary);
    font-size: 15px;
}

.contact-page .contact-hero-topic strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-page .contact-hero-topic span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    color: #64748b;
}

.contact-page .contact-hero-visual__footer {
    display: flex;
    gap: 0.75rem;
}

.contact-page .contact-hero-visual__metric {
    flex: 1;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.07);
}

.contact-page .contact-hero-visual__metric-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.contact-page .contact-hero-visual__metric-val {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark);
}

.contact-page .contact-hero-visual__float {
    position: absolute;
    right: -10px;
    bottom: -14px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.1);
    animation: contactHeroFloat 14s ease-in-out infinite;
}

.contact-page .contact-hero-visual__float i {
    color: var(--primary);
    font-size: 16px;
}

.contact-page .contact-hero-visual__float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

.contact-page .contact-hero-visual__float span {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
}

@keyframes contactHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    .contact-page .contact-hero-trust {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .contact-page .contact-hero-visual-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact-page .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-page .contact-hero-visual__float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page .contact-hero-trust__item,
    .contact-page .contact-hero-visual,
    .contact-page .contact-hero-btn-primary,
    .contact-page .contact-hero-btn-secondary,
    .contact-page .contact-hero-visual__float {
        transition: none;
        animation: none;
    }

    .contact-page .contact-hero-trust__item:hover,
    .contact-page .contact-hero-visual-wrap:hover .contact-hero-visual,
    .contact-page .contact-hero-btn-primary:hover,
    .contact-page .contact-hero-btn-secondary:hover {
        transform: none;
    }
}

/* ===== Conferences page — premium hero ===== */
.conferences-page .conferences-hero-section {
    overflow: hidden;
    padding: calc(var(--site-header-height) + clamp(24px, 3vw, 40px)) 0 clamp(56px, 7vw, 88px) !important;
    position: relative;
    isolation: isolate;
}

.conferences-page .conferences-hero-section.top-banner::after {
    display: none;
}

.conferences-page .conferences-hero-section .career-skills-hero__mesh {
    background:
        radial-gradient(120% 85% at 50% 0%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, transparent 72%),
        radial-gradient(120% 70% at 92% 8%, rgba(255, 105, 0, 0.08) 0%, transparent 52%),
        radial-gradient(90% 65% at 4% 88%, rgba(0, 26, 51, 0.05) 0%, transparent 55%);
}

.conferences-page .conferences-hero-content {
    position: relative;
    z-index: 1;
}

.conferences-page .conferences-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.05rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin-bottom: 1rem;
    color: var(--dark);
}

.conferences-page .conferences-hero-highlight {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.conferences-page .conferences-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

.conferences-page .conferences-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

.conferences-page .conferences-hero-lead {
    margin: 0 0 1.35rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.72;
    color: #4a5565;
    max-width: 54ch;
}

.conferences-page .conferences-hero-em {
    font-weight: 700;
    color: #334155;
}

.conferences-page .conferences-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.conferences-page .conferences-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.conferences-page .conferences-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

.conferences-page .conferences-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.conferences-page .conferences-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

.conferences-page .conferences-hero-trust-row {
    position: relative;
    z-index: 1;
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.conferences-page .conferences-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: none;
}

.conferences-page .conferences-hero-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.conferences-page .conferences-hero-trust__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

.conferences-page .conferences-hero-trust__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    color: var(--primary);
    font-size: 14px;
}

.conferences-page .conferences-hero-trust__text strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 2px;
}

.conferences-page .conferences-hero-trust__text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #64748b;
}

.conferences-page .conferences-hero-visual-wrap {
    position: relative;
    padding: 0.15rem 0 1.75rem 0.5rem;
}

.conferences-page .conferences-hero-visual__glow {
    position: absolute;
    inset: 8% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.14) 0%, transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

.conferences-page .conferences-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    pointer-events: none;
}

.conferences-page .conferences-hero-blob--1 {
    width: min(200px, 40vw);
    height: min(200px, 40vw);
    top: -4%;
    right: 0;
    background: rgba(255, 105, 0, 0.18);
}

.conferences-page .conferences-hero-blob--2 {
    width: min(160px, 34vw);
    height: min(160px, 34vw);
    bottom: 0;
    left: -6%;
    background: rgba(13, 148, 136, 0.14);
}

.conferences-page .conferences-hero-visual {
    position: relative;
    margin: 0;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.conferences-page .conferences-hero-visual-wrap:hover .conferences-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12) inset;
}

.conferences-page .conferences-hero-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.conferences-page .conferences-hero-visual__dots {
    display: flex;
    gap: 5px;
}

.conferences-page .conferences-hero-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.conferences-page .conferences-hero-visual__dots span:first-child {
    background: #ff6b6b;
}

.conferences-page .conferences-hero-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.22);
}

.conferences-page .conferences-hero-workflow {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding: 0.65rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.conferences-page .conferences-hero-workflow__step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.55rem 0.35rem;
    border-radius: 12px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.conferences-page .conferences-hero-workflow__step--active {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.06);
}

.conferences-page .conferences-hero-workflow__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.18);
    color: var(--primary);
    font-size: 13px;
}

.conferences-page .conferences-hero-workflow__step strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

.conferences-page .conferences-hero-workflow__step span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    color: #64748b;
}

.conferences-page .conferences-hero-workflow__arrow {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 11px;
    flex-shrink: 0;
}

.conferences-page .conferences-hero-visual__cards {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.conferences-page .conferences-hero-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.07);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.conferences-page .conferences-hero-mini-card--active {
    border-color: rgba(255, 105, 0, 0.22);
    background: linear-gradient(145deg, #fff9f5 0%, #fff 100%);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.08);
}

.conferences-page .conferences-hero-mini-card:hover {
    transform: translateX(4px);
    border-color: rgba(255, 105, 0, 0.18);
}

.conferences-page .conferences-hero-mini-card__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.18);
    color: var(--primary);
    font-size: 14px;
}

.conferences-page .conferences-hero-mini-card strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.conferences-page .conferences-hero-mini-card span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

.conferences-page .conferences-hero-visual__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.conferences-page .conferences-hero-visual__metric {
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(0, 26, 51, 0.03);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.conferences-page .conferences-hero-visual__metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 3px;
}

.conferences-page .conferences-hero-visual__metric-val {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
}

.conferences-page .conferences-hero-visual__float {
    position: absolute;
    right: -8px;
    bottom: -10px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff 0%, #fff9f5 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.12);
    animation: conferencesHeroFloat 4s ease-in-out infinite;
}

.conferences-page .conferences-hero-visual__float i {
    color: #16a34a;
    font-size: 18px;
}

.conferences-page .conferences-hero-visual__float strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
}

.conferences-page .conferences-hero-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@keyframes conferencesHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    .conferences-page .conferences-hero-section {
        padding: calc(var(--site-header-height) + clamp(20px, 3vw, 32px)) 0 clamp(48px, 6vw, 72px) !important;
    }

    .conferences-page .conferences-hero-section .left-col {
        margin-bottom: 0;
    }

    .conferences-page .conferences-hero-content {
        text-align: center;
    }

    .conferences-page .conferences-hero-content h1,
    .conferences-page .conferences-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .conferences-page .conferences-hero-actions {
        justify-content: center;
    }

    .conferences-page .conferences-hero-trust {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .conferences-page .conferences-hero-visual-wrap {
        max-width: 520px;
        margin: 1.5rem auto 0;
        padding: 0 0 1rem;
    }

    .conferences-page .conferences-hero-workflow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .conferences-page .conferences-hero-workflow__arrow {
        display: none;
    }

    .conferences-page .conferences-hero-workflow__step {
        flex: 1 1 calc(33.333% - 0.5rem);
        min-width: 88px;
    }
}

@media (max-width: 767px) {
    .conferences-page .conferences-hero-section {
        padding: calc(var(--site-header-height) + 20px) 0 clamp(40px, 6vw, 56px) !important;
    }

    .conferences-page .conferences-hero-actions .btn {
        width: 100%;
    }

    .conferences-page .conferences-hero-visual__float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        animation: none;
    }

    .conferences-page .conferences-hero-workflow__step {
        flex: 1 1 100%;
        flex-direction: row;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conferences-page .conferences-hero-trust__item,
    .conferences-page .conferences-hero-visual,
    .conferences-page .conferences-hero-btn-primary,
    .conferences-page .conferences-hero-btn-secondary,
    .conferences-page .conferences-hero-visual__float,
    .conferences-page .conferences-hero-mini-card {
        transition: none;
        animation: none;
    }

    .conferences-page .conferences-hero-trust__item:hover,
    .conferences-page .conferences-hero-visual-wrap:hover .conferences-hero-visual,
    .conferences-page .conferences-hero-btn-primary:hover,
    .conferences-page .conferences-hero-btn-secondary:hover,
    .conferences-page .conferences-hero-mini-card:hover {
        transform: none;
    }
}


/* ===== Contact page â€” inquiry section ===== */
.contact-page .contact-inquiry-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.contact-page .contact-inquiry-section__bg,
.contact-page .contact-inquiry-section__mesh,
.contact-page .contact-inquiry-section__orb {
    position: absolute;
    pointer-events: none;
}

.contact-page .contact-inquiry-section__bg {
    inset: 0;
    background:
        radial-gradient(ellipse 55% 48% at 8% 20%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 92% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 52%);
}

.contact-page .contact-inquiry-section__mesh {
    inset: 0;
    opacity: 0.28;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.contact-page .contact-inquiry-section__orb--1 {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    top: 10%;
    right: 5%;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.4;
    background: rgba(255, 105, 0, 0.14);
}

.contact-page .contact-inquiry-section > .container {
    position: relative;
    z-index: 1;
}

.contact-page .contact-inquiry-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-page .contact-inquiry-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.contact-page .contact-inquiry-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.contact-page .contact-inquiry-intro {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    max-width: 42ch;
}

.contact-page .contact-inquiry-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-page .contact-inquiry-visual__glow {
    position: absolute;
    inset: 10% 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.1) 0%, transparent 70%);
    filter: blur(20px);
}

.contact-page .contact-inquiry-visual__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
}

.contact-page .contact-inquiry-visual__step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.contact-page .contact-inquiry-visual__step--active {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(255, 105, 0, 0.2);
}

.contact-page .contact-inquiry-visual__step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(255, 105, 0, 0.22);
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.contact-page .contact-inquiry-visual__step strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 2px;
}

.contact-page .contact-inquiry-visual__step span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
}

.contact-page .contact-inquiry-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-page .contact-inquiry-detail {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-page .contact-inquiry-detail:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 105, 0, 0.18);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.08);
}

.contact-page .contact-inquiry-detail__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    color: var(--primary);
    font-size: 18px;
}

.contact-page .contact-inquiry-detail__icon--whatsapp {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25d366;
}

.contact-page .contact-inquiry-detail__label {
    margin: 0 0 0.2rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-page .contact-inquiry-detail a {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page .contact-inquiry-detail a:hover {
    color: var(--primary);
}

.contact-page .contact-inquiry-form-card {
    position: relative;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.contact-page .contact-inquiry-form-card:hover {
    box-shadow: 0 22px 56px rgba(0, 26, 51, 0.1);
}

.contact-page .contact-inquiry-form-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.contact-page .contact-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page .contact-inquiry-field {
    position: relative;
}

.contact-page .contact-inquiry-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.contact-page .contact-inquiry-field__icon {
    position: absolute;
    left: 12px;
    bottom: 11px;
    color: rgba(74, 85, 101, 0.5);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.contact-page .contact-inquiry-field--icon input,
.contact-page .contact-inquiry-field--icon textarea {
    padding-left: 36px;
}

.contact-page .contact-inquiry-field--textarea .contact-inquiry-field__icon {
    bottom: auto;
    top: 38px;
}

.contact-page .contact-inquiry-field input,
.contact-page .contact-inquiry-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.45;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-page .contact-inquiry-field input:focus,
.contact-page .contact-inquiry-field textarea:focus {
    outline: none;
    border-color: rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.12);
    background: #fff;
}

.contact-page .contact-inquiry-field--phone .iti {
    width: 100%;
}

.contact-page .contact-inquiry-field--phone input {
    padding-left: 52px;
}

.contact-page .contact-inquiry-form__submit {
    margin-top: 0.35rem;
    min-height: 48px;
    font-weight: 800;
    border-radius: 999px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-inquiry-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 105, 0, 0.28);
}

/* ===== Contact page â€” consultation CTA section ===== */
.contact-page .contact-consultation-section {
    position: relative;
    padding: clamp(56px, 7vw, 96px) 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.contact-page .contact-consultation-section__bg,
.contact-page .contact-consultation-section__mesh,
.contact-page .contact-consultation-section__orb {
    position: absolute;
    pointer-events: none;
}

.contact-page .contact-consultation-section__bg {
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(13, 148, 136, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 100% 100%, rgba(255, 105, 0, 0.05) 0%, transparent 50%);
}

.contact-page .contact-consultation-section__mesh {
    inset: 0;
    opacity: 0.26;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
}

.contact-page .contact-consultation-section__orb {
    border-radius: 50%;
    filter: blur(44px);
    opacity: 0.42;
}

.contact-page .contact-consultation-section__orb--1 {
    width: clamp(120px, 18vw, 200px);
    height: clamp(120px, 18vw, 200px);
    top: 8%;
    left: 6%;
    background: rgba(13, 148, 136, 0.16);
}

.contact-page .contact-consultation-section__orb--2 {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    bottom: 10%;
    right: 8%;
    background: rgba(255, 105, 0, 0.12);
}

.contact-page .contact-consultation-section > .container {
    position: relative;
    z-index: 1;
}

.contact-page .contact-consultation-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
}

.contact-page .contact-consultation-head {
    margin-bottom: clamp(24px, 3.5vw, 32px);
}

.contact-page .contact-consultation-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d9488;
}

.contact-page .contact-consultation-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.contact-page .contact-consultation-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.contact-page .contact-consultation-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.contact-page .contact-consultation-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-page .contact-consultation-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 14px;
    background: rgba(241, 245, 249, 0.65);
    border: 1px solid rgba(0, 26, 51, 0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-consultation-trust__item:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.22);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.07);
}

.contact-page .contact-consultation-trust__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: #0d9488;
    font-size: 16px;
}

.contact-page .contact-consultation-trust__item strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.contact-page .contact-consultation-trust__item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

.contact-page .contact-consultation-cta {
    min-height: 52px;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-page .contact-consultation-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.28);
}

@media (max-width: 991px) {
    .contact-page .contact-consultation-trust {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .contact-page .contact-consultation-cta,
    .contact-page .contact-inquiry-form__submit {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page .contact-inquiry-detail,
    .contact-page .contact-inquiry-form-card,
    .contact-page .contact-inquiry-form__submit,
    .contact-page .contact-consultation-trust__item,
    .contact-page .contact-consultation-cta {
        transition: none;
    }

    .contact-page .contact-inquiry-detail:hover,
    .contact-page .contact-inquiry-form__submit:hover,
    .contact-page .contact-consultation-trust__item:hover,
    .contact-page .contact-consultation-cta:hover {
        transform: none;
    }
}


/* ===== PR Services page ===== */

/* PR hero â€” premium split layout (pr-services + market-your-research) */
:is(.pr-services-page, .market-your-research-page) .pr-hero-section {
    overflow: hidden;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin-bottom: 1rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-trust {
    margin: 0 0 0.85rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-highlight {
    color: var(--dark);
    background: linear-gradient(180deg, transparent 58%, rgba(255, 105, 0, 0.22) 58%);
    padding: 0 2px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--dark);
    max-width: 52ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-body {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #4a5565;
    max-width: 54ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-actions {
    margin-top: 0.35rem;
    margin-bottom: 1.35rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 15px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .career-skills-hero-animate--visual {
    animation-delay: 0.22s;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
    position: relative;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual__glow {
    position: absolute;
    inset: 6% 2% 4% 6%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.18) 0%, transparent 68%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--1 {
    width: min(220px, 45vw);
    height: min(220px, 45vw);
    top: -4%;
    right: 0;
    background: rgba(96, 165, 250, 0.2);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--2 {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    bottom: 2%;
    left: -6%;
    background: rgba(255, 105, 0, 0.16);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots {
    display: flex;
    gap: 5px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(1) { background: #fda4af; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(3) { background: #86efac; }

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge i {
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--pr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: prBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--pr-d, 0s);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes prBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-spark {
    display: block;
    width: 100%;
    height: 40px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float {
    position: absolute;
    bottom: 18px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 14px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 991px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-body {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-dash-float {
        right: 8px;
    }
}

@media (max-width: 575px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        grid-template-columns: 1fr;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary,
    :is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
        animation: none;
        transition: none;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
        transform: none;
    }
}

.pr-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .pr-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.pr-section-gap {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}

.suite-pr-services-hero-bg {
    background-image: url("../images/formatting-bg.webp");
}

.pr-services-hero.suite-hero::before {
    background: linear-gradient(
        125deg,
        rgba(0, 26, 51, 0.88) 0%,
        rgba(0, 26, 51, 0.72) 42%,
        rgba(0, 51, 102, 0.55) 100%
    );
}

.pr-services-hero .suite-hero-title {
    color: #fff;
}

.pr-services-hero .suite-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
}

.pr-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    max-width: 62ch;
    margin: 0 auto 8px;
}

.pr-services-hero .pr-hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}

.pr-services-hero .pr-hero-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
}

.pr-why-intro {
    max-width: 56ch;
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pr-why-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.pr-services-service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-services-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
}

.pr-services-service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.pr-service-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #4a5565;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.75;
}

.pr-service-list li {
    margin-bottom: 8px;
}

.pr-benefits-section .section-title .main-title {
    color: var(--dark);
}

.pr-benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 26px 24px;
    min-height: 100%;
    background: linear-gradient(
        155deg,
        rgba(0, 26, 51, 0.97) 0%,
        rgba(0, 40, 82, 0.94) 48%,
        rgba(0, 26, 51, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 40px rgba(0, 12, 30, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pr-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 0, 0.07) 0%,
        transparent 45%
    );
    pointer-events: none;
}

.pr-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow:
        0 22px 50px rgba(0, 12, 30, 0.38),
        0 0 28px rgba(255, 105, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pr-benefit-card-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--primary);
    background: rgba(255, 105, 0, 0.14);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.12);
}

.pr-benefit-card-title {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px;
}

.pr-benefit-card-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-case-card .metric-value {
    font-size: 22px;
    color: var(--dark);
}

.pr-case-card .metric-label {
    font-weight: 700;
}

.pr-cta-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
}

.pr-cta-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

/* ===== eBook services page (light theme, matches homepage) ===== */
.ebook-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .ebook-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.ebook-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 68ch;
    margin: 0 auto 10px;
}

.ebook-service-card {
    position: relative;
    border-radius: 20px;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ebook-service-card:hover {
    transform: translateY(-5px);
    border-color: #e0e4e8;
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    border: 1px solid rgba(255, 105, 0, 0.25);
}

.ebook-service-tag--popular {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ebook-service-tag--trend {
    background: #f0f7ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.ebook-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-service-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-service-card-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0 0 12px;
    flex-grow: 1;
}

.ebook-services-list-section .ebook-service-card-desc {
    margin-bottom: 0;
}

.ebook-services-list-section .section-title .sub-title {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .ebook-services-list-section .offset-lg-3 {
        margin-left: 0;
    }
}

/* ===== eBook Services â€” Process timeline ===== */
.ebook-services-page .ebook-process-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-process-section__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 70% at 92% 8%, rgba(255, 105, 0, 0.08) 0%, transparent 52%),
        radial-gradient(90% 65% at 4% 88%, rgba(0, 26, 51, 0.06) 0%, transparent 55%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 247, 247, 0) 42%, rgba(255, 105, 0, 0.04) 100%);
}

.ebook-services-page .ebook-process-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.ebook-services-page .ebook-process-section__accent--1 {
    width: min(320px, 50vw);
    height: min(320px, 50vw);
    top: -4%;
    right: 6%;
    background: rgba(255, 105, 0, 0.14);
}

.ebook-services-page .ebook-process-section__accent--2 {
    width: min(260px, 44vw);
    height: min(260px, 44vw);
    bottom: 6%;
    left: -2%;
    background: rgba(0, 38, 77, 0.07);
}

.ebook-services-page .ebook-process-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-process-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.ebook-services-page .ebook-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.ebook-services-page .ebook-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.ebook-services-page .ebook-process-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(300px, 30%);
    gap: clamp(24px, 3.5vw, 44px);
    align-items: center;
}

.ebook-services-page .ebook-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    position: relative;
}

.ebook-services-page .ebook-process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.ebook-services-page .ebook-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-process-step__track {
    display: none;
}

.ebook-services-page .ebook-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.35rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(6px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
    margin-top: clamp(12px, 2vw, 20px);
}

.ebook-services-page .ebook-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: -2.35rem auto 1rem;
    width: fit-content;
}

.ebook-services-page .ebook-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4eb 0%, #ffe8d9 100%);
    border: 1px solid rgba(255, 105, 0, 0.35);
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.15);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__num {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-process-step__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    text-align: center;
}

.ebook-services-page .ebook-process-step__desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    text-align: center;
}

.ebook-services-page .ebook-process-visual__panel {
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(10px);
}

.ebook-services-page .ebook-process-visual__flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.ebook-services-page .ebook-process-visual__chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.05);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-services-page .ebook-process-visual__chip i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.ebook-services-page .ebook-process-visual__chip--highlight {
    border-color: rgba(255, 105, 0, 0.28);
    background: linear-gradient(145deg, #fff8f3 0%, #fff 100%);
}

.ebook-services-page .ebook-process-visual__arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 105, 0, 0.55);
    font-size: 16px;
    line-height: 1;
}

/* ===== eBook Services â€” Why publishing matters ===== */
.ebook-services-page .ebook-why-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: #ffffff;
    overflow: hidden;
}

.ebook-services-page .ebook-why-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 45% at 100% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 0% 80%, rgba(0, 26, 51, 0.05) 0%, transparent 50%);
}

.ebook-services-page .ebook-why-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-why-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.ebook-services-page .ebook-why-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-why-sub {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: #64748b;
}

.ebook-services-page .ebook-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.ebook-services-page .ebook-why-card--alt {
    background: linear-gradient(145deg, #fafbfd 0%, #ffffff 100%);
}

.ebook-services-page .ebook-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 105, 0, 0.2) 100%);
    opacity: 0.85;
    transition: height 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.ebook-services-page .ebook-why-card:hover::before {
    height: 4px;
}

.ebook-services-page .ebook-why-card__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 21px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover .ebook-why-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-why-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.02rem, 1.8vw, 1.12rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.ebook-services-page .ebook-why-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #64748b;
}

@media (max-width: 1399px) {
    .ebook-services-page .ebook-process-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-process-visual {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 28px);
        max-width: 560px;
        margin: 0 auto;
        padding-left: 28px;
        border-left: 2px solid rgba(255, 105, 0, 0.22);
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step {
        position: relative;
    }

    .ebook-services-page .ebook-process-step::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 28px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px rgba(255, 105, 0, 0.35);
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }

    .ebook-services-page .ebook-process-step__card {
        text-align: left;
    }

    .ebook-services-page .ebook-process-step__node {
        flex-direction: row;
        margin: -2rem auto 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .ebook-services-page .ebook-process-step__title,
    .ebook-services-page .ebook-process-step__desc {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-process-step__card,
    .ebook-services-page .ebook-process-step__icon,
    .ebook-services-page .ebook-process-step__num,
    .ebook-services-page .ebook-why-card,
    .ebook-services-page .ebook-why-card__icon,
    .ebook-services-page .ebook-why-card::before {
        transition: none;
    }

    .ebook-services-page .ebook-process-step__card:hover,
    .ebook-services-page .ebook-why-card:hover {
        transform: none;
    }
}

/* ===== eBook Services â€” Audience section ===== */
.ebook-services-page .ebook-audience-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-audience-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
}

.ebook-services-page .ebook-audience-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.45;
    pointer-events: none;
}

.ebook-services-page .ebook-audience-section__accent--1 {
    width: min(300px, 48vw);
    height: min(300px, 48vw);
    top: 8%;
    right: -4%;
    background: rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-audience-head {
    max-width: 760px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-audience-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3.5vw, 40px);
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}

.ebook-services-page .ebook-audience-intro__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(8px);
}

.ebook-services-page .ebook-audience-intro__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-intro__text {
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.72;
    color: #4a5565;
}

.ebook-services-page .ebook-audience-kw {
    font-weight: 800;
    color: var(--dark);
    background: linear-gradient(180deg, transparent 62%, rgba(255, 105, 0, 0.18) 62%);
    padding: 0 1px;
}

.ebook-services-page .ebook-audience-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
}

.ebook-services-page .ebook-audience-item {
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-audience-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    padding: clamp(1.1rem, 2vw, 1.25rem);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 0, 0.22);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-services-page .ebook-audience-card__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 11px;
}

.ebook-services-page .ebook-audience-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 17px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover .ebook-audience-card__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.15);
}

.ebook-services-page .ebook-audience-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark);
}

/* ===== eBook Services â€” FAQ accordion ===== */
.ebook-services-page .ebook-faq-section {
    padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 96px);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
}

.ebook-services-page .ebook-faq-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-faq-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item {
    margin: 0;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.08);
}

.ebook-services-page .ebook-faq-accordion .accordion-header {
    margin: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    border: 0;
    transition: color 0.25s ease, background 0.25s ease;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.ebook-services-page .ebook-faq-accordion .accordion-button::after {
    display: none;
}

.ebook-services-page .ebook-faq-item__q {
    flex: 1;
    text-align: left;
}

.ebook-services-page .ebook-faq-item__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 26, 51, 0.08);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, background 0.25s ease, opacity 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle {
    background: rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.25);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    background: var(--primary);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:hover .ebook-faq-item__toggle {
    border-color: rgba(255, 105, 0, 0.3);
}

.ebook-services-page .ebook-faq-accordion .accordion-body,
.ebook-services-page .ebook-faq-item__a {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.ebook-services-page .ebook-faq-accordion .accordion-collapse {
    transition: height 0.32s ease;
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-audience-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-audience-card,
    .ebook-services-page .ebook-audience-card__icon,
    .ebook-services-page .ebook-faq-accordion .ebook-faq-item,
    .ebook-services-page .ebook-faq-item__toggle,
    .ebook-services-page .ebook-faq-item__toggle::before,
    .ebook-services-page .ebook-faq-item__toggle::after {
        transition: none;
    }

    .ebook-services-page .ebook-audience-card:hover {
        transform: none;
    }
}

.ebook-service-seo {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0 0 16px;
}

.ebook-service-cta {
    align-self: flex-start;
    margin-top: auto;
}

.ebook-process-card {
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.ebook-process-num {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.ebook-process-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-process-desc {
    font-size: 14px;
    font-weight: 600;
    color: #4a5565;
    margin: 0;
    line-height: 1.65;
}

.ebook-benefit-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.ebook-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-benefit-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.35;
}

.ebook-benefit-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0;
}

.ebook-use-case-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 560px;
}

.ebook-use-case-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ebook-use-case-list li:last-child {
    margin-bottom: 0;
}

.ebook-use-case-list .fa-check {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.ebook-cta-strip {
    padding: 2.5rem 0;
}

.ebook-cta-inner {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.ebook-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.ebook-cta-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
}

.ebook-cta-btn {
    padding: 14px 26px;
    font-weight: 900;
}

.ebook-cta-btn-outline {
    padding: 12px 24px;
    font-weight: 800;
}

.ebook-seo-section {
    padding: 1.5rem 0 3rem;
    border-top: 1px solid #eef0f2;
}

.ebook-seo-boost {
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== Conference services page (light theme, matches homepage) ===== */
.conference-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .conference-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.conference-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.78;
    max-width: 65ch;
    margin: 0 auto 10px;
}

.conference-svc-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.conference-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.conference-svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.conference-svc-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 10px;
}

.conference-svc-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conference-svc-btn {
    margin-top: auto;
    align-self: flex-start;
}

.conference-services-page .conference-step-card {
    border-radius: 20px;
    padding: 22px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-services-page .conference-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.conference-step-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.conference-services-page .conference-step-card h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
}

.conference-services-page .conference-step-card p {
    color: #4a5565;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.conference-services-page .conference-benefit-card {
    border-radius: 20px;
    padding: 22px 20px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-services-page .conference-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.conference-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.conference-services-page .conference-benefit-card h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
}

.conference-services-page .conference-benefit-card p {
    color: #4a5565;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.conference-cta-panel {
    border-radius: 20px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.conference-cta-title {
    color: var(--dark);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 900;
    margin: 0;
}

/* ===== Market Your Research page ===== */
.market-your-research-page {
    --myr-section-pad-y: clamp(56px, 7vw, 96px);
    --myr-card-pad-block: 24px;
    --myr-card-pad-inline: 22px;
    --myr-radius-card: 18px;
    --myr-shadow-soft: 0 12px 32px rgba(0, 26, 51, 0.07);
    --myr-shadow-hover: 0 20px 44px rgba(0, 26, 51, 0.12);
    --myr-ease: cubic-bezier(0.34, 1.25, 0.64, 1);
    --myr-transition: 0.26s var(--myr-ease);
}

/* MYR — academic impact / trust section */
.market-your-research-page .myr-impact-section {
    position: relative;
    padding: var(--myr-section-pad-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 32%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-impact-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 58% 48% at 12% 18%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 52% 42% at 88% 78%, rgba(59, 130, 246, 0.06) 0%, transparent 52%);
    pointer-events: none;
}

.market-your-research-page .myr-impact-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-impact-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-impact-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-impact-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-impact-sub {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-impact-card {
    --myr-impact-accent: var(--primary);
    --myr-impact-soft: rgba(255, 105, 0, 0.12);
    --myr-impact-gradient: linear-gradient(165deg, #fff8f2 0%, rgba(255, 255, 255, 0.92) 58%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: var(--myr-impact-gradient);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: var(--myr-shadow-soft);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-impact-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, var(--myr-impact-soft) 0%, transparent 68%);
    pointer-events: none;
}

.market-your-research-page .myr-impact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--myr-shadow-hover);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-impact-card--researchers {
    --myr-impact-accent: #ff6900;
    --myr-impact-soft: rgba(255, 105, 0, 0.16);
    --myr-impact-gradient: linear-gradient(165deg, #fff8f2 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--promotions {
    --myr-impact-accent: #6366f1;
    --myr-impact-soft: rgba(99, 102, 241, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #eef2ff 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--reach {
    --myr-impact-accent: #0d9488;
    --myr-impact-soft: rgba(13, 148, 136, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #ecfdf5 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--visibility {
    --myr-impact-accent: #2563eb;
    --myr-impact-soft: rgba(37, 99, 235, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #eff6ff 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--myr-impact-accent);
    font-size: 20px;
    box-shadow: 0 6px 18px var(--myr-impact-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-impact-card:hover .myr-impact-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-impact-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-impact-card__desc {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .pr-hero-actions {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .market-your-research-page .myr-impact-card__title {
        font-size: 1.05rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-impact-card,
    .market-your-research-page .myr-impact-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-impact-card:hover,
    .market-your-research-page .myr-impact-card:hover .myr-impact-card__icon {
        transform: none;
    }
}

.market-your-research-page .myr-hero-section {
    position: relative;
    overflow: hidden;
    padding-top: clamp(120px, 12vw, 168px);
    padding-bottom: clamp(72px, 9vw, 112px);
    background: linear-gradient(165deg, #f4f8fd 0%, #eef4fb 42%, #f8fafc 100%);
    box-shadow: 0 28px 56px rgba(0, 26, 51, 0.07);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 12% 18%, rgba(59, 130, 246, 0.11), transparent 55%),
        radial-gradient(circle at 88% 22%, rgba(255, 105, 0, 0.12), transparent 42%),
        radial-gradient(circle at 70% 88%, rgba(14, 165, 233, 0.08), transparent 45%);
}

.market-your-research-page .myr-hero-bg::before,
.market-your-research-page .myr-hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.85;
}

.market-your-research-page .myr-hero-bg::before {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    left: -8%;
    top: 18%;
    background: rgba(96, 165, 250, 0.22);
}

.market-your-research-page .myr-hero-bg::after {
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    right: -6%;
    bottom: 8%;
    background: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.06);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 1.4vw, 14px);
}

.market-your-research-page .myr-hero-kicker i {
    color: var(--primary);
    font-size: 13px;
}

.market-your-research-page .myr-hero-cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 clamp(14px, 1.8vw, 18px);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.22);
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.market-your-research-page .myr-hero-cred-badge i {
    font-size: 12px;
    color: #0d9488;
}

.market-your-research-page .myr-hero-kw {
    color: var(--primary);
    font-weight: 800;
}

.market-your-research-page .myr-hero-title {
    font-size: clamp(2.05rem, 4.8vw, 2.55rem);
    line-height: 1.12;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: clamp(18px, 2.2vw, 26px);
     
}

 
.market-your-research-page .myr-hero-highlight {
    color: var(--primary);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .market-your-research-page .myr-hero-highlight {
        background: linear-gradient(120deg, var(--primary) 0%, #ff8534 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.market-your-research-page .myr-hero-subtitle {
    max-width: 36rem;
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    line-height: 1.62;
    color: #3d4a5c;
    margin-bottom: clamp(12px, 1.6vw, 16px);
    font-weight: 500;
}

.market-your-research-page .myr-hero-supporting {
    max-width: 32rem;
    font-size: clamp(0.88rem, 1.35vw, 0.97rem);
    line-height: 1.65;
    color: #64748b;
    margin-bottom: clamp(26px, 3.2vw, 34px);
    font-weight: 500;
}

.market-your-research-page .myr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.market-your-research-page .myr-hero-btn-primary {
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.market-your-research-page .myr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.42);
    filter: brightness(1.03);
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

.market-your-research-page .myr-hero-btn-secondary {
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65) !important;
    color: var(--dark) !important;
    border: 2px solid rgba(0, 26, 51, 0.14) !important;
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.market-your-research-page .myr-hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--dark) !important;
    box-shadow: 0 10px 26px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-hero-cta-note {
    margin: clamp(12px, 1.6vw, 16px) 0 clamp(22px, 2.8vw, 28px);
    max-width: 36rem;
    font-size: clamp(0.86rem, 1.25vw, 0.95rem);
    line-height: 1.58;
    font-weight: 600;
    color: #64748b;
}

.market-your-research-page .myr-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.market-your-research-page .myr-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 26, 51, 0.07);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.market-your-research-page .myr-trust-badge i {
    color: #0d9488;
    flex-shrink: 0;
}

.market-your-research-page .myr-trust-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-bottom: clamp(22px, 2.8vw, 30px);
    padding-top: 4px;
}

.market-your-research-page .myr-trust-platforms-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.market-your-research-page .myr-trust-platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.market-your-research-page .myr-platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--dark);
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-platform-icon abbr {
    text-decoration: none;
    border: 0;
    cursor: default;
}

.market-your-research-page .myr-platform-icon-in {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 13px;
}

.market-your-research-page .myr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 1200px) {
    .market-your-research-page .myr-hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.market-your-research-page .myr-stat-item {
    min-width: 0;
    border: 1px solid rgba(0, 26, 51, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    padding: 14px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-your-research-page .myr-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-stat-item strong {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-stat-item .myr-stat-em {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.market-your-research-page .myr-stat-item span {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 4px;
}

/* Hero visual â€” dashboard mockup */
.market-your-research-page .myr-hero-visual-wrap {
    position: relative;
    padding: clamp(8px, 2vw, 20px) 0;
}

.market-your-research-page .myr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}

.market-your-research-page .myr-hero-blob--1 {
    width: min(280px, 70%);
    height: min(280px, 50vw);
    right: 6%;
    top: -4%;
    background: rgba(59, 130, 246, 0.2);
    animation: myrHeroFloatA 9s ease-in-out infinite;
}

.market-your-research-page .myr-hero-blob--2 {
    width: min(220px, 55%);
    height: min(220px, 45vw);
    left: 4%;
    bottom: 6%;
    background: rgba(255, 105, 0, 0.16);
    animation: myrHeroFloatB 11s ease-in-out infinite;
}

@keyframes myrHeroFloatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8px, 12px) scale(1.04); }
}

@keyframes myrHeroFloatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-hero-blob--1,
    .market-your-research-page .myr-hero-blob--2 {
        animation: none;
    }
    .market-your-research-page .myr-dash-bar {
        animation: none !important;
    }
    .market-your-research-page .myr-dash-float {
        animation: none !important;
    }
    .market-your-research-page .myr-hero-btn-primary:hover,
    .market-your-research-page .myr-hero-btn-secondary:hover {
        transform: none;
    }
}

.market-your-research-page .myr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 24px;
    border: 1px solid rgba(0, 26, 51, 0.08);
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 24px 56px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    padding: clamp(18px, 2.8vw, 26px);
    overflow: visible;
}

.market-your-research-page .myr-hero-visual--dashboard {
    min-height: 320px;
}

.market-your-research-page .myr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.market-your-research-page .myr-dash-window-dots {
    display: flex;
    gap: 6px;
}

.market-your-research-page .myr-dash-window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
}

.market-your-research-page .myr-dash-window-dots span:nth-child(1) { background: #fda4af; }
.market-your-research-page .myr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
.market-your-research-page .myr-dash-window-dots span:nth-child(3) { background: #86efac; }

.market-your-research-page .myr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 105, 0, 0.1);
    color: var(--dark);
}

.market-your-research-page .myr-dash-badge i {
    color: var(--primary);
}

.market-your-research-page .myr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--myr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: myrBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--myr-d, 0s);
}

.market-your-research-page .myr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes myrBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

.market-your-research-page .myr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

.market-your-research-page .myr-dash-spark {
    display: block;
    width: 100%;
    height: 48px;
}

.market-your-research-page .myr-dash-metrics {
    display: flex;
    gap: 12px;
}

.market-your-research-page .myr-dash-metric {
    flex: 1;
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8ecf1;
}

.market-your-research-page .myr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.market-your-research-page .myr-dash-metric-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #15803d;
}

.market-your-research-page .myr-dash-float {
    position: absolute;
    right: -6px;
    top: 42%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.14);
    animation: myrDashFloat 5s ease-in-out infinite;
}

.market-your-research-page .myr-dash-float i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 16px;
}

.market-your-research-page .myr-dash-float strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-dash-float span {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

@keyframes myrDashFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 575px) {
    .market-your-research-page .myr-dash-float {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 14px;
        animation: none;
    }
}

.market-your-research-page .myr-hero-visual img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* MYR â€” problem / comparison section (premium) */
.market-your-research-page .myr-problem-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 38%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-problem-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 8% 15%, rgba(59, 130, 246, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 92% 85%, rgba(255, 105, 0, 0.06) 0%, transparent 52%);
    pointer-events: none;
}

.market-your-research-page .myr-problem-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-problem-top {
    margin-bottom: clamp(40px, 5vw, 56px);
}

.market-your-research-page .myr-problem-heading {
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 clamp(16px, 2vw, 20px);
    max-width: 22ch;
}

.market-your-research-page .myr-problem-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.market-your-research-page .myr-problem-lead {
    font-size: clamp(1rem, 1.65vw, 1.08rem);
    line-height: 1.65;
    font-weight: 600;
    color: #334155;
    margin: 0 0 0.75rem;
    max-width: 42rem;
}

.market-your-research-page .myr-problem-desc {
    font-size: clamp(0.94rem, 1.4vw, 1rem);
    line-height: 1.68;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 1.25rem;
    max-width: 42rem;
}

.market-your-research-page .myr-problem-struggles-label {
    margin: 0 0 0.65rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
}

.market-your-research-page .myr-problem-struggles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.market-your-research-page .myr-problem-struggles-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.55;
    color: #475569;
}

.market-your-research-page .myr-problem-struggles-list li i {
    flex-shrink: 0;
    margin-top: 0.45em;
    font-size: 6px;
    color: var(--primary);
}

.market-your-research-page .myr-problem-visual {
    position: relative;
}

.market-your-research-page .myr-problem-visual__glow {
    position: absolute;
    inset: 8% 4% 6% 8%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.16) 0%, transparent 68%);
    filter: blur(22px);
    pointer-events: none;
}

.market-your-research-page .myr-problem-visual__panel {
    position: relative;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 26, 51, 0.06), 0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.market-your-research-page .myr-problem-visual:hover .myr-problem-visual__panel {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 26, 51, 0.08), 0 28px 64px rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-problem-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.market-your-research-page .myr-problem-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-problem-visual__badge i {
    color: var(--primary);
}

.market-your-research-page .myr-problem-visual__dots {
    display: flex;
    gap: 5px;
}

.market-your-research-page .myr-problem-visual__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.market-your-research-page .myr-problem-visual__dots span:nth-child(1) { background: #fda4af; }
.market-your-research-page .myr-problem-visual__dots span:nth-child(2) { background: #fcd34d; }
.market-your-research-page .myr-problem-visual__dots span:nth-child(3) { background: #86efac; }

.market-your-research-page .myr-problem-visual__chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-problem-visual__bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--myr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: myrBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.market-your-research-page .myr-problem-visual__bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 18px rgba(255, 105, 0, 0.3);
}

.market-your-research-page .myr-problem-visual__bar--peak {
    background: linear-gradient(180deg, #34d399 0%, #059669 100%);
    box-shadow: 0 0 18px rgba(5, 150, 105, 0.25);
}

@keyframes myrBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

.market-your-research-page .myr-problem-visual__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.market-your-research-page .myr-problem-visual__metric {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-problem-visual__metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

.market-your-research-page .myr-problem-visual__metric-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.market-your-research-page .myr-problem-visual__float {
    position: absolute;
    bottom: 18px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-problem-visual__float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 14px;
}

.market-your-research-page .myr-problem-visual__float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-problem-visual__float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

.market-your-research-page .myr-problem-compare {
    margin-bottom: clamp(32px, 4vw, 44px);
}

.market-your-research-page .myr-problem-compare__head {
    margin-bottom: clamp(24px, 3.5vw, 32px);
}

.market-your-research-page .myr-problem-compare__title {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-problem-closing {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 12px 36px rgba(255, 105, 0, 0.1);
}

.market-your-research-page .myr-problem-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-problem-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR â€” services section (premium cards) */
.market-your-research-page .myr-services-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
    overflow: hidden;
}

.market-your-research-page .myr-services-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 12% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 88% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.market-your-research-page .myr-services-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-services-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-services-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.market-your-research-page .myr-services-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-services-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-svc-card {
    --myr-svc-accent: var(--primary);
    --myr-svc-accent-soft: rgba(255, 105, 0, 0.12);
    --myr-svc-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    --myr-svc-icon-border: rgba(255, 105, 0, 0.28);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-svc-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-svc-accent) 0%, transparent 100%);
    opacity: 0.95;
    transition: height 0.32s ease;
}

.market-your-research-page .myr-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-svc-card:hover .myr-svc-card__accent {
    height: 5px;
}

.market-your-research-page .myr-svc-card--bio {
    --myr-svc-accent: #ff6900;
    --myr-svc-accent-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-svc-card--social {
    --myr-svc-accent: #6366f1;
    --myr-svc-accent-soft: rgba(99, 102, 241, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
    --myr-svc-icon-border: rgba(99, 102, 241, 0.28);
}

.market-your-research-page .myr-svc-card--youtube {
    --myr-svc-accent: #dc2626;
    --myr-svc-accent-soft: rgba(220, 38, 38, 0.12);
    --myr-svc-icon-bg: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
    --myr-svc-icon-border: rgba(220, 38, 38, 0.25);
}

.market-your-research-page .myr-svc-card--pr {
    --myr-svc-accent: #0d9488;
    --myr-svc-accent-soft: rgba(13, 148, 136, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    --myr-svc-icon-border: rgba(13, 148, 136, 0.28);
}

.market-your-research-page .myr-svc-card--profile {
    --myr-svc-accent: #2563eb;
    --myr-svc-accent-soft: rgba(37, 99, 235, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    --myr-svc-icon-border: rgba(37, 99, 235, 0.28);
}

.market-your-research-page .myr-svc-card--discover {
    --myr-svc-accent: #7c3aed;
    --myr-svc-accent-soft: rgba(124, 58, 237, 0.14);
    --myr-svc-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
    --myr-svc-icon-border: rgba(124, 58, 237, 0.28);
}

.market-your-research-page .myr-svc-card__header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.market-your-research-page .myr-svc-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--myr-svc-icon-bg);
    border: 1px solid var(--myr-svc-icon-border);
    color: var(--myr-svc-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-svc-accent-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-svc-card:hover .myr-svc-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-svc-card__title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-svc-card__lead {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-svc-card__includes {
    margin-bottom: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-svc-card__label {
    margin: 0 0 0.55rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--myr-svc-accent);
}

.market-your-research-page .myr-svc-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.market-your-research-page .myr-svc-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #475569;
}

.market-your-research-page .myr-svc-card__list li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--myr-svc-accent-soft);
    color: var(--myr-svc-accent);
    font-size: 10px;
}

.market-your-research-page .myr-svc-card__ideal {
    margin-top: auto;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(0, 26, 51, 0.12);
    transition: border-color 0.32s ease, background 0.32s ease;
}

.market-your-research-page .myr-svc-card:hover .myr-svc-card__ideal {
    border-color: var(--myr-svc-accent-soft);
    background: rgba(255, 255, 255, 0.95);
}

.market-your-research-page .myr-svc-card__ideal-label {
    margin: 0 0 0.35rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.market-your-research-page .myr-svc-card__ideal-label i {
    color: var(--myr-svc-accent);
    font-size: 12px;
}

.market-your-research-page .myr-svc-card__ideal-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.55;
    color: #334155;
}

@media (max-width: 991px) {
    .market-your-research-page .myr-problem-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .market-your-research-page .myr-problem-visual__float {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-problem-visual__bar,
    .market-your-research-page .myr-problem-visual__panel,
    .market-your-research-page .myr-svc-card,
    .market-your-research-page .myr-svc-card__icon {
        animation: none;
        transition: none;
    }

    .market-your-research-page .myr-problem-visual:hover .myr-problem-visual__panel,
    .market-your-research-page .myr-svc-card:hover,
    .market-your-research-page .myr-svc-card:hover .myr-svc-card__icon {
        transform: none;
    }
}

.market-your-research-page .myr-compare-card {
    border: 1px solid #eef1f5;
    border-radius: var(--myr-radius-card);
    padding: clamp(1.25rem, 2.5vw, 1.65rem);
    background: #fff;
    backdrop-filter: blur(8px);
    transition: transform var(--myr-transition), box-shadow var(--myr-transition), border-color var(--myr-transition);
}

.market-your-research-page .myr-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--myr-shadow-hover);
    border-color: rgba(255, 105, 0, 0.15);
}

.market-your-research-page .myr-compare-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.market-your-research-page .myr-compare-card-before .myr-compare-label {
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.market-your-research-page .myr-compare-card-after .myr-compare-label {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.market-your-research-page .myr-compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-your-research-page .myr-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    line-height: 1.45;
}

.market-your-research-page .myr-compare-list li:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-compare-list li > i {
    flex-shrink: 0;
    width: 1.1em;
    margin-top: 2px;
    text-align: center;
}

.market-your-research-page .myr-compare-card-before .myr-compare-list li > i {
    color: #ea580c;
    font-size: 13px;
}

.market-your-research-page .myr-compare-card-after .myr-compare-list li > i {
    color: #16a34a;
    font-size: 13px;
}

.market-your-research-page .myr-compare-card-before {
    background: linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.market-your-research-page .myr-compare-card-after {
    background: linear-gradient(180deg, #fafffd 0%, #ffffff 100%);
}

.market-your-research-page .myr-results-section,
.market-your-research-page .myr-process-section,
.market-your-research-page .myr-ecosystem-section,
.market-your-research-page .myr-authority-section,
.market-your-research-page .myr-platforms-section,
.market-your-research-page .myr-testimonials-section,
.market-your-research-page .myr-vs-section,
.market-your-research-page .myr-pricing-section,
.market-your-research-page .myr-why-section,
.market-your-research-page .myr-faq-section,
.market-your-research-page .myr-audit-section {
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
}

/* MYR — comparison section (premium) */
.market-your-research-page .myr-vs-section {
    position: relative;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-vs-section__bg,
.market-your-research-page .myr-vs-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-vs-section__bg {
    background:
        radial-gradient(ellipse 55% 48% at 8% 12%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 92% 88%, rgba(148, 163, 184, 0.06) 0%, transparent 52%);
}

.market-your-research-page .myr-vs-section__mesh {
    opacity: 0.32;
    background-image: radial-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.market-your-research-page .myr-vs-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-vs-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.market-your-research-page .myr-vs-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-vs-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-vs-head .myr-vs-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-vs-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-vs-card {
    --myr-vs-accent: var(--primary);
    --myr-vs-soft: rgba(255, 105, 0, 0.12);
    --myr-vs-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-vs-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-vs-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-vs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
}

.market-your-research-page .myr-vs-card:hover .myr-vs-card__accent {
    height: 5px;
}

.market-your-research-page .myr-vs-card--scopus {
    --myr-vs-accent: #0d9488;
    --myr-vs-soft: rgba(13, 148, 136, 0.14);
    --myr-vs-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(13, 148, 136, 0.22);
}

.market-your-research-page .myr-vs-card--scopus:hover {
    border-color: rgba(13, 148, 136, 0.38);
    box-shadow: 0 20px 48px rgba(13, 148, 136, 0.12);
}

.market-your-research-page .myr-vs-card--generic {
    --myr-vs-accent: #94a3b8;
    --myr-vs-soft: rgba(148, 163, 184, 0.16);
    --myr-vs-icon-bg: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(148, 163, 184, 0.35);
}

.market-your-research-page .myr-vs-card--generic:hover {
    border-color: rgba(148, 163, 184, 0.5);
}

.market-your-research-page .myr-vs-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.market-your-research-page .myr-vs-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--myr-vs-icon-bg);
    border: 1px solid var(--myr-vs-soft);
    color: var(--myr-vs-accent);
    font-size: 20px;
    box-shadow: 0 6px 18px var(--myr-vs-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-vs-card:hover .myr-vs-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-vs-card__title {
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-vs-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.market-your-research-page .myr-vs-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
}

.market-your-research-page .myr-vs-card__list li:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-vs-card__list li i {
    flex-shrink: 0;
    width: 20px;
    margin-top: 3px;
    text-align: center;
    font-size: 12px;
}

.market-your-research-page .myr-vs-card--scopus .myr-vs-card__list li i {
    color: #0d9488;
}

.market-your-research-page .myr-vs-card--generic .myr-vs-card__list li i {
    color: #94a3b8;
}

.market-your-research-page .myr-vs-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.7) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-left: 4px solid #0d9488;
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-vs-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-vs-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR — pricing section (premium) */
.market-your-research-page .myr-pricing-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-pricing-section__bg,
.market-your-research-page .myr-pricing-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-pricing-section__bg {
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
}

.market-your-research-page .myr-pricing-section__mesh {
    opacity: 0.28;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.market-your-research-page .myr-pricing-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-pricing-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.market-your-research-page .myr-pricing-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-pricing-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-pricing-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-pricing-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-price-card {
    --myr-price-accent: var(--primary);
    --myr-price-soft: rgba(255, 105, 0, 0.12);
    --myr-price-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-price-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-price-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.market-your-research-page .myr-price-card:hover .myr-price-card__accent {
    height: 5px;
}

.market-your-research-page .myr-price-card--basic {
    --myr-price-accent: #64748b;
    --myr-price-soft: rgba(100, 116, 139, 0.14);
    --myr-price-icon-bg: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

.market-your-research-page .myr-price-card--standard {
    --myr-price-accent: #2563eb;
    --myr-price-soft: rgba(37, 99, 235, 0.14);
    --myr-price-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-price-card--premium {
    --myr-price-accent: #ff6900;
    --myr-price-soft: rgba(255, 105, 0, 0.16);
}

.market-your-research-page .myr-price-card--popular {
    border-color: rgba(37, 99, 235, 0.28);
    background: linear-gradient(165deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.12),
        0 10px 32px rgba(0, 26, 51, 0.06);
    transform: scale(1.02);
}

.market-your-research-page .myr-price-card--popular:hover {
    transform: scale(1.02) translateY(-6px);
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow:
        0 22px 52px rgba(37, 99, 235, 0.16),
        0 12px 36px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-price-card--recommended {
    border-color: rgba(255, 105, 0, 0.32);
    background: linear-gradient(165deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    box-shadow:
        0 14px 40px rgba(255, 105, 0, 0.1),
        0 10px 32px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-price-card--recommended:hover {
    border-color: rgba(255, 105, 0, 0.45);
    box-shadow:
        0 22px 52px rgba(255, 105, 0, 0.14),
        0 12px 36px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.market-your-research-page .myr-price-badge--popular {
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
}

.market-your-research-page .myr-price-badge--recommended {
    border: 1px solid rgba(255, 105, 0, 0.35);
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
}

.market-your-research-page .myr-price-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-price-icon-bg);
    border: 1px solid var(--myr-price-soft);
    color: var(--myr-price-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-price-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-price-card:hover .myr-price-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-price-card--popular .myr-price-card__title,
.market-your-research-page .myr-price-card--recommended .myr-price-card__title {
    padding-right: clamp(5rem, 28%, 8.5rem);
}

.market-your-research-page .myr-price-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 1.8vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-price-card__lead {
    margin: 0 0 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-price-card__includes {
    flex-grow: 1;
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(241, 245, 249, 0.55);
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-price-card__label {
    margin: 0 0 0.65rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-price-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-your-research-page .myr-price-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: #475569;
}

.market-your-research-page .myr-price-card__list li:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-price-card__list li i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 4px;
    text-align: center;
    font-size: 11px;
    color: #0d9488;
}

.market-your-research-page .myr-price-card__cta {
    margin-top: auto;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.market-your-research-page .myr-price-card__cta:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .market-your-research-page .myr-price-card--popular {
        transform: none;
    }

    .market-your-research-page .myr-price-card--popular:hover {
        transform: translateY(-6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-vs-card,
    .market-your-research-page .myr-vs-card__icon,
    .market-your-research-page .myr-price-card,
    .market-your-research-page .myr-price-card__icon,
    .market-your-research-page .myr-price-card__cta {
        transition: none;
    }

    .market-your-research-page .myr-vs-card:hover,
    .market-your-research-page .myr-vs-card:hover .myr-vs-card__icon,
    .market-your-research-page .myr-price-card:hover,
    .market-your-research-page .myr-price-card--popular,
    .market-your-research-page .myr-price-card--popular:hover,
    .market-your-research-page .myr-price-card:hover .myr-price-card__icon,
    .market-your-research-page .myr-price-card__cta:hover {
        transform: none;
    }
}

/* MYR — process section (premium timeline) */
.market-your-research-page .myr-process-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-process-section__bg,
.market-your-research-page .myr-process-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-process-section__bg {
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.market-your-research-page .myr-process-section__mesh {
    opacity: 0.4;
    background-image: radial-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.market-your-research-page .myr-process-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-process-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.market-your-research-page .myr-process-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-process-intro {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-process-desc {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.market-your-research-page .myr-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
    position: relative;
}

.market-your-research-page .myr-process-timeline::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.market-your-research-page .myr-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.market-your-research-page .myr-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.1rem, 2vw, 1.35rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.market-your-research-page .myr-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.market-your-research-page .myr-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.market-your-research-page .myr-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--primary) 0%, #ff8534 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.35);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-process-step__card:hover .myr-process-step__num {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.42);
}

.market-your-research-page .myr-process-step__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-process-step__card:hover .myr-process-step__icon {
    transform: scale(1.08);
}

.market-your-research-page .myr-process-step__title {
    margin: 0 0 0.55rem;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
    text-align: center;
}

.market-your-research-page .myr-process-step__text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
}

.market-your-research-page .myr-process-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-process-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-process-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR â€” ecosystem section */
.market-your-research-page .myr-ecosystem-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 42%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-ecosystem-section__bg,
.market-your-research-page .myr-ecosystem-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-ecosystem-section__bg {
    background:
        radial-gradient(ellipse 60% 45% at 15% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 85% 80%, rgba(255, 105, 0, 0.05) 0%, transparent 52%);
}

.market-your-research-page .myr-ecosystem-section__mesh {
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.market-your-research-page .myr-ecosystem-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-ecosystem-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-ecosystem-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-ecosystem-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-ecosystem-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-ecosystem-intro {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-ecosystem-desc {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.market-your-research-page .myr-eco-card {
    --myr-eco-accent: var(--primary);
    --myr-eco-soft: rgba(255, 105, 0, 0.12);
    --myr-eco-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-eco-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-eco-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-eco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-eco-card:hover .myr-eco-card__accent {
    height: 5px;
}

.market-your-research-page .myr-eco-card--visibility {
    --myr-eco-accent: #ff6900;
    --myr-eco-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-eco-card--authority {
    --myr-eco-accent: #0d9488;
    --myr-eco-soft: rgba(13, 148, 136, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-eco-card--reach {
    --myr-eco-accent: #6366f1;
    --myr-eco-soft: rgba(99, 102, 241, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
}

.market-your-research-page .myr-eco-card--engagement {
    --myr-eco-accent: #2563eb;
    --myr-eco-soft: rgba(37, 99, 235, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-eco-card--citation {
    --myr-eco-accent: #7c3aed;
    --myr-eco-soft: rgba(124, 58, 237, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.market-your-research-page .myr-eco-card--presence {
    --myr-eco-accent: #059669;
    --myr-eco-soft: rgba(5, 150, 105, 0.14);
    --myr-eco-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-eco-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-eco-icon-bg);
    border: 1px solid var(--myr-eco-soft);
    color: var(--myr-eco-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-eco-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-eco-card:hover .myr-eco-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-eco-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-eco-card__text {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-ecosystem-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 248, 242, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 36px rgba(255, 105, 0, 0.08);
}

.market-your-research-page .myr-ecosystem-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-ecosystem-closing strong {
    color: var(--dark);
    font-weight: 800;
}

@media (max-width: 1199px) {
    .market-your-research-page .myr-process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .market-your-research-page .myr-process-timeline::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .market-your-research-page .myr-process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 1.25rem;
        border-left: 2px solid rgba(255, 105, 0, 0.25);
    }

    .market-your-research-page .myr-process-step__card {
        text-align: left;
    }

    .market-your-research-page .myr-process-step__node {
        flex-direction: row;
        justify-content: flex-start;
    }

    .market-your-research-page .myr-process-step__title,
    .market-your-research-page .myr-process-step__text {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-process-step__card,
    .market-your-research-page .myr-process-step__icon,
    .market-your-research-page .myr-process-step__num,
    .market-your-research-page .myr-eco-card,
    .market-your-research-page .myr-eco-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-process-step__card:hover,
    .market-your-research-page .myr-process-step__card:hover .myr-process-step__icon,
    .market-your-research-page .myr-process-step__card:hover .myr-process-step__num,
    .market-your-research-page .myr-eco-card:hover,
    .market-your-research-page .myr-eco-card:hover .myr-eco-card__icon {
        transform: none;
    }
}

/* MYR â€” authority / why choose section */
.market-your-research-page .myr-authority-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(135deg, #f5f8fc 0%, #fafbfc 42%, #f0f4fa 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-authority-section__bg,
.market-your-research-page .myr-authority-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-authority-section__bg {
    background:
        radial-gradient(ellipse 55% 48% at 10% 20%, rgba(255, 105, 0, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 52%);
}

.market-your-research-page .myr-authority-section__mesh {
    opacity: 0.35;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.market-your-research-page .myr-authority-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-authority-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-authority-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-authority-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-authority-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-authority-intro {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-auth-card {
    --myr-auth-accent: var(--primary);
    --myr-auth-soft: rgba(255, 105, 0, 0.12);
    --myr-auth-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-auth-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-auth-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-auth-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.market-your-research-page .myr-auth-card:hover .myr-auth-card__accent {
    height: 5px;
}

.market-your-research-page .myr-auth-card--comm {
    --myr-auth-accent: #ff6900;
    --myr-auth-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-auth-card--ethical {
    --myr-auth-accent: #059669;
    --myr-auth-soft: rgba(5, 150, 105, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-auth-card--position {
    --myr-auth-accent: #2563eb;
    --myr-auth-soft: rgba(37, 99, 235, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-auth-card--human {
    --myr-auth-accent: #6366f1;
    --myr-auth-soft: rgba(99, 102, 241, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
}

.market-your-research-page .myr-auth-card--workflow {
    --myr-auth-accent: #0d9488;
    --myr-auth-soft: rgba(13, 148, 136, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-auth-card--longterm {
    --myr-auth-accent: #7c3aed;
    --myr-auth-soft: rgba(124, 58, 237, 0.14);
    --myr-auth-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.market-your-research-page .myr-auth-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-auth-icon-bg);
    border: 1px solid var(--myr-auth-soft);
    color: var(--myr-auth-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-auth-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-auth-card:hover .myr-auth-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-auth-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.12rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-auth-card__text {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

/* MYR â€” platforms showcase */
.market-your-research-page .myr-platforms-section {
    position: relative;
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
    overflow: hidden;
}

.market-your-research-page .myr-platforms-section__bg,
.market-your-research-page .myr-platforms-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-platforms-section__bg {
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 20% 90%, rgba(255, 105, 0, 0.05) 0%, transparent 50%);
}

.market-your-research-page .myr-platforms-section__mesh {
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
}

.market-your-research-page .myr-platforms-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-platforms-head {
    max-width: 780px;
    margin: 0 auto clamp(32px, 4.5vw, 48px);
}

.market-your-research-page .myr-platforms-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-platforms-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-platforms-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-platforms-intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-plat-card {
    --myr-plat-accent: #003a70;
    --myr-plat-soft: rgba(0, 58, 112, 0.12);
    --myr-plat-bg: linear-gradient(165deg, #f8fafc 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 132px;
    padding: 1.25rem 1rem;
    border-radius: 18px;
    background: var(--myr-plat-bg);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    backdrop-filter: blur(6px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.market-your-research-page .myr-plat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
    border-color: rgba(255, 105, 0, 0.25);
}

.market-your-research-page .myr-plat-card--scholar {
    --myr-plat-accent: #4285f4;
    --myr-plat-soft: rgba(66, 133, 244, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #eff6ff 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--rg {
    --myr-plat-accent: #00d0af;
    --myr-plat-soft: rgba(0, 208, 175, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #ecfdf5 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--linkedin {
    --myr-plat-accent: #0a66c2;
    --myr-plat-soft: rgba(10, 102, 194, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #eff6ff 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--academia {
    --myr-plat-accent: #b45309;
    --myr-plat-soft: rgba(180, 83, 9, 0.12);
    --myr-plat-bg: linear-gradient(165deg, #fffbeb 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--orcid {
    --myr-plat-accent: #a6ce39;
    --myr-plat-soft: rgba(166, 206, 57, 0.18);
    --myr-plat-bg: linear-gradient(165deg, #f7fee7 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--youtube {
    --myr-plat-accent: #dc2626;
    --myr-plat-soft: rgba(220, 38, 38, 0.12);
    --myr-plat-bg: linear-gradient(165deg, #fef2f2 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--blogs {
    --myr-plat-accent: #6366f1;
    --myr-plat-soft: rgba(99, 102, 241, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #eef2ff 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card--media {
    --myr-plat-accent: #0d9488;
    --myr-plat-soft: rgba(13, 148, 136, 0.14);
    --myr-plat-bg: linear-gradient(165deg, #ecfdf5 0%, #ffffff 100%);
}

.market-your-research-page .myr-plat-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--myr-plat-soft);
    color: var(--myr-plat-accent);
    font-size: 22px;
    box-shadow: 0 6px 16px var(--myr-plat-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-plat-card:hover .myr-plat-card__icon {
    transform: scale(1.08);
}

.market-your-research-page .myr-plat-card__name {
    margin: 0;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
}

.market-your-research-page .myr-platforms-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-platforms-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-platforms-closing strong {
    color: var(--dark);
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-auth-card,
    .market-your-research-page .myr-auth-card__icon,
    .market-your-research-page .myr-plat-card,
    .market-your-research-page .myr-plat-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-auth-card:hover,
    .market-your-research-page .myr-auth-card:hover .myr-auth-card__icon,
    .market-your-research-page .myr-plat-card:hover,
    .market-your-research-page .myr-plat-card:hover .myr-plat-card__icon {
        transform: none;
    }
}


@media (max-width: 1199px) {
  .top-banner .left-col h1 {
    font-size: 46px;
  }
  .support-content-box {
    padding: 42px 32px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .home-solutions-section,
  .home-manuscripts-section,
  .sec-four,
  .sec-six,
  .perks-section,
  .publication-support-section,
  .subject-area-section,
  .why-choose-section,
  .testimonial-section,
  .steps-section,
  .call-for-papers-section,
  .faq-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .top-banner {
    padding: 138px 0 72px 0 !important;
  }

  .top-banner .left-col {
    text-align: center;
    margin-bottom: 28px;
  }

  .top-banner .left-col h1 {
    font-size: 38px;
  }

  .top-banner .btn-sec {
    justify-content: center;
  }

  .sec-four .row.align-items-center {
    row-gap: 22px;
  }

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

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

  .faq-accordion-2col {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-solutions-section,
  .home-manuscripts-section,
  .sec-four,
  .sec-six,
  .perks-section,
  .publication-support-section,
  .subject-area-section,
  .why-choose-section,
  .testimonial-section,
  .steps-section,
  .call-for-papers-section,
  .faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .top-banner {
    padding: 128px 0 58px 0 !important;
  }

  .top-banner .left-col h1 {
    font-size: 31px;
    line-height: 1.3;
  }

  .top-banner .left-col p {
    font-size: 15px;
  }

  .top-banner .btn-sec {
    flex-wrap: wrap;
    gap: 10px;
  }

  .home-solution-card,
  .custom-service-card,
  .feature-card-custom,
  .step-card {
    border-radius: 16px;
  }

  .support-content-box {
    padding: 32px 20px;
  }

  .support-content-box .title {
    font-size: 30px;
  }

  .main-title,
  .section-main-heading,
  .steps-main-title,
  .faq-title,
  .success-title {
    font-size: 30px !important;
    line-height: 1.25;
  }

  .perks-grid,
  .subject-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OFFCANVAS MOBILE DROPDOWN ===== */
.offcanvas-body .dropdown-menu { position: static !important; transform: none !important; float: none !important; box-shadow: none !important; border: none !important; padding-left: 15px !important; background-color: transparent !important; opacity: 1 !important; visibility: visible !important; transition: none !important; display: none !important; }
.offcanvas-body .dropdown-menu.show { display: block !important; }
.offcanvas-body .dropdown-menu .dropdown-item { color: var(--gray) !important; }
.offcanvas-body .dropdown-menu .dropdown-item:hover { background-color: transparent !important; color: var(--primary) !important; }

.offcanvas-body .mega-menu {
  min-width: 100%;
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 !important;
}

.offcanvas-body .mega-menu-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 8px 0 0 0;
}

.offcanvas-body .mega-col {
  background: transparent;
  border: 0;
}

.offcanvas-body .mega-title a {
  color: var(--white) !important;
}

.offcanvas-body .mega-title a:hover,
.offcanvas-body .mega-title a.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-title-plain {
  color: var(--white) !important;
}

.offcanvas-body .mega-list-conference-bullets li {
  color: var(--gray) !important;
}

.offcanvas-body .mega-menu-conferences::before {
  display: none;
}

.offcanvas-body .mega-menu-conferences {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .mega-menu-market::before {
  display: none;
}

.offcanvas-body .mega-menu-market {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.offcanvas-body .mega-list-pr-bullets li,
.offcanvas-body .mega-list-ebook-bullets li {
  color: var(--gray) !important;
}

.offcanvas-body .mega-list-pr-bullets .mega-link,
.offcanvas-body .mega-list-market-stack .mega-link {
  color: var(--gray) !important;
  text-decoration: underline !important;
}

.offcanvas-body .mega-list-pr-bullets .mega-link:hover,
.offcanvas-body .mega-list-market-stack .mega-link:hover,
.offcanvas-body .mega-list-market-stack .mega-link.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-list-callfor-links .mega-link {
  color: var(--gray) !important;
  text-decoration: underline !important;
}

.offcanvas-body .mega-menu-grid:not(.mega-menu-grid--3) article.mega-col:last-child .mega-title {
  color: var(--white) !important;
  cursor: default;
}

.offcanvas-body .mega-list-plain .mega-link {
  color: var(--gray) !important;
}

.offcanvas-body .mega-list-plain .mega-link:hover,
.offcanvas-body .mega-list-plain .mega-link.active {
  color: var(--primary) !important;
}

.offcanvas-body .mega-list li {
  color: var(--gray);
}

.offcanvas-body .mega-list li::marker {
  color: var(--gray);
}

@media (max-width: 1199px) {
  .mega-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mega-menu-grid { grid-template-columns: 1fr; }
}

/* Conferences 3-col mega: keep 2/1 columns on smaller breakpoints (wins over rules above) */
@media (max-width: 1199px) {
  .mega-menu-grid.mega-menu-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mega-menu-grid.mega-menu-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .dropdown-toggle::after { opacity: 0; }
}



.client img {
    filter: grayscale(1);
}

.client img:hover {
    filter: grayscale(0);
}

.client p {
    text-align: center;
    padding: 25px 0px 0px 0px;
    font-weight: 500;
}

.header h3 {
    margin: 0;
    font-weight: 800;
}

 

.sticky h3 {
    color: #fff;
}

.heading-color {
    color: #ff6900;
}

/* ===== Home Inspiration Sections ===== */
.home-solutions-section {
    padding-top: 20px;
    padding-bottom: 45px;
    background: var(--white);
}

.home-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-solution-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 24px 20px 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
    height: 100%;
}

.home-solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 105, 0, 0.3);
}

.home-solution-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff5ed;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
}

.home-solution-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.home-solution-card p {
    margin-bottom: 0;
    color: #4A5565;
    font-weight: 500;
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .home-solutions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .home-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-solutions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.home-manuscripts-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--bg-light);
}

.home-manuscripts-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-manuscripts-viewport {
    overflow: hidden;
    width: 100%;
}

.home-manuscripts-track {
    display: flex;
    gap: 18px;
    transition: transform 450ms ease;
    will-change: transform;
}

.home-manuscript-card {
    flex: 0 0 calc((100% - 18px) / 2);
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: stretch;
    gap: 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-manuscript-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 105, 0, 0.26);
}

.home-manuscript-image {
    width: 46%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f5f8;
    border: 1px solid #eef0f2;
}

.home-manuscript-image img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
}

/* Journal logos / wide artwork â€” avoid cropping and unstable % height */
.home-manuscript-image--contain {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.home-manuscript-image--contain img {
    width: 100%;
    height: auto;
    min-height: 0;
  
    object-fit: contain;
    object-position: center;
    padding: 12px;
    box-sizing: border-box;
}

.home-manuscript-authors {
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-manuscript-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-manuscript-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.35;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.home-manuscript-card p {
    color: #4A5565;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.7;
}

.home-manuscript-body p + p {
    margin-top: 10px;
}

.home-manuscripts-arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e7eaf0;
    background: #fff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.home-manuscripts-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.home-manuscripts-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .home-solutions-section {
        padding-top: 8px;
        padding-bottom: 35px;
    }
    .home-solution-card h3,
    .home-manuscript-card h3 {
        font-size: 18px;
    }
    .home-manuscripts-slider {
        gap: 8px;
    }
    .home-manuscripts-arrow {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .home-manuscript-card {
        flex: 0 0 100%;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }
    .home-manuscript-image {
        width: 100%;
    }
    .home-manuscript-image img {
        min-height: 160px;
    }
    .home-manuscript-image--contain img {
        min-height: 0;
        max-height: 200px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-manuscript-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .home-manuscript-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }
}







/* Card Main Container */
.custom-service-card {
    /* Lighter/pastel orange for a softer, homepage-friendly look */
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.20);
    border-radius: 15px;
    padding: 20px 25px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(255, 105, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.custom-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Typography */
.custom-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 15px;
    line-height: 1.3;
}

.custom-service-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures buttons align even with different text lengths */
}

/* Button Styling */
.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #ff7c32 !important; /* Brand Orange */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.learn-more i {
    font-size: 12px;
    margin-left: 8px;
}

.learn-more:hover {
    color: #e66a28 !important;
    letter-spacing: 0.5px;
}

.services-col
 {
    padding: 15px 0px;
}







/* Section Styles */
.publication-support-section {
    padding: 0 !important;
    background-color: #f8f9fa; /* Optional background light gray */
}

/* Main Wrapper for Rounded Corners and Shadow */
.main-wrapper {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #001e33; /* Dark Navy Background */
}

/* Image Styling */
.support-img-box {
    height: 100%;
    min-height: 400px;
}

.support-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image covers the full area */
    display: block;
}

/* Content Styling */
.support-content-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-content-box .title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-content-box .description {
    color: #b0c4d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* List Styling */
.support-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.support-list li {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.support-list li i {
    color: #ff6a00; /* Orange Checkmark */
    font-size: 18px;
    margin-right: 12px;
}

/* Button Styling */
.btn-learn-more {
    padding: 12px 35px; /* Side padding thori barha di hai image jaisa dikhne ke liye */
    display: inline-flex; /* inline-block se behtar alignment deta hai */
    align-items: center;
    justify-content: center;
    width: fit-content; /* Yeh button ko full width hone se rokega */
    font-weight: 600;
    transition: all ease-in-out 0.3s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--primary, #ff6a00);
    background: var(--primary, #ff6a00);
    color: var(--white, #ffffff);
    border-radius: 50px;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: transparent;
    color: var(--primary, #ff6a00) !important;
    border-color: var(--primary, #ff6a00);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .support-content-box {
        padding: 40px 30px;
    }
    .support-img-box {
        min-height: 300px;
    }
}








/* Container Padding */
.subject-area-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Titles */
.main-title {
    font-size: 38px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 10px;
}

.sub-title {
    color: #666;
    font-size: 16px;
}

/* Grid Layout: 8 columns for Desktop */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 40px;
}

/* Card Styling */
.subject-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px; /* Smooth rounded corners */
    padding: 30px 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.subject-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #ffeadb;
}

/* Icon Circle Background */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 124, 50, 0.1);
    margin-bottom: 10px; 
}

.icon-circle img {
    width: 40px; 
    height: auto;
    
}

/* Text Styling */
.subject-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #001e33;
    margin: 0;
    line-height: 1.2;
}

/* Experts count hidden by default on devices with hover */
.subject-item .expert-count {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
}

.subject-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(255, 124, 50, 0.35);
}

.subject-item:hover .expert-count {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 42px;
}

.subject-item:hover .expert-num {
    transform: scale(1.06);
}

.subject-item .expert-num {
    display: inline-block;
    transition: transform 0.28s ease;
}

/* --- Responsive Behavior --- */

/* Tablets (4 cards per row) */
@media (max-width: 1200px) {
    .subject-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Landscape (3 cards per row) */
@media (max-width: 991px) {
    .subject-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Portrait (2 cards per row) */
@media (max-width: 576px) {
    .subject-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .main-title { font-size: 28px; }
}

/* Touch/mobile fallback: show count without hover */
@media (hover: none), (pointer: coarse) {
    .subject-item .expert-count {
        opacity: 1;
        transform: none;
        max-height: none;
        overflow: visible;
    }
}











:root {
    --primary-navy: #001e33;
    --accent-orange: #ff7c32;
    --text-muted: #666666;
}

.heading-color {
    color: var(--accent-orange);
}

.section-main-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-sub-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Card Styling */
.feature-card-custom {
    background: #fff5ed;
    border: 1px solid #f0f0f0;
    border-radius: 20px; 
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); 
}

.feature-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

.feature-card-custom h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-card-custom p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-choose-split {
    align-items: stretch;
}

.why-awards-panel {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
}

.why-awards-slider {
    width: 100%;
}

.why-award-item {
    padding: 10px;
}

.why-award-item img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 16px;
}

.why-choose-cards-grid .feature-card-custom {
    min-height: 100%;
}

@media (max-width: 991px) {
    .why-awards-panel {
        margin-bottom: 4px;
        min-height: 220px;
    }
}

/* ===== Home: Publication expertise (premium LP block) ===== */
.publication-trust-lp.why-choose-section {
    --pub-trust-accent: #f58220;
    --pub-trust-navy: #0b1120;
    --pub-trust-card: #fff8f0;
    padding-top: clamp(88px, 9vw, 120px) !important;
    padding-bottom: clamp(88px, 9vw, 120px) !important;
    background: none;
    border-top: none;
    border-bottom: none;
}

.publication-trust-lp__intro {
    margin-bottom: clamp(2.25rem, 4vw, 3.25rem) !important;
}

.publication-trust-lp__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 1.25rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--pub-trust-accent, #f58220);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.35);
}

.publication-trust-lp__badge i {
    color: #ffffff;
    font-size: 0.82rem;
    opacity: 0.95;
}

.publication-trust-lp__heading {
    font-size: clamp(1.85rem, 1.2rem + 2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--pub-trust-navy, #0b1120);
    margin-bottom: 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.publication-trust-lp__heading-line {
    display: block;
    font-weight: 700;
    color: var(--pub-trust-navy, #0b1120);
}

.publication-trust-lp__heading-accent {
    display: block;
    font-weight: 800;
    color: var(--pub-trust-accent, #f58220) !important;
}

.publication-trust-lp__lead {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.82;
    color: #5a6573;
}

.publication-trust-lp__split {
    --bs-gutter-x: 1.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 1200px) {
    .publication-trust-lp__split {
        --bs-gutter-x: 2.25rem;
    }

    .publication-trust-lp__split .publication-trust-lp__col-slider {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .publication-trust-lp__split .publication-trust-lp__col-cards {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.publication-trust-lp__slider-shell {
    position: relative;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.publication-trust-lp .publication-trust-lp__slider {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.publication-trust-lp .publication-trust-lp__slider .slick-list {
    border-radius: 0;
    overflow: hidden;
    flex: 1;
}

.publication-trust-lp .publication-trust-lp__slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* One certificate per view: full-width slide */
.publication-trust-lp .publication-trust-lp__slider .slick-slide {
    height: auto;
    width: 100% !important;
}

.publication-trust-lp .publication-trust-lp__slider .slick-slide > div {
    height: 100%;
    width: 100%;
}

.publication-trust-lp .why-award-item {
    padding: 0;
}

.publication-trust-lp__slide {
    padding: 0;
    height: 100%;
    outline: none;
}

.publication-trust-lp__slide-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 620px;
    height: 100%;
    box-shadow: none;
    isolation: isolate;
    background: transparent;
}

.publication-trust-lp__slide-frame::before,
.publication-trust-lp__slide-frame::after {
    display: none;
}

@media (min-width: 992px) {
    .publication-trust-lp__slide-frame {
        min-height: clamp(640px, 82vh, 920px);
    }
}

.publication-trust-lp__slide-cert {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit; 
    box-sizing: border-box;
}

.publication-trust-lp__slide-cert-card {
    max-width: 100%;
    box-shadow: none;
    box-sizing: border-box;
}

.publication-trust-lp__slide-cert-inner {
    border-radius: 0;
    border: none;
    background: transparent;
    box-sizing: border-box;
    box-shadow: none;
}

.publication-trust-lp .publication-trust-lp__slide-cert-inner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(90vh, 920px);
    object-fit: contain;
    object-position: center;
    vertical-align: top;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots {
    position: relative;
    bottom: auto;
    margin: 1.1rem 0 0;
    padding: 0;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li button {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li button::before {
    display: none;
}

.publication-trust-lp .publication-trust-lp__slider .slick-dots li.slick-active button {
    background: var(--pub-trust-accent, #f58220);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
    position: absolute;
    /* Center on slide area (Slick includes dots in slider height) */
    top: calc(50% - 1.35rem);
    z-index: 4;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 10px 28px rgba(11, 17, 32, 0.26);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev:hover,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next:hover {
    background: #ffffff;
    color: var(--pub-trust-navy, #0b1120);
    box-shadow: 0 12px 32px rgba(11, 17, 32, 0.28);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
    left: clamp(8px, 5vw, 18px);
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
    right: clamp(8px, 5vw, 18px);
}

@media (min-width: 992px) {
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
        left: clamp(10px, 7%, 28px);
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        right: clamp(10px, 7%, 28px);
    }
}

.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev i,
.publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next i {
    font-size: 15px;
    line-height: 1;
    color: inherit;
    font-weight: 700;
}

.publication-trust-lp__card {
    background: var(--pub-trust-card, #fdf8f4);
    border: 1px solid rgba(11, 17, 32, 0.06);
    border-radius: 14px;
    padding: 1.45rem 1.4rem;
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.publication-trust-lp__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11, 17, 32, 0.1);
    border-color: rgba(245, 130, 32, 0.35);
    background: #ffffff;
}

.publication-trust-lp__card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.publication-trust-lp__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pub-trust-accent, #f58220);
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(245, 130, 32, 0.38);
}

.publication-trust-lp__card-title {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.32;
    color: var(--pub-trust-navy, #0b1120);
    margin: 0;
    padding-top: 0.2rem;
}

.publication-trust-lp__card-desc {
    font-size: 0.875rem;
    line-height: 1.68;
    color: #5a6b7a;
    margin: 0 0 0.6rem;
}

.publication-trust-lp__card-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--pub-trust-navy, #0b1120);
}

.publication-trust-lp__card-list {
    margin: 0 0 0.85rem;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #3d4f63;
}

.publication-trust-lp__card-list--checks li {
    position: relative;
    margin-bottom: 0.4rem;
    padding-left: 1.35rem;
}

.publication-trust-lp__card-list--checks li:last-child {
    margin-bottom: 0;
}

.publication-trust-lp__card-list--checks li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.72rem;
    color: var(--pub-trust-accent, #f58220);
    font-weight: normal;
}

.publication-trust-lp__card-result {
    margin: auto 0 0;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(11, 17, 32, 0.08);
    font-size: 0.8125rem;
    line-height: 1.55;
    font-weight: 700;
    color: var(--pub-trust-accent, #f58220);
}

.publication-trust-lp__card-result strong {
    font-weight: 800;
}

.publication-trust-lp__stats {
    padding-top: 0.25rem;
}

.publication-trust-lp__stats-row {
    padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(1rem, 2vw, 1.5rem);
    background: var(--pub-trust-card, #fdf8f4);
    border: 1px solid rgba(11, 17, 32, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.05);
}

.publication-trust-lp__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.35rem 0.25rem;
}

.publication-trust-lp__stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.14);
    color: var(--pub-trust-accent, #f58220);
    font-size: 1.12rem;
    margin-bottom: 0.15rem;
}

.publication-trust-lp__stat-num {
    font-size: clamp(1.35rem, 1rem + 1.2vw, 1.65rem);
    font-weight: 800;
    color: var(--pub-trust-navy, #0b1120);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.publication-trust-lp__stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5a6d80;
    line-height: 1.35;
    max-width: 11rem;
}

@media (max-width: 991px) {
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev {
        left: 10px;
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        right: 10px;
    }

    .publication-trust-lp__slide-frame {
        min-height: 520px;
    }

    .publication-trust-lp .publication-trust-lp__slide-cert-inner img {
        max-height: min(85vh, 820px);
    }
}

@media (max-width: 767px) {
    .publication-trust-lp__cards > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-prev,
    .publication-trust-lp .publication-trust-lp__slider .publication-trust-slick-next {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-main-heading {
        font-size: 28px;
    }
    .feature-card-custom {
        padding: 30px 20px;
    }
}







/* Card Design */
.slider-item {
    padding: 10px; /* Spacing between cards */
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    min-height: 320px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stars-yellow { color: #ffc107; font-size: 14px; }
.stars-green { color: #00b67a; } /* Trustpilot Green */

.uni-name { color: #ff7c32; font-weight: 500; }

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #f8f8f8;
    padding-top: 20px;
}

/* Slick Dots Customization */
.slick-dots li button:before {
    font-size: 10px;
    color: #ff7c32;
}
.slick-dots li.slick-active button:before {
    color: #ff7c32;
}

.user-details h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-section .success-title {
    font-size: 37px;
    font-weight: 700;
    color: var(--dark);
}

.success-title {
    font-size: 42px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 18px;
    color: #4b5563;
}

/* Trustpilot Header Styling */
.excellent-text {
    font-size: 24px;
    font-weight: 700;
    color: #001e33;
}

.trustpilot-reviews {
    font-size: 15px;
    color: #4b5563;
}

.trustpilot-reviews strong {
    color: #001e33;
}

.tp-brand {
    color: #00b67a; /* Trustpilot Green Color */
    font-weight: 700;
    margin-left: 5px;
}

/* ----- Hero: Trustpilot + Bark review platform cards ----- */
.review-platforms-hero {
    width: 100%;
    max-width: 720px;
}

.review-platforms-hero-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.review-platform-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 8px 26px rgba(0, 30, 51, 0.07);
    border: 1px solid #e8ecf1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 30, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.2);
}

.review-platform-card--trustpilot:hover {
    border-color: rgba(0, 182, 122, 0.35);
}

.review-platform-card--trustpilot {
    border-top: 3px solid #00b67a;
}

.review-platform-card--bark {
    border-top: 3px solid var(--primary);
}

.review-platform-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-platform-logo-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    margin-left: 0;
}

.review-platform-card .tp-brand.review-platform-logo-line {
    margin-left: 0;
}

.review-platform-card .tp-brand.review-platform-logo-line i {
    font-size: 14px;
}

.bark-brand {
    color: #0f172a;
    font-weight: 800;
}

.bark-brand i {
    color: var(--primary);
    font-size: 14px;
}

.review-platform-rating-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.review-platform-card .excellent-text {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #001e33;
    letter-spacing: -0.03em;
}

.review-platform-rating-suffix {
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
}

.bark-rating-excellent {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #001e33;
    letter-spacing: -0.03em;
}

.review-platform-card .trustpilot-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1;
}

.bark-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1;
}

.bark-star-icon {
    color: #f59e0b;
}

.review-platform-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.55;
    margin: 10px 0 0;
    max-width: 280px;
}

.review-platform-card .trustpilot-reviews {
    font-size: 14px;
    margin-top: 12px !important;
}

.bark-reviews-line {
    font-size: 14px;
    color: #4b5563;
    margin-top: 12px !important;
}

.bark-reviews-line strong {
    color: #001e33;
}

@media (max-width: 767px) {
    .review-platform-card .excellent-text,
    .bark-rating-excellent {
        font-size: 32px;
    }
    .review-platform-card {
        padding: 20px 16px;
    }
}

/* Responsive adjust */
@media (max-width: 768px) {
    .success-title { font-size: 32px; }
    .excellent-text { font-size: 20px; }
}








.steps-section {
    background-color: #ffffff;
    position: relative;
}

.steps-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #001e33;
    line-height: 1.2;
}

.steps-sub-text {
    color: #666;
    font-size: 16px;
    margin-top: 15px;
}

/* Steps Row Connector Line */
.steps-row-container {
    position: relative;
    z-index: 1;
}

/* Connecting flow arrows on desktop */
.steps-row-container > [class*="col-"] {
    position: relative;
}

@media (min-width: 992px) {
    .steps-row-container > [class*="col-"]::after {
        content: "\f105";
        font-family: FontAwesome;
        position: absolute;
        right: -4px;
        top: 44%;
        transform: translateY(-50%);
        color: rgba(255, 124, 50, 0.55);
        font-size: 22px;
        z-index: 2;
        pointer-events: none;
    }

    .steps-row-container > [class*="col-"]:nth-child(4n)::after,
    .steps-row-container > [class*="col-"]:last-child::after {
        display: none;
    }
}

/* Card Styling */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 20px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10);
}

/* Orange Number Circle */
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff7c32;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 124, 50, 0.3);
}

/* Icon Styling */
.step-icon {
    width: 80px;
    height: 80px;
    background: #fff4ec;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe2cf;
}

.step-icon img {
    width: 40px;
    height: auto;
}

.step-icon i {
    font-size: 30px;
    color: #ff7c32;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #001e33;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .steps-main-title { font-size: 30px; }
    .step-card { margin-top: 20px; }
    .steps-row-container > [class*="col-"]::after { display: none; }
}







.cta-card {
    /* Aapka bataya hua gradient color */
    background: linear-gradient(180deg, #001A33 0%, #003366 100%); 
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for depth */
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Orange Button */
.btn-submit-orange {
    background-color: #ff6900;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-submit-orange:hover {
    background-color: #e66a25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 124, 50, 0.3);
    color: #ffffff;
}

/* White Outline Button */
.btn-view-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-outline:hover {
    background-color: #ffffff;
    color: #001A33;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}











/* FAQ Section Styling */
.faq-section {
    background-color: #fcfcfc;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #001e33;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #667085;
    font-size: 16px;
}

/* Accordion Custom Styling */
.custom-accordion .accordion-item {
    border: 1px solid #f2f4f7;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Two-column FAQ layout (desktop/tablet) */
.faq-accordion-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-accordion-2col .accordion-item {
    margin-bottom: 0 !important;
}

.custom-accordion .accordion-button {
    padding: 24px;
    font-weight: 700;
    color: #001e33;
    background-color: #ffffff;
    box-shadow: none;
    font-size: 16px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #001e33;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f4f7;
}

.custom-accordion .accordion-body {
    padding: 24px;
    color: #475467;
    line-height: 1.6;
    font-size: 15px;
}

/* Custom +/- Icons (Orange) */
.custom-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    width: 32px;
    height: 32px;
    background-color: #fff1e9; /* Light orange bg */
    color: #ff7c32; /* Brand orange */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: 'âˆ’'; /* Minus sign */
    background-color: #ff7c32;
    color: #ffffff;
    transform: rotate(0deg);
}

/* Contact Button */
.btn-contact-support {
    background-color: #ff7c32;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact-support:hover {
    background-color: #e66a25;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 124, 50, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-accordion-2col {
        grid-template-columns: 1fr;
    }
    .faq-title {
        font-size: 30px;
    }
    .custom-accordion .accordion-button {
        padding: 18px;
        font-size: 15px;
    }
}

.footer h3 {
    color: #ffff;
    font-weight: 700;
}
.footer .footer-logo {width: 150px;}
.fourteen-box {
    text-align: center;
    background-color: #d9d9d9;
    border-radius: 25px;
    padding: 25px 10px;
}
/* intl-tel-input width for legacy #phone2 / modal (sprites: head.php :root + intlTelInput.css) */
.iti {
    width: 100%;
}
     @media (max-width: 767px) {
          .top-banner {
    padding-top: 150px !important
  }
     }

/* ===== HOMEPAGE: PERKS + TRUST + EXPERTS ===== */
.perks-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.perk-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.perk-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background-color: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.perk-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.perk-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

@media (max-width: 1024px) {
    .perks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .perks-grid { grid-template-columns: 1fr; }
}

.trust-certificates {
    display: inline-flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-certificate {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 16px 10px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-cert-logo {
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 18px;
    color: var(--dark);
}

.trust-cert-logo--ieee {
    color: #0b3d91;
}

.trust-cert-logo--wos {
    color: #0047a7;
}

.trust-cert-image {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.trust-cert-meta {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.expert-count {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
}

.expert-num {
    color: var(--primary);
    font-weight: 900;
    font-size: 16px;
    margin-right: 4px;
}

/* ===== Conferences ===== */
.conference-intro-card,
.conference-benefits-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
}

.conference-intro-card h4,
.conference-benefits-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.conference-bullets {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conference-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 0;
}

.conference-bullets li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.benefit-item {
    flex: 1;
    min-width: 220px;
    background: var(--bg-light);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.benefit-item h5 {
    margin: 12px 0 6px;
    font-weight: 900;
    font-size: 15px;
    color: var(--dark);
}

.benefit-item p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.conferences-subtitle {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.conference-list-subtitle {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.conference-service-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.conference-service-card .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.conference-service-card h4 {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 16px;
    color: var(--dark);
}

.conference-service-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.conference-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.conference-listing-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.listing-title {
    margin: 0 0 10px;
    font-weight: 900;
    color: var(--dark);
}

.listing-top h4.listing-title,
.listing-title {
    font-size: 16px;
}

.listing-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.listing-pill {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    background: #f8fafc;
    border: 1px solid #eef0f2;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.listing-pill--mode {
    background: #fff5ed;
    border-color: rgba(255, 105, 0, 0.25);
}

.listing-meta {
    padding-top: 4px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-top: 1px solid #eef0f2;
    padding-top: 12px;
}

.meta-label {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.meta-value {
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
}

.listing-cta {
    margin-top: 14px;
}

.conference-cta-note {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .conference-listing-grid { grid-template-columns: 1fr; }
    .conferences-subtitle { font-size: 22px; }
}

/* ===== Call for Papers ===== */
.callfor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.callfor-provider {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.provider-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
}

.provider-blurb {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 16px;
}

.provider-calls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-call-card {
    background: var(--bg-light);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 14px 14px;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
}

.call-left {
    flex: 1;
    min-width: 0;
}

.call-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.call-deadline {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.deadline-label {
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.deadline-value {
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.call-right {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.call-cta-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .callfor-grid { grid-template-columns: 1fr; }
    .provider-call-card { flex-direction: column; align-items: stretch; }
    .call-right { width: 100%; }
}

/* ===== Journals ===== */
.journals-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.platform-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    height: 100%;
}

.platform-title {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.platform-desc {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 18px;
}

.q1-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.q1-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.q1-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 0;
}

.q1-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.platform-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-cta-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .journals-platform-grid { grid-template-columns: 1fr; }
}

/* ===== Portfolio Carousel ===== */
.portfolio-carousel-wrap {
    margin-top: 18px;
}

.portfolio-carousel .portfolio-slide {
    padding: 10px 8px;
}

.portfolio-card {
    height: 100%;
    min-height: 320px;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.04) 0%, rgba(0, 26, 51, 0.02) 100%);
    border: 1px solid rgba(0, 26, 51, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.portfolio-cover {
    position: relative;
    background: #001A33;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-cover img {
    width: 150px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    background: transparent;
}

.portfolio-year-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 105, 0, 0.95);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
}

.portfolio-details {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-author {
    font-weight: 900;
    color: var(--dark);
    font-size: 15px;
}

.portfolio-university {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.portfolio-cta {
    margin-top: 8px;
}

.portfolio-note {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.portfolio-carousel .slick-dots li button:before {
    color: #ff7c32;
    font-size: 10px;
}

.portfolio-carousel .slick-dots li.slick-active button:before {
    color: #ff7c32;
}

/* Portfolio filter UI + grid */
.portfolio-filter-ui {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,26,51,0.08);
    border-radius: 18px;
    padding: 14px 14px 12px;
}

.portfolio-filter-pill {
    cursor: default;
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 999px;
    padding: 8px 12px;
}

.portfolio-filter-pill.is-active {
    color: #fff;
    background: var(--primary);
    border-color: rgba(255,105,0,0.35);
}

.portfolio-filter-note {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-top: 10px;
}

.portfolio-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-grid-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.portfolio-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.portfolio-grid-cover {
    position: relative;
    background: #001A33;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.portfolio-grid-cover img {
    width: 120px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.portfolio-grid-year {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,105,0,0.95);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
}

.portfolio-grid-body {
    padding: 14px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.portfolio-grid-author {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
}

.portfolio-grid-university {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
}

.portfolio-grid-actions {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .portfolio-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .portfolio-card-grid { grid-template-columns: 1fr; }
}

/* ===== Blog System + Marketing ===== */
.blog-page-section {
    padding: 70px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 22px;
    align-items: start;
}

.blog-sidebar {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-sidebar h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fafafa;
    transition: all 0.2s ease;
}

.category-list a:hover {
    border-color: #ffe9dd;
    background: #fff5ed;
    color: var(--dark);
}

.category-list a.is-active {
    border-color: rgba(255, 105, 0, 0.35);
    background: #fff5ed;
    color: var(--dark);
}

.blog-main h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.blog-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.blog-card h3 {
    margin: 10px 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
}

.blog-card p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.blog-card .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-card .blog-pill {
    background: #fff5ed;
    border: 1px solid rgba(255, 105, 0, 0.25);
    color: var(--primary);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.blog-card .readmore {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.blog-detail-article {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.blog-detail-article h2 {
    font-size: 18px;
    font-weight: 900;
    margin-top: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.blog-detail-article ul {
    padding-left: 18px;
    margin-bottom: 0;
    color: var(--text);
}

.blog-detail-article p {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-post-grid { grid-template-columns: 1fr; }
    .blog-main h1 { font-size: 34px; }
}

/* ===== Floating Lead Popup (Book Free Consultation) ===== */
body.lead-popup-open {
    overflow: hidden;
}

.lead-popup {
    --lead-radius: 14px;
    --lead-input-h: 52px;
    --lead-fs: 15px;
    --lead-gap: 16px;
    --lead-border: #e2e5ec;
    --lead-focus: var(--primary, #f97316);
    --lead-focus-ring: rgba(249, 115, 22, 0.2);

    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lead-popup.is-visible {
    display: flex;
}

.lead-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
}

.lead-popup-panel {
    position: relative;
    width: 100%;
    max-width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    border-radius: 22px;
    border: 1px solid #e8eaef;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.lead-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e8eaef;
    background: var(--white);
    color: var(--dark);
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lead-popup-close:hover {
    background: #f8f9fb;
    border-color: #dde1e8;
}

.lead-popup-content {
    padding: 28px 32px 26px;
}

.lead-popup-header {
    padding-right: 48px;
    margin-bottom: 20px;
}

.lead-popup-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff5ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 14px;
}

.lead-popup-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.lead-popup-subtitle {
    margin: 0 0 4px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.45;
}

.lead-popup-form label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #4b5563;
    display: block;
    margin-bottom: 8px;
    line-height: 1.2;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--lead-gap);
    row-gap: 18px;
}

.lead-field {
    min-width: 0;
}

.lead-field input,
.lead-field select {
    width: 100%;
    height: var(--lead-input-h);
    border: 1px solid var(--lead-border);
    border-radius: var(--lead-radius);
    padding: 0 14px;
    font-size: var(--lead-fs);
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    line-height: 1.25;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.lead-field input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.lead-field input:hover,
.lead-field select:hover {
    border-color: #cdd2dc;
}

.lead-field input:focus,
.lead-field select:focus {
    outline: none;
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

/* intl-tel-input: scoped variables + alignment (sprites via head.php :root) */
.lead-popup .lead-field--phone .iti {
    width: 100%;
    display: block;
    position: relative;
    --iti-spacer-horizontal: 10px;
    --iti-arrow-padding: 8px;
    --iti-dialcode-color: #4b5563;
}

/* Min width so flag + dial code + arrow are not crushed in the 2-column grid */
.lead-popup .iti__country-container {
    min-width: 7.5rem;
    border-radius: var(--lead-radius) 0 0 var(--lead-radius);
    border: 1px solid var(--lead-border);
    border-right: none;
    background: #fff;
    font-weight: 600;
    font-size: var(--lead-fs);
    box-sizing: border-box;
}

.lead-popup .iti__selected-country {
    border-radius: var(--lead-radius) 0 0 var(--lead-radius);
    line-height: normal;
    color: #111827;
}

.lead-popup .iti__selected-country-primary {
    font-weight: 600;
    gap: 6px;
    padding: 0 8px 0 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.lead-popup .iti__flag-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-popup .iti__flag {
    flex-shrink: 0;
}

.lead-popup .iti .iti__selected-dial-code {
    margin-left: 4px;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
    flex-shrink: 0;
}

.lead-popup .iti__arrow {
    flex-shrink: 0;
    align-self: center;
}

.lead-popup .iti__tel-input {
    width: 100% !important;
    height: var(--lead-input-h) !important;
    border: 1px solid var(--lead-border);
    border-radius: 0 var(--lead-radius) var(--lead-radius) 0;
    /* Do not set padding-left: intl-tel-input sets it for country/dial code */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 14px !important;
    font-size: var(--lead-fs) !important;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup .iti__flag {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lead-popup .iti__tel-input:hover,
.lead-popup .iti__country-container:hover {
    border-color: #cdd2dc;
}

.lead-popup .iti__tel-input:focus {
    outline: none;
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

.lead-popup .iti__country-container:focus-within {
    border-color: var(--lead-focus);
    box-shadow: 0 0 0 4px var(--lead-focus-ring);
}

.lead-popup .lead-field--phone.iti-invalid .iti__tel-input,
.lead-popup .lead-field--phone.iti-invalid .iti__country-container {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.lead-popup .lead-phone-error {
    display: block;
    min-height: 20px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #b02a37;
}

.lead-popup .lead-phone-error:empty {
    display: none;
}

/*
 * intl-tel-input portals the country UI to body as .iti--container (default z-index 1060).
 * Lead popup uses z-index 2000, so the list was hidden behind the modal overlay.
 */
body .iti--container {
    z-index: 10070 !important;
}

body .iti--fullscreen-popup.iti--container {
    z-index: 10070 !important;
}

body .iti--container .iti__dropdown-content {
    border-radius: 12px;
    border: 1px solid var(--lead-border, #e2e5ec);
    box-shadow: 0 16px 48px rgba(17, 24, 39, 0.18);
    overflow: hidden;
    background: #fff;
}

body .iti--fullscreen-popup .iti__dropdown-content {
    border-radius: 16px;
}

/* Inline dropdown (desktop): allow a taller list than the default 185px */
body .iti--inline-dropdown .iti__country-list {
    max-height: min(280px, 50vh) !important;
}

body .iti__search-input {
    border-bottom: 1px solid var(--lead-border, #e2e5ec);
    font-size: 15px;
}

.lead-popup-actions {
    margin-top: 22px;
}

.lead-popup-submit {
    min-height: 54px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em;
    border-radius: var(--lead-radius) !important;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.lead-popup-submit:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.lead-popup-submit:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.lead-popup-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--lead-focus-ring), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lead-consent-note {
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    margin-top: 14px;
    line-height: 1.45;
    text-align: center;
}

.lead-popup-success {
    margin-top: 16px;
    background: #f2fdf4;
    border: 1px solid #c7f1cf;
    padding: 14px 16px;
    border-radius: var(--lead-radius);
    color: #115c24;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 575.98px) {
    .lead-popup {
        padding: 12px 14px;
        align-items: center;
    }

    .lead-popup-panel {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 20px;
    }

    .lead-popup-content {
        padding: 22px 18px 20px;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
        row-gap: var(--lead-gap);
    }

    .lead-popup-content h3 {
        font-size: 19px;
    }
}

/* ===== Email Marketing ===== */
.email-marketing-section {
    padding: 70px 0;
    background: #fcfcfc;
}

.email-marketing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.marketing-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marketing-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.marketing-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.marketing-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
}

.marketing-desc {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .email-marketing-grid { grid-template-columns: 1fr; }
}

/* ===== Extra Features ===== */
.extra-features-section {
    padding: 70px 0 90px;
}

.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.extra-feature-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.extra-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 8px;
}

.extra-subtitle {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.university-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.university-logos img {
    width: 110px;
    height: auto;
    filter: grayscale(1);
    opacity: 0.9;
    transition: all 0.2s ease;
}

.university-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.research-body-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.research-badge {
    border: 2px solid #ffe0cc;
    background: #fff5ed;
    color: var(--primary);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
}

.escrow-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f8fbff;
    border: 1px solid #e9f2ff;
    border-radius: 18px;
    padding: 16px 14px;
}

.escrow-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: rgba(255, 105, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.escrow-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
}

.escrow-desc {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.7;
}

.extra-note {
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}

.scholar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.scholar-card {
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 14px 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.scholar-avatar {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,105,0,0.22), rgba(0,26,51,0.08));
    color: var(--dark);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.scholar-name {
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2px;
}

.scholar-aff {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .extra-features-grid { grid-template-columns: 1fr; }
}

/* ===== Services Landing Enhancements ===== */
.services-page-section {
    padding-top: 48px;
}

.services-categories-grid {
    margin-top: 6px;
}

.services-category-card {
    background: var(--white);
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    border-color: rgba(255, 105, 0, 0.25);
}

.services-category-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.services-category-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.services-category-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 18px;
    margin: 0;
}

.services-category-intro {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.services-category-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-category-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.services-category-list li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.services-category-cta .services-get-started {
    padding: 14px 26px;
    font-weight: 900;
}

.services-check-card h4 i {
    color: var(--primary);
}

.services-why-grid .services-why-card h4 i {
    color: var(--primary);
}

.services-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 10px 0 0;
}

.area-pill {
    background: #fafafa;
    border: 1px solid #eef0f2;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    color: var(--dark);
    font-size: 13px;
}

.services-advanced-card {
    padding: 24px 18px;
    position: relative;
    overflow: hidden;
}

.services-advanced-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: #fff5ed;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

/* ===== Career & Skills: Academic career services section ===== */
.academic-career-services {
    position: relative;
    overflow: hidden;
}

.academic-career-services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 45% at 50% -15%, rgba(255, 105, 0, 0.07), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 35%);
}

.academic-career-services > .container {
    position: relative;
    z-index: 1;
}

.acss-section-head {
    max-width: 920px;
    margin: 0 auto 3rem;
}

.acss-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.acss-kicker i {
    font-size: 15px;
    opacity: 0.95;
}

.acss-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.acss-lead {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    max-width: 54rem;
    margin: 0 auto;
}

.acss-card-grid {
    margin-bottom: 2.5rem;
}

.acss-grid-divider {
    height: 0;
    margin: 0.25rem 0 0.5rem;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 26, 51, 0.09);
}

.acss-card {
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 8px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border-top: 3px solid rgba(255, 105, 0, 0.35);
}

.acss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
    border-color: rgba(255, 105, 0, 0.25);
}

.acss-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.acss-card-top {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.acss-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
}

.acss-card-headings {
    min-width: 0;
}

.acss-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy, #001e33);
    line-height: 1.3;
    margin: 0 0 0.65rem;
}

.acss-card-desc {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.acss-bullet-block {
    margin: 0;
    padding: 1.125rem 1.125rem 1rem;
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid rgba(0, 26, 51, 0.06);
}

.acss-bullet-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0, 26, 51, 0.1);
}

.acss-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.acss-bullet-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-dark, #0B192C);
}

.acss-bullet-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.15);
    color: var(--primary);
}

.acss-cta-panel {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
}

.acss-cta-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 36rem;
}

.acss-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.acss-cta-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .acss-section-head {
        margin-bottom: 2.25rem;
    }

    .acss-card {
        padding: 1.5rem 1.35rem 1.35rem;
    }

    .acss-card-top {
        flex-direction: row;
    }
}

@media (max-width: 575px) {
    .acss-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .acss-cta-actions .acss-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acss-card {
        transition: none;
    }

    .acss-card:hover {
        transform: none;
    }
}

/* ===== Career & Skills: How our services work (process timeline) ===== */
.career-process-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.career-process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 72% 52% at 12% 18%, rgba(255, 105, 0, 0.09), transparent 58%),
        radial-gradient(ellipse 65% 48% at 88% 72%, rgba(0, 26, 51, 0.07), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, var(--bg-light) 38%, #fafbfc 100%);
}

.career-process-section > .container {
    z-index: 1;
}

.cps-head {
    max-width: 880px;
    margin: 0 auto 3rem;
}

.cps-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cps-kicker i {
    font-size: 15px;
}

.cps-title {
    font-size: clamp(1.7rem, 3.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.cps-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 auto;
    max-width: 46rem;
}

.cps-timeline {
    list-style: none;
    margin: 0 auto 3rem;
    padding: 0.5rem 0 0;
    max-width: 1100px;
    position: relative;
}

.cps-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(
        180deg,
        rgba(255, 105, 0, 0.15) 0%,
        rgba(255, 105, 0, 0.45) 22%,
        rgba(0, 26, 51, 0.12) 78%,
        rgba(0, 26, 51, 0.06) 100%
    );
    z-index: 0;
}

.cps-timeline-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(52px, auto) 1fr;
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: stretch;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    animation: cps-step-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.cps-timeline-step:nth-child(1) { animation-delay: 0.04s; }
.cps-timeline-step:nth-child(2) { animation-delay: 0.1s; }
.cps-timeline-step:nth-child(3) { animation-delay: 0.16s; }
.cps-timeline-step:nth-child(4) { animation-delay: 0.22s; }
.cps-timeline-step:nth-child(5) { animation-delay: 0.28s; }
.cps-timeline-step:nth-child(6) { animation-delay: 0.34s; }

.cps-timeline-step:nth-child(odd) .cps-step-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.cps-timeline-step:nth-child(odd) .cps-node {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cps-timeline-step:nth-child(odd) .cps-step-spacer {
    grid-column: 3;
    grid-row: 1;
}

.cps-timeline-step:nth-child(even) .cps-step-spacer {
    grid-column: 1;
    grid-row: 1;
}

.cps-timeline-step:nth-child(even) .cps-node {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cps-timeline-step:nth-child(even) .cps-step-card {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.cps-node {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary);
    box-shadow:
        0 0 0 6px rgba(255, 105, 0, 0.12),
        0 10px 24px rgba(0, 26, 51, 0.1);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cps-timeline-step:hover .cps-node {
    transform: scale(1.06);
    box-shadow:
        0 0 0 8px rgba(255, 105, 0, 0.14),
        0 14px 28px rgba(0, 26, 51, 0.12);
}

.cps-node-num {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.cps-step-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.35rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.07);
    border-top: 3px solid rgba(255, 105, 0, 0.45);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.cps-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.cps-step-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.cps-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
}

.cps-step-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.65rem;
}

.cps-step-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.cps-step-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.cps-highlights {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.cps-highlights-kicker {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 1.25rem;
}

.cps-highlight-card {
    background: var(--white);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    padding: 1.5rem 1.35rem;
    box-shadow: 0 8px 26px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-inline-start: 4px solid var(--primary);
}

.cps-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.09);
}

.cps-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1rem;
}

.cps-highlight-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.cps-highlight-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.cps-highlights-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.cps-highlights-note {
    width: 100%;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cps-highlights-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes cps-step-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .cps-timeline::before {
        left: 26px;
        transform: none;
    }

    .cps-timeline-step {
        grid-template-columns: 52px 1fr;
        gap: 1rem 1.15rem;
    }

    .cps-timeline-step:nth-child(n) .cps-step-spacer {
        display: none;
    }

    .cps-timeline-step:nth-child(n) .cps-node {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        margin-top: 0.35rem;
    }

    .cps-timeline-step:nth-child(n) .cps-step-card {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
    }

    .cps-head {
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 575px) {
    .cps-highlights-cta {
        flex-direction: column;
    }

    .cps-highlights-cta .cps-highlights-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cps-timeline-step {
        animation: none;
    }

    .cps-step-card:hover,
    .cps-highlight-card:hover,
    .cps-timeline-step:hover .cps-node {
        transform: none;
    }

    .cps-step-card,
    .cps-highlight-card,
    .cps-node {
        transition: none;
    }
}

/* ===== Submission Support: how it works (timeline + progress) ===== */
.ssp-submission-workflow {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 50px rgba(0, 26, 51, 0.07);
}

.ssp-submission-workflow .ssp-workflow-bg {
    background:
        radial-gradient(ellipse 70% 55% at 8% 12%, rgba(255, 105, 0, 0.11), transparent 55%),
        radial-gradient(ellipse 60% 50% at 92% 88%, rgba(0, 26, 51, 0.09), transparent 52%),
        radial-gradient(ellipse 45% 40% at 50% 50%, rgba(255, 105, 0, 0.04), transparent 60%),
        linear-gradient(168deg, #ffffff 0%, var(--bg-light) 45%, #f3f6fa 100%);
}

.ssp-submission-workflow .ssp-workflow-inner {
    z-index: 1;
}

.ssp-submission-workflow .cps-head {
    margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.ssp-submission-workflow .ssp-workflow-title {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--dark);
}

.ssp-submission-workflow .ssp-workflow-lead {
    font-size: 1.08rem;
    max-width: 40rem;
    color: var(--text);
}

.ssp-submission-workflow .ssp-step-name {
    color: var(--primary);
    font-weight: 800;
}

.ssp-submission-workflow .cps-step-title {
    color: var(--dark);
}

.ssp-submission-workflow .cps-timeline-step:nth-child(5) {
    animation-delay: 0.34s;
    margin-bottom: 0;
}

.ssp-submission-workflow .cps-timeline {
    margin-bottom: 0;
}

.ssp-submission-workflow .cps-step-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ssp-submission-workflow .cps-step-card:hover .cps-step-icon {
    transform: scale(1.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-submission-workflow .cps-step-icon {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-workflow-motifs {
    list-style: none;
    margin: 1.75rem auto 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
    max-width: 920px;
}

.ssp-workflow-motifs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem 0.45rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 26, 51, 0.05);
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.ssp-workflow-motifs li:hover {
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
    transform: translateY(-2px);
}

.ssp-workflow-motif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 13px;
}

.ssp-workflow-motif-label {
    line-height: 1.2;
}

.ssp-workflow-progress {
    max-width: min(720px, 100%);
    margin: 0 auto 2.25rem;
    padding: 0 0.35rem;
}

.ssp-workflow-progress-track {
    position: relative;
    height: 5px;
    border-radius: 6px;
    background: rgba(0, 26, 51, 0.08);
    overflow: hidden;
}

.ssp-workflow-progress-fill {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.25) 0%,
        rgba(255, 105, 0, 0.85) 50%,
        rgba(0, 26, 51, 0.35) 100%
    );
    transform: scaleX(0);
    transform-origin: left center;
    animation: ssp-workflow-progress-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.ssp-workflow-progress-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -16px;
}

.ssp-workflow-progress-steps li {
    position: relative;
    z-index: 1;
}

.ssp-workflow-progress-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.08), 0 6px 16px rgba(0, 26, 51, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ssp-workflow-progress-steps li:hover span {
    transform: scale(1.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 105, 0, 0.12), 0 10px 22px rgba(0, 26, 51, 0.1);
}

@keyframes ssp-workflow-progress-in {
    from {
        transform: scaleX(0);
        opacity: 0.6;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .ssp-workflow-motifs {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .ssp-workflow-motifs li {
        font-size: 11px;
        padding: 0.35rem 0.7rem 0.4rem;
    }

    .ssp-workflow-progress-steps li span {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssp-workflow-progress-fill {
        animation: none;
        transform: scaleX(1);
        opacity: 1;
    }

    .ssp-workflow-motifs li:hover {
        transform: none;
    }

    .ssp-workflow-progress-steps li:hover span {
        transform: none;
    }

    .ssp-submission-workflow .cps-step-card:hover .cps-step-icon {
        transform: none;
    }
}

/* ===== Submission Support: pre-submission quality review (timeline cards) ===== */
.ssp-quality-review {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 22px 50px rgba(0, 26, 51, 0.06);
}

.ssp-quality-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 68% 50% at 6% 20%, rgba(255, 105, 0, 0.1), transparent 55%),
        radial-gradient(ellipse 55% 45% at 94% 85%, rgba(0, 26, 51, 0.08), transparent 52%),
        linear-gradient(172deg, #fbfcfe 0%, #f4f6f9 40%, var(--bg-light) 100%);
}

.ssp-quality-inner {
    z-index: 1;
}

.ssp-quality-head {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.ssp-quality-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-quality-kicker i {
    font-size: 14px;
}

.ssp-quality-title {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-quality-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.ssp-quality-intro .ssp-review-kw,
.ssp-review-card-title .ssp-review-kw {
    color: var(--primary);
    font-weight: 800;
}

.ssp-review-stages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 0.5rem;
    position: relative;
}

.ssp-review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    animation: ssp-quality-card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-review-item:nth-child(1) {
    animation-delay: 0.04s;
}
.ssp-review-item:nth-child(2) {
    animation-delay: 0.1s;
}
.ssp-review-item:nth-child(3) {
    animation-delay: 0.16s;
}
.ssp-review-item:nth-child(4) {
    animation-delay: 0.22s;
}

.ssp-review-node-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.15rem;
    z-index: 1;
}

.ssp-review-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    border: 3px solid rgba(255, 105, 0, 0.45);
    box-shadow:
        0 0 0 5px rgba(255, 105, 0, 0.08),
        0 10px 24px rgba(0, 26, 51, 0.09);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.ssp-review-item:hover .ssp-review-node {
    transform: scale(1.06);
    border-color: var(--primary);
    box-shadow:
        0 0 0 7px rgba(255, 105, 0, 0.12),
        0 14px 30px rgba(0, 26, 51, 0.11);
}

.ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
    content: "";
    position: absolute;
    left: calc(50% + 28px);
    right: -0.25rem;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        rgba(255, 105, 0, 0.45) 0%,
        rgba(255, 105, 0, 0.2) 45%,
        rgba(0, 26, 51, 0.12) 100%
    );
    border-radius: 3px;
    z-index: 0;
    pointer-events: none;
}

.ssp-review-card {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    padding: 1.35rem 1.2rem 1.25rem;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-top: 3px solid rgba(255, 105, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.07);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ssp-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.22);
}

.ssp-review-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.9rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-review-card:hover .ssp-review-icon {
    transform: scale(1.06);
}

.ssp-review-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 0.6rem;
}

.ssp-review-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

@keyframes ssp-quality-card-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 576px) {
    .ssp-review-stages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1.25rem;
        max-width: 820px;
        margin: 0 auto;
    }

    .ssp-review-item {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .ssp-review-card {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .ssp-review-stages {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 520px;
        margin: 0 auto;
    }

    .ssp-review-item:not(:last-child) .ssp-review-node-wrap::after {
        display: none;
    }

    .ssp-review-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0.65rem 1.1rem;
        align-items: start;
        text-align: left;
        padding-bottom: 1.35rem;
        margin-bottom: 1.35rem;
        border-bottom: 1px solid rgba(0, 26, 51, 0.08);
    }

    .ssp-review-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .ssp-review-node-wrap {
        grid-row: 1 / span 2;
        width: auto;
        margin-bottom: 0;
        align-self: center;
    }

    .ssp-review-node {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .ssp-review-card {
        grid-column: 2;
        max-width: none;
        margin: 0;
    }

    .ssp-review-icon {
        margin: 0 0 0.75rem;
    }
}

@media (max-width: 991px) {
    .ssp-quality-head {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .ssp-quality-title {
        font-size: 1.35rem;
    }

    .ssp-quality-intro {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssp-review-item {
        animation: none;
    }

    .ssp-review-card:hover,
    .ssp-review-item:hover .ssp-review-node,
    .ssp-review-card:hover .ssp-review-icon {
        transform: none;
    }

    .ssp-review-card,
    .ssp-review-node,
    .ssp-review-icon {
        transition: none;
    }

    .ssp-why-card {
        animation: none;
    }

    .ssp-why-card:hover,
    .ssp-why-cta__panel:hover {
        transform: none;
    }

    .ssp-why-card,
    .ssp-why-card__icon,
    .ssp-why-cta__panel {
        transition: none;
    }

    .ssp-advanced-card {
        animation: none;
    }

    .ssp-advanced-card:hover {
        transform: none;
    }

    .ssp-advanced-card,
    .ssp-advanced-card__icon {
        transition: none;
    }

    .ssp-advanced-cta__inner:hover {
        transform: none;
    }
}

/* ===== Submission Support: why choose (benefit grid + CTA) ===== */
.ssp-why-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88) inset,
        0 24px 56px rgba(0, 26, 51, 0.07);
}

.ssp-why-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 55% at 10% 15%, rgba(255, 105, 0, 0.11), transparent 58%),
        radial-gradient(ellipse 60% 48% at 90% 80%, rgba(0, 26, 51, 0.09), transparent 55%),
        linear-gradient(165deg, #ffffff 0%, #f5f7fa 50%, #eef1f6 100%);
}

.ssp-why-bg::after {
    content: "";
    position: absolute;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    border-radius: 40% 60% 55% 45%;
    right: -18%;
    top: 40%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 105, 0, 0.06), transparent 68%);
    opacity: 0.9;
}

.ssp-why-inner {
    z-index: 1;
}

.ssp-why-head {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.ssp-why-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-why-kicker i {
    font-size: 15px;
}

.ssp-why-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-why-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 38rem;
}

.ssp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.5rem;
    list-style: none;
    margin: 0.5rem auto 0;
    padding: 0.5rem 0 0;
    position: relative;
    max-width: 1100px;
}

.ssp-why-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 105, 0, 0.22) 12%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.18) 88%,
        transparent 100%
    );
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
}

.ssp-why-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 1.45rem 1.35rem 1.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 36px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    animation: ssp-why-card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-why-card:nth-child(1) {
    animation-delay: 0.03s;
}
.ssp-why-card:nth-child(2) {
    animation-delay: 0.08s;
}
.ssp-why-card:nth-child(3) {
    animation-delay: 0.13s;
}
.ssp-why-card:nth-child(4) {
    animation-delay: 0.18s;
}
.ssp-why-card:nth-child(5) {
    animation-delay: 0.23s;
}
.ssp-why-card:nth-child(6) {
    animation-delay: 0.28s;
}

@media (min-width: 992px) {
    .ssp-why-card:nth-child(even) {
        margin-top: 1.35rem;
    }
}

.ssp-why-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px rgba(0, 26, 51, 0.12);
    border-color: rgba(255, 105, 0, 0.28);
    background: rgba(255, 255, 255, 0.78);
}

.ssp-why-card__accent {
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 1rem;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 105, 0, 0.35) 100%);
    opacity: 0.9;
}

.ssp-why-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: 0.35rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.14) 0%, rgba(255, 105, 0, 0.06) 100%);
    border: 1px solid rgba(255, 105, 0, 0.2);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-why-card:hover .ssp-why-card__icon {
    transform: scale(1.06);
}

.ssp-why-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 0.65rem;
    padding-left: 0.35rem;
}

.ssp-why-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    padding-left: 0.35rem;
    flex-grow: 1;
}

.ssp-why-cta {
    margin-top: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ssp-why-cta__panel {
    position: relative;
    text-align: center;
    padding: clamp(1.75rem, 3vw, 2.35rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.97) 0%, #003366 48%, #001a33 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 50px rgba(0, 26, 51, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ssp-why-cta__panel:hover {
    box-shadow:
        0 26px 60px rgba(0, 26, 51, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-2px);
}

.ssp-why-cta__glow {
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 105, 0, 0.22), transparent 55%);
    pointer-events: none;
}

.ssp-why-cta__title {
    position: relative;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 0.65rem;
}

.ssp-why-cta__lede {
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto 1.35rem;
    max-width: 26rem;
}

.ssp-why-cta__btn {
    position: relative;
    font-weight: 700;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
}

@keyframes ssp-why-card-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .ssp-why-grid::before {
        display: none;
    }

    .ssp-why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 560px;
    }

    .ssp-why-card:nth-child(even) {
        margin-top: 0;
    }

    .ssp-why-card {
        border-left: 3px solid rgba(255, 105, 0, 0.35);
    }

    .ssp-why-card__accent {
        display: none;
    }
}

@media (max-width: 575px) {
    .ssp-why-title {
        font-size: 1.38rem;
    }

    .ssp-why-subtitle {
        font-size: 0.98rem;
    }

    .ssp-why-cta__panel:hover {
        transform: none;
    }
}

/* ===== Submission Support: advanced services grid + CTA ===== */
.ssp-advanced-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2rem) clamp(2.25rem, 4.5vw, 3.5rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 56px rgba(0, 26, 51, 0.07);
}

.ssp-advanced-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 15% 10%, rgba(255, 105, 0, 0.1), transparent 58%),
        radial-gradient(ellipse 55% 45% at 85% 90%, rgba(0, 26, 51, 0.08), transparent 55%),
        linear-gradient(170deg, #ffffff 0%, #f3f5f9 45%, #e8ecf3 100%);
}

.ssp-advanced-bg::before {
    content: "";
    position: absolute;
    width: min(380px, 65vw);
    height: min(380px, 65vw);
    border-radius: 45% 55% 50% 50%;
    left: -12%;
    bottom: 5%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 26, 51, 0.04), transparent 65%);
}

.ssp-advanced-inner {
    z-index: 1;
}

.ssp-advanced-ribbon {
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 105, 0, 0.45) 25%,
        rgba(0, 26, 51, 0.25) 75%,
        transparent
    );
    opacity: 0.85;
    pointer-events: none;
}

.ssp-advanced-head {
    max-width: 900px;
    margin: 0 auto 2.35rem;
    padding-top: 0.35rem;
}

.ssp-advanced-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ssp-advanced-kicker i {
    font-size: 14px;
}

.ssp-advanced-title {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0 0 1rem;
}

.ssp-advanced-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 40rem;
}

.ssp-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding-top: 0.35rem;
}

.ssp-advanced-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    padding: 1.5rem 1.35rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 12px 36px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    animation: ssp-advanced-card-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ssp-advanced-card:nth-child(1) {
    animation-delay: 0.03s;
}
.ssp-advanced-card:nth-child(2) {
    animation-delay: 0.08s;
}
.ssp-advanced-card:nth-child(3) {
    animation-delay: 0.13s;
}
.ssp-advanced-card:nth-child(4) {
    animation-delay: 0.18s;
}
.ssp-advanced-card:nth-child(5) {
    animation-delay: 0.23s;
}
.ssp-advanced-card:nth-child(6) {
    animation-delay: 0.28s;
}

.ssp-advanced-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 22px 48px rgba(0, 26, 51, 0.14);
    border-color: rgba(255, 105, 0, 0.28);
}

.ssp-advanced-card__shine {
    position: absolute;
    top: -40%;
    right: -35%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 0, 0.12), transparent 62%);
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.35s ease;
}

.ssp-advanced-card:hover .ssp-advanced-card__shine {
    opacity: 1;
}

.ssp-advanced-card__icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.16) 0%, rgba(255, 105, 0, 0.05) 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssp-advanced-card:hover .ssp-advanced-card__icon {
    transform: scale(1.07) rotate(-2deg);
}

.ssp-advanced-card__title {
    position: relative;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 0.65rem;
}

.ssp-advanced-card__desc {
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
    flex-grow: 1;
}

.ssp-advanced-card__desc .ssp-adv-kw {
    color: var(--primary);
    font-weight: 700;
}

.ssp-advanced-cta {
    position: relative;
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ssp-advanced-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 26, 51, 0.12) 25%,
        rgba(255, 105, 0, 0.35) 50%,
        rgba(0, 26, 51, 0.12) 75%,
        transparent
    );
}

.ssp-advanced-cta::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(255, 105, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.1);
}

.ssp-advanced-cta__inner {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 14px 40px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ssp-advanced-cta__inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
}

.ssp-advanced-cta__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.ssp-advanced-cta__text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 34rem;
}

.ssp-advanced-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ssp-advanced-cta__btn {
    font-weight: 700;
    padding: 0.65rem 1.65rem;
    border-radius: 50px;
}

.ssp-advanced-cta__btn-secondary {
    font-weight: 700;
    padding: 0.55rem 1.45rem;
    border-radius: 50px;
}

@keyframes ssp-advanced-card-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .ssp-advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 820px;
    }
}

@media (max-width: 767px) {
    .ssp-advanced-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .ssp-advanced-title {
        font-size: 1.38rem;
    }

    .ssp-advanced-subtitle {
        font-size: 0.98rem;
    }

    .ssp-advanced-cta__actions {
        flex-direction: column;
    }

    .ssp-advanced-cta__btn,
    .ssp-advanced-cta__btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===== Career page: Research areas (premium card grid) ===== */
.research-areas-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(168deg, #f0f4f8 0%, var(--bg-light) 42%, #eef6ff 100%);
}

.ras-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ras-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 1;
}

.ras-bg-blob--1 {
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 105, 0, 0.14), rgba(255, 105, 0, 0.02) 62%, transparent 70%);
}

.ras-bg-blob--2 {
    width: min(420px, 75vw);
    height: min(420px, 75vw);
    bottom: -18%;
    left: -10%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 26, 51, 0.09), rgba(0, 26, 51, 0.02) 65%, transparent 72%);
}

.ras-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.research-areas-section > .container {
    z-index: 1;
}

.ras-head {
    max-width: 820px;
    margin: 0 auto 2.75rem;
}

.ras-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.ras-title {
    font-size: clamp(1.65rem, 3.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 1.1rem;
    letter-spacing: -0.02em;
}

.ras-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 auto;
    max-width: 40rem;
}

.ras-key {
    color: var(--primary);
    font-weight: 700;
}

.ras-grid {
    margin-bottom: 0.5rem;
}

.ras-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.65rem 1.5rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-top: 3px solid rgba(255, 105, 0, 0.42);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.ras-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.2);
}

.ras-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.ras-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    font-size: 22px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 105, 0, 0.16) 0%, rgba(255, 105, 0, 0.06) 100%);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    flex-shrink: 0;
}

.ras-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary-navy, #001e33);
    margin: 0 0 0.75rem;
}

.ras-card-desc {
    font-size: 0.9375rem;
    line-height: 1.68;
    color: var(--text);
    margin: 0;
    flex: 1 1 auto;
}

.ras-cta-panel {
    margin-top: 2.75rem;
    padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ras-cta-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.ras-cta-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 auto 1.35rem;
    max-width: 34rem;
}

.ras-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ras-cta-btn {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .ras-head {
        margin-bottom: 2.25rem;
    }

    .ras-cta-actions {
        flex-direction: column;
    }

    .ras-cta-actions .ras-cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .ras-card {
        background: #ffffff;
    }

    .ras-cta-panel {
        background: #ffffff;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ras-card {
        transition: none;
    }

    .ras-card:hover {
        transform: none;
    }
}

.services-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.metric-value {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .services-metrics-grid { grid-template-columns: 1fr; }
}

/* ===== Global Landing CTAs + Hero ===== */
.inner-hero {
    padding: 72px 0 42px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

/* ===== Service Suite Hero Banners ===== */
.suite-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.suite-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Light overlay so the transparent header remains readable (matches home vibe) */
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
}

.suite-hero > .container {
    position: relative;
    z-index: 1;
}

.suite-hero-title {
    color: var(--dark);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px;
}

.suite-hero-subtitle {
    color: #4A5565;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 58ch;
}

.suite-hero-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.suite-hero-cta {
    padding: 14px 28px;
    font-weight: 900;
}

.suite-rp-hero-bg { background-image: url("../images/publication-bg.webp"); }
.suite-thesis-hero-bg { background-image: url("../images/quality-bg.webp"); }
.suite-market-hero-bg { background-image: url("../images/formatting-bg.webp"); }
.suite-career-hero-bg { background-image: url("../images/about-bg.webp"); }

.suite-conferences-hero-bg { background-image: url("../images/premium-bg.webp"); }
.suite-call-hero-bg { background-image: url("../images/submission-bg.webp"); }
.suite-journals-hero-bg { background-image: url("../images/journal-bg.webp"); }
.suite-portfolio-hero-bg { background-image: url("../images/publication-bg.webp"); }
.suite-blog-hero-bg { background-image: url("../images/formatting-bg.webp"); }

@media (max-width: 991px) {
    .suite-hero { min-height: 520px; }
    .suite-hero-title { font-size: 36px; }
    .suite-hero-subtitle { font-size: 15px; }
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
}

.inner-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.1;
}

.inner-hero-subtitle {
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.inner-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.inner-hero-primary {
    padding: 14px 30px;
}

.inner-hero-badge {
    background: #001A33;
    border-radius: 22px;
    padding: 20px 18px;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.inner-hero-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: rgba(255,105,0,0.16);
    color: #ff6900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.inner-hero-badge-title {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 8px;
}

.inner-hero-badge-text {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.final-cta-section {
    padding: 50px 0 70px;
}

.final-cta-card {
    background: linear-gradient(180deg, #001A33 0%, #003366 100%);
    border-radius: 26px;
    padding: 28px 22px;
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.final-cta-left {
    min-width: 280px;
    flex: 1;
}

.final-cta-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.final-cta-subtitle {
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.7;
}

.final-cta-right {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.final-cta-button {
    padding: 14px 26px;
}

.final-cta-note {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .inner-hero-grid { grid-template-columns: 1fr; }
    .inner-hero-title { font-size: 34px; }
    .final-cta-right { align-items: flex-start; }
}

/* ===== PR Services page ===== */

/* PR hero â€” premium split layout (pr-services + market-your-research) */
:is(.pr-services-page, .market-your-research-page) .pr-hero-section {
    overflow: hidden;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 20ch;
    margin-bottom: 1rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 242, 0.92) 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 8px 22px rgba(255, 105, 0, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-badge i {
    color: var(--primary);
    font-size: 12px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-trust {
    margin: 0 0 0.85rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-highlight {
    color: var(--dark);
    background: linear-gradient(180deg, transparent 58%, rgba(255, 105, 0, 0.22) 58%);
    padding: 0 2px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--dark);
    max-width: 52ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-body {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #4a5565;
    max-width: 54ch;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-actions {
    margin-top: 0.35rem;
    margin-bottom: 1.35rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary {
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.34);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary {
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
    transform: translateY(-2px);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 26, 51, 0.09);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 15px;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-stat__text span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #64748b;
}

:is(.pr-services-page, .market-your-research-page) .career-skills-hero-animate--visual {
    animation-delay: 0.22s;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
    position: relative;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual__glow {
    position: absolute;
    inset: 6% 2% 4% 6%;
    border-radius: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 105, 0, 0.18) 0%, transparent 68%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--1 {
    width: min(220px, 45vw);
    height: min(220px, 45vw);
    top: -4%;
    right: 0;
    background: rgba(96, 165, 250, 0.2);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-blob--2 {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    bottom: 2%;
    left: -6%;
    background: rgba(255, 105, 0, 0.16);
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

:is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 26, 51, 0.08),
        0 28px 64px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots {
    display: flex;
    gap: 5px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(1) { background: #fda4af; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
:is(.pr-services-page, .market-your-research-page) .pr-dash-window-dots span:nth-child(3) { background: #86efac; }

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-badge i {
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--pr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: prBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--pr-d, 0s);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes prBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-spark {
    display: block;
    width: 100%;
    height: 40px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-metric-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float {
    position: absolute;
    bottom: 18px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.12);
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 14px;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

:is(.pr-services-page, .market-your-research-page) .pr-dash-float span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 991px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-content h1 {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-section .pr-hero-lead,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-body {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-dash-float {
        right: 8px;
    }
}

@media (max-width: 575px) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stats {
        grid-template-columns: 1fr;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary,
    :is(.pr-services-page, .market-your-research-page) .pr-dash-bar {
        animation: none;
        transition: none;
    }

    :is(.pr-services-page, .market-your-research-page) .pr-hero-stat:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-visual-wrap:hover .pr-hero-visual,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-primary:hover,
    :is(.pr-services-page, .market-your-research-page) .pr-hero-btn-secondary:hover {
        transform: none;
    }
}

.pr-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .pr-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.pr-section-gap {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}

.suite-pr-services-hero-bg {
    background-image: url("../images/formatting-bg.webp");
}

.pr-services-hero.suite-hero::before {
    background: linear-gradient(
        125deg,
        rgba(0, 26, 51, 0.88) 0%,
        rgba(0, 26, 51, 0.72) 42%,
        rgba(0, 51, 102, 0.55) 100%
    );
}

.pr-services-hero .suite-hero-title {
    color: #fff;
}

.pr-services-hero .suite-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
}

.pr-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    max-width: 62ch;
    margin: 0 auto 8px;
}

.pr-services-hero .pr-hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}

.pr-services-hero .pr-hero-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
}

.pr-why-intro {
    max-width: 56ch;
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pr-why-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.pr-services-service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr-services-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 26, 51, 0.12);
}

.pr-services-service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.pr-service-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #4a5565;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.75;
}

.pr-service-list li {
    margin-bottom: 8px;
}

.pr-benefits-section .section-title .main-title {
    color: var(--dark);
}

.pr-benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 26px 24px;
    min-height: 100%;
    background: linear-gradient(
        155deg,
        rgba(0, 26, 51, 0.97) 0%,
        rgba(0, 40, 82, 0.94) 48%,
        rgba(0, 26, 51, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 40px rgba(0, 12, 30, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pr-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 0, 0.07) 0%,
        transparent 45%
    );
    pointer-events: none;
}

.pr-benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 0, 0.35);
    box-shadow:
        0 22px 50px rgba(0, 12, 30, 0.38),
        0 0 28px rgba(255, 105, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pr-benefit-card-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--primary);
    background: rgba(255, 105, 0, 0.14);
    border: 1px solid rgba(255, 105, 0, 0.28);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.12);
}

.pr-benefit-card-title {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px;
}

.pr-benefit-card-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-case-card .metric-value {
    font-size: 22px;
    color: var(--dark);
}

.pr-case-card .metric-label {
    font-weight: 700;
}

.pr-cta-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
}

.pr-cta-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

/* ===== eBook services page (light theme, matches homepage) ===== */
.ebook-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .ebook-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.ebook-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 68ch;
    margin: 0 auto 10px;
}

.ebook-service-card {
    position: relative;
    border-radius: 20px;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ebook-service-card:hover {
    transform: translateY(-5px);
    border-color: #e0e4e8;
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff5ed;
    color: var(--primary);
    border: 1px solid rgba(255, 105, 0, 0.25);
}

.ebook-service-tag--popular {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ebook-service-tag--trend {
    background: #f0f7ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.ebook-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-service-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-service-card-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0 0 12px;
    flex-grow: 1;
}

.ebook-services-list-section .ebook-service-card-desc {
    margin-bottom: 0;
}

.ebook-services-list-section .section-title .sub-title {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .ebook-services-list-section .offset-lg-3 {
        margin-left: 0;
    }
}

/* ===== eBook Services â€” Process timeline ===== */
.ebook-services-page .ebook-process-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-process-section__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 70% at 92% 8%, rgba(255, 105, 0, 0.08) 0%, transparent 52%),
        radial-gradient(90% 65% at 4% 88%, rgba(0, 26, 51, 0.06) 0%, transparent 55%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 247, 247, 0) 42%, rgba(255, 105, 0, 0.04) 100%);
}

.ebook-services-page .ebook-process-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.ebook-services-page .ebook-process-section__accent--1 {
    width: min(320px, 50vw);
    height: min(320px, 50vw);
    top: -4%;
    right: 6%;
    background: rgba(255, 105, 0, 0.14);
}

.ebook-services-page .ebook-process-section__accent--2 {
    width: min(260px, 44vw);
    height: min(260px, 44vw);
    bottom: 6%;
    left: -2%;
    background: rgba(0, 38, 77, 0.07);
}

.ebook-services-page .ebook-process-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-process-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.ebook-services-page .ebook-process-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.ebook-services-page .ebook-process-kicker i {
    font-size: 14px;
    opacity: 0.9;
}

.ebook-services-page .ebook-process-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(300px, 30%);
    gap: clamp(24px, 3.5vw, 44px);
    align-items: center;
}

.ebook-services-page .ebook-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    position: relative;
}

.ebook-services-page .ebook-process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 0, 0.35) 8%,
        rgba(0, 26, 51, 0.12) 50%,
        rgba(255, 105, 0, 0.3) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.ebook-services-page .ebook-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-process-step__track {
    display: none;
}

.ebook-services-page .ebook-process-step__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.35rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(6px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
    margin-top: clamp(12px, 2vw, 20px);
}

.ebook-services-page .ebook-process-step__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin: -2.35rem auto 1rem;
    width: fit-content;
}

.ebook-services-page .ebook-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4eb 0%, #ffe8d9 100%);
    border: 1px solid rgba(255, 105, 0, 0.35);
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(255, 105, 0, 0.15);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__num {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.22);
}

.ebook-services-page .ebook-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-process-step__card:hover .ebook-process-step__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-process-step__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    text-align: center;
}

.ebook-services-page .ebook-process-step__desc {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
    text-align: center;
}

.ebook-services-page .ebook-process-visual__panel {
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.1),
        0 0 0 1px rgba(255, 105, 0, 0.07) inset;
    backdrop-filter: blur(10px);
}

.ebook-services-page .ebook-process-visual__flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.ebook-services-page .ebook-process-visual__chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 6px 18px rgba(0, 26, 51, 0.05);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-services-page .ebook-process-visual__chip i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff5ed;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.ebook-services-page .ebook-process-visual__chip--highlight {
    border-color: rgba(255, 105, 0, 0.28);
    background: linear-gradient(145deg, #fff8f3 0%, #fff 100%);
}

.ebook-services-page .ebook-process-visual__arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 105, 0, 0.55);
    font-size: 16px;
    line-height: 1;
}

/* ===== eBook Services â€” Why publishing matters ===== */
.ebook-services-page .ebook-why-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: #ffffff;
    overflow: hidden;
}

.ebook-services-page .ebook-why-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 45% at 100% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 0% 80%, rgba(0, 26, 51, 0.05) 0%, transparent 50%);
}

.ebook-services-page .ebook-why-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-why-head {
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.ebook-services-page .ebook-why-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-why-sub {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.55;
    color: #64748b;
}

.ebook-services-page .ebook-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.ebook-services-page .ebook-why-card--alt {
    background: linear-gradient(145deg, #fafbfd 0%, #ffffff 100%);
}

.ebook-services-page .ebook-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 105, 0, 0.2) 100%);
    opacity: 0.85;
    transition: height 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.2);
}

.ebook-services-page .ebook-why-card:hover::before {
    height: 4px;
}

.ebook-services-page .ebook-why-card__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 21px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-why-card:hover .ebook-why-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(255, 105, 0, 0.18);
}

.ebook-services-page .ebook-why-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.02rem, 1.8vw, 1.12rem);
    font-weight: 800;
    line-height: 1.32;
    color: var(--dark);
}

.ebook-services-page .ebook-why-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #64748b;
}

@media (max-width: 1399px) {
    .ebook-services-page .ebook-process-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-process-visual {
        display: none;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-process-timeline {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 28px);
        max-width: 560px;
        margin: 0 auto;
        padding-left: 28px;
        border-left: 2px solid rgba(255, 105, 0, 0.22);
    }

    .ebook-services-page .ebook-process-timeline::before {
        display: none;
    }

    .ebook-services-page .ebook-process-step {
        position: relative;
    }

    .ebook-services-page .ebook-process-step::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 28px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px rgba(255, 105, 0, 0.35);
    }

    .ebook-services-page .ebook-process-step:nth-child(even) .ebook-process-step__card {
        margin-top: 0;
    }

    .ebook-services-page .ebook-process-step__card {
        text-align: left;
    }

    .ebook-services-page .ebook-process-step__node {
        flex-direction: row;
        margin: -2rem auto 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .ebook-services-page .ebook-process-step__title,
    .ebook-services-page .ebook-process-step__desc {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-process-step__card,
    .ebook-services-page .ebook-process-step__icon,
    .ebook-services-page .ebook-process-step__num,
    .ebook-services-page .ebook-why-card,
    .ebook-services-page .ebook-why-card__icon,
    .ebook-services-page .ebook-why-card::before {
        transition: none;
    }

    .ebook-services-page .ebook-process-step__card:hover,
    .ebook-services-page .ebook-why-card:hover {
        transform: none;
    }
}

/* ===== eBook Services â€” Audience section ===== */
.ebook-services-page .ebook-audience-section {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.ebook-services-page .ebook-audience-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 26, 51, 0.04) 0%, transparent 50%);
}

.ebook-services-page .ebook-audience-section__accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.45;
    pointer-events: none;
}

.ebook-services-page .ebook-audience-section__accent--1 {
    width: min(300px, 48vw);
    height: min(300px, 48vw);
    top: 8%;
    right: -4%;
    background: rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-section > .container {
    position: relative;
    z-index: 1;
}

.ebook-services-page .ebook-audience-head {
    max-width: 760px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-audience-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3.5vw, 40px);
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}

.ebook-services-page .ebook-audience-intro__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 24px rgba(0, 26, 51, 0.06),
        0 22px 56px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(8px);
}

.ebook-services-page .ebook-audience-intro__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.28);
    color: var(--primary);
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(255, 105, 0, 0.12);
}

.ebook-services-page .ebook-audience-intro__text {
    margin: 0;
    font-size: clamp(1.02rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.72;
    color: #4a5565;
}

.ebook-services-page .ebook-audience-kw {
    font-weight: 800;
    color: var(--dark);
    background: linear-gradient(180deg, transparent 62%, rgba(255, 105, 0, 0.18) 62%);
    padding: 0 1px;
}

.ebook-services-page .ebook-audience-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
}

.ebook-services-page .ebook-audience-item {
    margin: 0;
    padding: 0;
}

.ebook-services-page .ebook-audience-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    padding: clamp(1.1rem, 2vw, 1.25rem);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 0, 0.22);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.ebook-services-page .ebook-audience-card__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 11px;
}

.ebook-services-page .ebook-audience-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    border: 1px solid rgba(255, 105, 0, 0.22);
    color: var(--primary);
    font-size: 17px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ebook-services-page .ebook-audience-card:hover .ebook-audience-card__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.15);
}

.ebook-services-page .ebook-audience-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark);
}

/* ===== eBook Services â€” FAQ accordion ===== */
.ebook-services-page .ebook-faq-section {
    padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 96px);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
}

.ebook-services-page .ebook-faq-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.ebook-services-page .ebook-faq-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.ebook-services-page .ebook-faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item {
    margin: 0;
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.ebook-services-page .ebook-faq-accordion .ebook-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.08);
}

.ebook-services-page .ebook-faq-accordion .accordion-header {
    margin: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    border: 0;
    transition: color 0.25s ease, background 0.25s ease;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.ebook-services-page .ebook-faq-accordion .accordion-button::after {
    display: none;
}

.ebook-services-page .ebook-faq-item__q {
    flex: 1;
    text-align: left;
}

.ebook-services-page .ebook-faq-item__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 26, 51, 0.08);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, background 0.25s ease, opacity 0.25s ease;
}

.ebook-services-page .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle {
    background: rgba(255, 105, 0, 0.12);
    border-color: rgba(255, 105, 0, 0.25);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::before,
.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    background: var(--primary);
}

.ebook-services-page .ebook-faq-accordion .accordion-button:not(.collapsed) .ebook-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.ebook-services-page .ebook-faq-accordion .accordion-button:hover .ebook-faq-item__toggle {
    border-color: rgba(255, 105, 0, 0.3);
}

.ebook-services-page .ebook-faq-accordion .accordion-body,
.ebook-services-page .ebook-faq-item__a {
    padding: 0 1.25rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    color: #64748b;
}

.ebook-services-page .ebook-faq-accordion .accordion-collapse {
    transition: height 0.32s ease;
}

@media (max-width: 991px) {
    .ebook-services-page .ebook-audience-layout {
        grid-template-columns: 1fr;
    }

    .ebook-services-page .ebook-audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebook-services-page .ebook-audience-card,
    .ebook-services-page .ebook-audience-card__icon,
    .ebook-services-page .ebook-faq-accordion .ebook-faq-item,
    .ebook-services-page .ebook-faq-item__toggle,
    .ebook-services-page .ebook-faq-item__toggle::before,
    .ebook-services-page .ebook-faq-item__toggle::after {
        transition: none;
    }

    .ebook-services-page .ebook-audience-card:hover {
        transform: none;
    }
}

.ebook-service-seo {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0 0 16px;
}

.ebook-service-cta {
    align-self: flex-start;
    margin-top: auto;
}

.ebook-process-card {
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.ebook-process-num {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.ebook-process-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.ebook-process-desc {
    font-size: 14px;
    font-weight: 600;
    color: #4a5565;
    margin: 0;
    line-height: 1.65;
}

.ebook-benefit-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.ebook-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.ebook-benefit-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.35;
}

.ebook-benefit-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    color: #4a5565;
    margin: 0;
}

.ebook-use-case-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 560px;
}

.ebook-use-case-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ebook-use-case-list li:last-child {
    margin-bottom: 0;
}

.ebook-use-case-list .fa-check {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.ebook-cta-strip {
    padding: 2.5rem 0;
}

.ebook-cta-inner {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.ebook-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.ebook-cta-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
}

.ebook-cta-btn {
    padding: 14px 26px;
    font-weight: 900;
}

.ebook-cta-btn-outline {
    padding: 12px 24px;
    font-weight: 800;
}

.ebook-seo-section {
    padding: 1.5rem 0 3rem;
    border-top: 1px solid #eef0f2;
}

.ebook-seo-boost {
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500;
    color: #9ca3af;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== Conference services page (light theme, matches homepage) ===== */
.conference-services-page .pr-services-container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .conference-services-page .pr-services-container {
        max-width: 1320px;
    }
}

.conference-hero-lead {
    color: #4a5565;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.78;
    max-width: 65ch;
    margin: 0 auto 10px;
}

.conference-svc-card {
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 100%;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.conference-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 26, 51, 0.1);
}

.conference-svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.conference-svc-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 10px;
}

.conference-svc-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    color: #4a5565;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conference-svc-btn {
    margin-top: auto;
    align-self: flex-start;
}

.conference-services-page .conference-step-card {
    border-radius: 20px;
    padding: 22px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-services-page .conference-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 51, 0.1);
}

.conference-step-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
}

.conference-services-page .conference-step-card h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
}

.conference-services-page .conference-step-card p {
    color: #4a5565;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.conference-services-page .conference-benefit-card {
    border-radius: 20px;
    padding: 22px 20px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-services-page .conference-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.1);
}

.conference-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--primary);
    background: #fff5ed;
    border: 1px solid #ffe4d4;
}

.conference-services-page .conference-benefit-card h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
}

.conference-services-page .conference-benefit-card p {
    color: #4a5565;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.conference-cta-panel {
    border-radius: 20px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.08);
}

.conference-cta-title {
    color: var(--dark);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 900;
    margin: 0;
}

/* ===== Market Your Research page ===== */
.market-your-research-page {
    --myr-section-pad-y: clamp(56px, 7vw, 96px);
    --myr-card-pad-block: 24px;
    --myr-card-pad-inline: 22px;
    --myr-radius-card: 18px;
    --myr-shadow-soft: 0 12px 32px rgba(0, 26, 51, 0.07);
    --myr-shadow-hover: 0 20px 44px rgba(0, 26, 51, 0.12);
    --myr-ease: cubic-bezier(0.34, 1.25, 0.64, 1);
    --myr-transition: 0.26s var(--myr-ease);
}

/* MYR — academic impact / trust section */
.market-your-research-page .myr-impact-section {
    position: relative;
    padding: var(--myr-section-pad-y) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 32%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.06);
    overflow: hidden;
}

.market-your-research-page .myr-impact-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 58% 48% at 12% 18%, rgba(255, 105, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 52% 42% at 88% 78%, rgba(59, 130, 246, 0.06) 0%, transparent 52%);
    pointer-events: none;
}

.market-your-research-page .myr-impact-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-impact-head {
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.market-your-research-page .myr-impact-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-impact-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-impact-sub {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.6;
    color: #64748b;
}

.market-your-research-page .myr-impact-card {
    --myr-impact-accent: var(--primary);
    --myr-impact-soft: rgba(255, 105, 0, 0.12);
    --myr-impact-gradient: linear-gradient(165deg, #fff8f2 0%, rgba(255, 255, 255, 0.92) 58%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: var(--myr-impact-gradient);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: var(--myr-shadow-soft);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-impact-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, var(--myr-impact-soft) 0%, transparent 68%);
    pointer-events: none;
}

.market-your-research-page .myr-impact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--myr-shadow-hover);
    border-color: rgba(0, 26, 51, 0.12);
}

.market-your-research-page .myr-impact-card--researchers {
    --myr-impact-accent: #ff6900;
    --myr-impact-soft: rgba(255, 105, 0, 0.16);
    --myr-impact-gradient: linear-gradient(165deg, #fff8f2 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--promotions {
    --myr-impact-accent: #6366f1;
    --myr-impact-soft: rgba(99, 102, 241, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #eef2ff 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--reach {
    --myr-impact-accent: #0d9488;
    --myr-impact-soft: rgba(13, 148, 136, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #ecfdf5 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card--visibility {
    --myr-impact-accent: #2563eb;
    --myr-impact-soft: rgba(37, 99, 235, 0.14);
    --myr-impact-gradient: linear-gradient(165deg, #eff6ff 0%, #ffffff 58%);
}

.market-your-research-page .myr-impact-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 26, 51, 0.06);
    color: var(--myr-impact-accent);
    font-size: 20px;
    box-shadow: 0 6px 18px var(--myr-impact-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.market-your-research-page .myr-impact-card:hover .myr-impact-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-impact-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-impact-card__desc {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .pr-hero-actions {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .market-your-research-page .myr-impact-card__title {
        font-size: 1.05rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-impact-card,
    .market-your-research-page .myr-impact-card__icon {
        transition: none;
    }

    .market-your-research-page .myr-impact-card:hover,
    .market-your-research-page .myr-impact-card:hover .myr-impact-card__icon {
        transform: none;
    }
}

.market-your-research-page .myr-hero-section {
    position: relative;
    overflow: hidden;
    padding-top: clamp(120px, 12vw, 168px);
    padding-bottom: clamp(72px, 9vw, 112px);
    background: linear-gradient(165deg, #f4f8fd 0%, #eef4fb 42%, #f8fafc 100%);
    box-shadow: 0 28px 56px rgba(0, 26, 51, 0.07);
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 12% 18%, rgba(59, 130, 246, 0.11), transparent 55%),
        radial-gradient(circle at 88% 22%, rgba(255, 105, 0, 0.12), transparent 42%),
        radial-gradient(circle at 70% 88%, rgba(14, 165, 233, 0.08), transparent 45%);
}

.market-your-research-page .myr-hero-bg::before,
.market-your-research-page .myr-hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.85;
}

.market-your-research-page .myr-hero-bg::before {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    left: -8%;
    top: 18%;
    background: rgba(96, 165, 250, 0.22);
}

.market-your-research-page .myr-hero-bg::after {
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    right: -6%;
    bottom: 8%;
    background: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.06);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 1.4vw, 14px);
}

.market-your-research-page .myr-hero-kicker i {
    color: var(--primary);
    font-size: 13px;
}

.market-your-research-page .myr-hero-cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 clamp(14px, 1.8vw, 18px);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.22);
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.market-your-research-page .myr-hero-cred-badge i {
    font-size: 12px;
    color: #0d9488;
}

.market-your-research-page .myr-hero-kw {
    color: var(--primary);
    font-weight: 800;
}

.market-your-research-page .myr-hero-title {
    font-size: clamp(2.05rem, 4.8vw, 2.55rem);
    line-height: 1.12;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: clamp(18px, 2.2vw, 26px);
     
}

 
.market-your-research-page .myr-hero-highlight {
    color: var(--primary);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .market-your-research-page .myr-hero-highlight {
        background: linear-gradient(120deg, var(--primary) 0%, #ff8534 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.market-your-research-page .myr-hero-subtitle {
    max-width: 36rem;
    font-size: clamp(1.02rem, 1.85vw, 1.18rem);
    line-height: 1.62;
    color: #3d4a5c;
    margin-bottom: clamp(12px, 1.6vw, 16px);
    font-weight: 500;
}

.market-your-research-page .myr-hero-supporting {
    max-width: 32rem;
    font-size: clamp(0.88rem, 1.35vw, 0.97rem);
    line-height: 1.65;
    color: #64748b;
    margin-bottom: clamp(26px, 3.2vw, 34px);
    font-weight: 500;
}

.market-your-research-page .myr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.market-your-research-page .myr-hero-btn-primary {
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(255, 105, 0, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.market-your-research-page .myr-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.42);
    filter: brightness(1.03);
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

.market-your-research-page .myr-hero-btn-secondary {
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65) !important;
    color: var(--dark) !important;
    border: 2px solid rgba(0, 26, 51, 0.14) !important;
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.market-your-research-page .myr-hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--dark) !important;
    box-shadow: 0 10px 26px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-hero-cta-note {
    margin: clamp(12px, 1.6vw, 16px) 0 clamp(22px, 2.8vw, 28px);
    max-width: 36rem;
    font-size: clamp(0.86rem, 1.25vw, 0.95rem);
    line-height: 1.58;
    font-weight: 600;
    color: #64748b;
}

.market-your-research-page .myr-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.market-your-research-page .myr-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 26, 51, 0.07);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.market-your-research-page .myr-trust-badge i {
    color: #0d9488;
    flex-shrink: 0;
}

.market-your-research-page .myr-trust-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-bottom: clamp(22px, 2.8vw, 30px);
    padding-top: 4px;
}

.market-your-research-page .myr-trust-platforms-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.market-your-research-page .myr-trust-platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.market-your-research-page .myr-platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--dark);
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-platform-icon abbr {
    text-decoration: none;
    border: 0;
    cursor: default;
}

.market-your-research-page .myr-platform-icon-in {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 13px;
}

.market-your-research-page .myr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 1200px) {
    .market-your-research-page .myr-hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.market-your-research-page .myr-stat-item {
    min-width: 0;
    border: 1px solid rgba(0, 26, 51, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
    padding: 14px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-your-research-page .myr-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-stat-item strong {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-stat-item .myr-stat-em {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.market-your-research-page .myr-stat-item span {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 4px;
}

/* Hero visual â€” dashboard mockup */
.market-your-research-page .myr-hero-visual-wrap {
    position: relative;
    padding: clamp(8px, 2vw, 20px) 0;
}

.market-your-research-page .myr-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}

.market-your-research-page .myr-hero-blob--1 {
    width: min(280px, 70%);
    height: min(280px, 50vw);
    right: 6%;
    top: -4%;
    background: rgba(59, 130, 246, 0.2);
    animation: myrHeroFloatA 9s ease-in-out infinite;
}

.market-your-research-page .myr-hero-blob--2 {
    width: min(220px, 55%);
    height: min(220px, 45vw);
    left: 4%;
    bottom: 6%;
    background: rgba(255, 105, 0, 0.16);
    animation: myrHeroFloatB 11s ease-in-out infinite;
}

@keyframes myrHeroFloatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8px, 12px) scale(1.04); }
}

@keyframes myrHeroFloatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-hero-blob--1,
    .market-your-research-page .myr-hero-blob--2 {
        animation: none;
    }
    .market-your-research-page .myr-dash-bar {
        animation: none !important;
    }
    .market-your-research-page .myr-dash-float {
        animation: none !important;
    }
    .market-your-research-page .myr-hero-btn-primary:hover,
    .market-your-research-page .myr-hero-btn-secondary:hover {
        transform: none;
    }
}

.market-your-research-page .myr-hero-visual {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 24px;
    border: 1px solid rgba(0, 26, 51, 0.08);
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 24px 56px rgba(0, 26, 51, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    padding: clamp(18px, 2.8vw, 26px);
    overflow: visible;
}

.market-your-research-page .myr-hero-visual--dashboard {
    min-height: 320px;
}

.market-your-research-page .myr-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.market-your-research-page .myr-dash-window-dots {
    display: flex;
    gap: 6px;
}

.market-your-research-page .myr-dash-window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
}

.market-your-research-page .myr-dash-window-dots span:nth-child(1) { background: #fda4af; }
.market-your-research-page .myr-dash-window-dots span:nth-child(2) { background: #fcd34d; }
.market-your-research-page .myr-dash-window-dots span:nth-child(3) { background: #86efac; }

.market-your-research-page .myr-dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 105, 0, 0.1);
    color: var(--dark);
}

.market-your-research-page .myr-dash-badge i {
    color: var(--primary);
}

.market-your-research-page .myr-dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 12px 8px 0;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid #eef2f6;
}

.market-your-research-page .myr-dash-bar {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: var(--myr-h, 40%);
    align-self: flex-end;
    transform-origin: bottom center;
    animation: myrBarGrow 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    animation-delay: var(--myr-d, 0s);
}

.market-your-research-page .myr-dash-bar--accent {
    background: linear-gradient(180deg, #ffb366 0%, var(--primary) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 0, 0.35);
}

@keyframes myrBarGrow {
    from { transform: scaleY(0.2); opacity: 0.5; }
    to { transform: scaleY(1); opacity: 1; }
}

.market-your-research-page .myr-dash-trend {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 6px 4px 2px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f1f5f9;
}

.market-your-research-page .myr-dash-spark {
    display: block;
    width: 100%;
    height: 48px;
}

.market-your-research-page .myr-dash-metrics {
    display: flex;
    gap: 12px;
}

.market-your-research-page .myr-dash-metric {
    flex: 1;
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8ecf1;
}

.market-your-research-page .myr-dash-metric-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.market-your-research-page .myr-dash-metric-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #15803d;
}

.market-your-research-page .myr-dash-float {
    position: absolute;
    right: -6px;
    top: 42%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 40px rgba(0, 26, 51, 0.14);
    animation: myrDashFloat 5s ease-in-out infinite;
}

.market-your-research-page .myr-dash-float i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 0, 0.12);
    color: var(--primary);
    font-size: 16px;
}

.market-your-research-page .myr-dash-float strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.market-your-research-page .myr-dash-float span {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

@keyframes myrDashFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 575px) {
    .market-your-research-page .myr-dash-float {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 14px;
        animation: none;
    }
}

.market-your-research-page .myr-hero-visual img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.market-your-research-page .myr-results-section,
.market-your-research-page .myr-audience-section,
.market-your-research-page .myr-case-section,
.market-your-research-page .myr-pricing-section,
.market-your-research-page .myr-why-section,
.market-your-research-page .myr-faq-section,
.market-your-research-page .myr-audit-section,
.market-your-research-page .myr-final-cta-section {
    padding-top: var(--myr-section-pad-y);
    padding-bottom: var(--myr-section-pad-y);
}

.market-your-research-page .myr-case-section {
    background: #f7fafc;
}

/* MYR â€” trust / why section (premium) */
.market-your-research-page .myr-why-section {
    position: relative;
    background: linear-gradient(180deg, #f9fbfe 0%, #ffffff 45%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-why-section__bg,
.market-your-research-page .myr-why-section__mesh,
.market-your-research-page .myr-why-section__orb {
    position: absolute;
    pointer-events: none;
}

.market-your-research-page .myr-why-section__bg {
    inset: 0;
    background:
        radial-gradient(ellipse 55% 48% at 10% 15%, rgba(255, 105, 0, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 42% at 90% 85%, rgba(13, 148, 136, 0.05) 0%, transparent 52%);
}

.market-your-research-page .myr-why-section__mesh {
    inset: 0;
    opacity: 0.32;
    background-image: radial-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.market-your-research-page .myr-why-section__orb {
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.42;
    animation: myrWhyOrbFloat 15s ease-in-out infinite;
}

.market-your-research-page .myr-why-section__orb--1 {
    width: clamp(110px, 16vw, 180px);
    height: clamp(110px, 16vw, 180px);
    top: 10%;
    right: 5%;
    background: rgba(255, 105, 0, 0.16);
}

.market-your-research-page .myr-why-section__orb--2 {
    width: clamp(90px, 13vw, 150px);
    height: clamp(90px, 13vw, 150px);
    bottom: 14%;
    left: 4%;
    background: rgba(13, 148, 136, 0.12);
    animation-delay: -6s;
}

@keyframes myrWhyOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -10px); }
}

.market-your-research-page .myr-why-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-why-head {
    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.market-your-research-page .myr-why-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-why-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-why-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-why-subtitle {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    color: #334155;
}

.market-your-research-page .myr-why-intro {
    margin: 0 auto 0.65rem;
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-why-intro--emphasis {
    margin-bottom: 0;
    font-weight: 600;
    color: #475569;
}

.market-your-research-page .myr-trust-card {
    --myr-trust-accent: var(--primary);
    --myr-trust-soft: rgba(255, 105, 0, 0.12);
    --myr-trust-icon-bg: linear-gradient(145deg, #fff5ed 0%, #ffe8d6 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.35rem, 2.5vw, 1.65rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 26, 51, 0.06);
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    overflow: hidden;
}

.market-your-research-page .myr-trust-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--myr-trust-accent) 0%, transparent 100%);
    transition: height 0.32s ease;
}

.market-your-research-page .myr-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 26, 51, 0.11);
    border-color: rgba(255, 105, 0, 0.18);
}

.market-your-research-page .myr-trust-card:hover .myr-trust-card__accent {
    height: 5px;
}

.market-your-research-page .myr-trust-card--expertise {
    --myr-trust-accent: #2563eb;
    --myr-trust-soft: rgba(37, 99, 235, 0.14);
    --myr-trust-icon-bg: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
}

.market-your-research-page .myr-trust-card--ethical {
    --myr-trust-accent: #0d9488;
    --myr-trust-soft: rgba(13, 148, 136, 0.14);
    --myr-trust-icon-bg: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.market-your-research-page .myr-trust-card--reach {
    --myr-trust-accent: #6366f1;
    --myr-trust-soft: rgba(99, 102, 241, 0.14);
    --myr-trust-icon-bg: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
}

.market-your-research-page .myr-trust-card--workflow {
    --myr-trust-accent: #ff6900;
    --myr-trust-soft: rgba(255, 105, 0, 0.14);
}

.market-your-research-page .myr-trust-card--content {
    --myr-trust-accent: #7c3aed;
    --myr-trust-soft: rgba(124, 58, 237, 0.14);
    --myr-trust-icon-bg: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}

.market-your-research-page .myr-trust-card--support {
    --myr-trust-accent: #0891b2;
    --myr-trust-soft: rgba(8, 145, 178, 0.14);
    --myr-trust-icon-bg: linear-gradient(145deg, #ecfeff 0%, #cffafe 100%);
}

.market-your-research-page .myr-trust-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--myr-trust-icon-bg);
    border: 1px solid var(--myr-trust-soft);
    color: var(--myr-trust-accent);
    font-size: 22px;
    box-shadow: 0 6px 18px var(--myr-trust-soft);
    transition: transform 0.32s ease;
}

.market-your-research-page .myr-trust-card:hover .myr-trust-card__icon {
    transform: scale(1.06);
}

.market-your-research-page .myr-trust-card__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.market-your-research-page .myr-trust-card__text {
    margin: 0;
    margin-top: auto;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-why-closing {
    max-width: 820px;
    margin: clamp(36px, 5vw, 48px) auto 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    border-left: 4px solid var(--primary);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.06);
}

.market-your-research-page .myr-why-closing p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    font-weight: 500;
    color: #475569;
}

.market-your-research-page .myr-why-closing strong {
    color: var(--dark);
    font-weight: 800;
}

/* MYR â€” FAQ section (premium) */
.market-your-research-page .myr-faq-section {
    position: relative;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 50%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-faq-section__bg,
.market-your-research-page .myr-faq-section__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.market-your-research-page .myr-faq-section__bg {
    background:
        radial-gradient(ellipse 55% 45% at 50% 0%, rgba(255, 105, 0, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 100% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
}

.market-your-research-page .myr-faq-section__mesh {
    opacity: 0.28;
    background-image: radial-gradient(rgba(0, 26, 51, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

.market-your-research-page .myr-faq-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-faq-head {
    max-width: 720px;
    margin: 0 auto clamp(32px, 4.5vw, 44px);
}

.market-your-research-page .myr-faq-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-faq-kicker i {
    font-size: 14px;
}

.market-your-research-page .myr-faq-title {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    --bs-accordion-transition: height 0.35s ease;
}

.market-your-research-page .myr-faq-accordion .myr-faq-item {
    margin-bottom: 0.85rem;
    border-radius: 18px !important;
    border: 1px solid rgba(0, 26, 51, 0.08);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 8px 24px rgba(0, 26, 51, 0.05);
    overflow: hidden;
    transition: box-shadow 0.32s ease, border-color 0.32s ease, transform 0.32s ease;
}

.market-your-research-page .myr-faq-accordion .myr-faq-item:last-child {
    margin-bottom: 0;
}

.market-your-research-page .myr-faq-accordion .myr-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.18);
    box-shadow: 0 12px 32px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-faq-accordion .accordion-button {
    padding: clamp(1rem, 2vw, 1.2rem) clamp(1.15rem, 2.5vw, 1.5rem);
    padding-right: 3.25rem;
    font-size: clamp(0.9375rem, 1.6vw, 1.05rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    white-space: normal;
    text-align: left;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.market-your-research-page .myr-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(255, 105, 0, 0.06);
    box-shadow: none;
}

.market-your-research-page .myr-faq-accordion .accordion-button::after {
    filter: opacity(0.55);
}

.market-your-research-page .myr-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(48%) sepia(93%) saturate(1352%) hue-rotate(1deg) brightness(101%) contrast(105%);
}

.market-your-research-page .myr-faq-accordion .collapsing {
    transition: height 0.35s ease;
}

.market-your-research-page .myr-faq-accordion .accordion-body {
    padding: 0 clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.1rem, 2vw, 1.35rem);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.68;
    color: #64748b;
}

/* MYR â€” audit CTA section (premium) */
.market-your-research-page .myr-audit-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 35%, #ffffff 100%);
    border-top: 1px solid rgba(0, 26, 51, 0.05);
    overflow: hidden;
}

.market-your-research-page .myr-audit-section__bg,
.market-your-research-page .myr-audit-section__mesh,
.market-your-research-page .myr-audit-section__orb {
    position: absolute;
    pointer-events: none;
}

.market-your-research-page .myr-audit-section__bg {
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(13, 148, 136, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 20%, rgba(255, 105, 0, 0.06) 0%, transparent 52%);
}

.market-your-research-page .myr-audit-section__mesh {
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(rgba(0, 26, 51, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.market-your-research-page .myr-audit-section__orb {
    border-radius: 50%;
    filter: blur(44px);
    opacity: 0.4;
    animation: myrAuditOrbFloat 16s ease-in-out infinite;
}

.market-your-research-page .myr-audit-section__orb--1 {
    width: clamp(120px, 18vw, 200px);
    height: clamp(120px, 18vw, 200px);
    top: 8%;
    left: 8%;
    background: rgba(13, 148, 136, 0.18);
}

.market-your-research-page .myr-audit-section__orb--2 {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    bottom: 10%;
    right: 6%;
    background: rgba(255, 105, 0, 0.14);
    animation-delay: -7s;
}

@keyframes myrAuditOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -12px); }
}

.market-your-research-page .myr-audit-section > .container {
    position: relative;
    z-index: 1;
}

.market-your-research-page .myr-audit-panel {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.08);
    backdrop-filter: blur(10px);
}

.market-your-research-page .myr-audit-visual {
    position: relative;
    min-height: 280px;
}

.market-your-research-page .myr-audit-visual__glow {
    position: absolute;
    inset: 10% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    filter: blur(20px);
}

.market-your-research-page .myr-audit-visual__card {
    position: relative;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: 20px;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 12px 36px rgba(0, 26, 51, 0.08);
}

.market-your-research-page .myr-audit-visual__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.market-your-research-page .myr-audit-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f766e;
}

.market-your-research-page .myr-audit-visual__dots {
    display: flex;
    gap: 5px;
}

.market-your-research-page .myr-audit-visual__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.market-your-research-page .myr-audit-visual__dots span:first-child {
    background: #0d9488;
}

.market-your-research-page .myr-audit-visual__metrics {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.market-your-research-page .myr-audit-visual__metric-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
}

.market-your-research-page .myr-audit-visual__metric-bar {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.market-your-research-page .myr-audit-visual__metric-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #64748b 0%, #94a3b8 100%);
}

.market-your-research-page .myr-audit-visual__metric-bar--accent span {
    background: linear-gradient(90deg, #0d9488 0%, #14b8a6 100%);
}

.market-your-research-page .myr-audit-visual__float {
    position: absolute;
    right: -8px;
    bottom: -12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(13, 148, 136, 0.22);
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.1);
    font-size: 12px;
    font-weight: 800;
    color: #0f766e;
    animation: myrAuditOrbFloat 14s ease-in-out infinite;
}

.market-your-research-page .myr-audit-visual__float i {
    color: #0d9488;
}

.market-your-research-page .myr-audit-content {
    text-align: left;
}

.market-your-research-page .myr-audit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.market-your-research-page .myr-audit-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.market-your-research-page .myr-audit-lead {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: #64748b;
}

.market-your-research-page .myr-audit-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 105, 0, 0.08);
    border: 1px solid rgba(255, 105, 0, 0.22);
    font-size: 13px;
    font-weight: 700;
    color: #9a3412;
}

.market-your-research-page .myr-audit-urgency i {
    color: var(--primary);
}

.market-your-research-page .myr-audit-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.75rem 2rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.market-your-research-page .myr-audit-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 105, 0, 0.28);
}

.market-your-research-page .myr-audit-note {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.6;
    color: #475569;
}

@media (max-width: 991px) {
    .market-your-research-page .myr-audit-content {
        text-align: center;
    }

    .market-your-research-page .myr-audit-kicker,
    .market-your-research-page .myr-audit-urgency {
        justify-content: center;
    }

    .market-your-research-page .myr-audit-visual {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .market-your-research-page .myr-audit-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-trust-card,
    .market-your-research-page .myr-trust-card__icon,
    .market-your-research-page .myr-audit-section__orb,
    .market-your-research-page .myr-audit-visual__float,
    .market-your-research-page .myr-why-section__orb,
    .market-your-research-page .myr-audit-cta {
        transition: none;
        animation: none;
    }

    .market-your-research-page .myr-trust-card:hover,
    .market-your-research-page .myr-trust-card:hover .myr-trust-card__icon,
    .market-your-research-page .myr-audit-cta:hover {
        transform: none;
    }
}


.market-your-research-page .myr-final-cta-section {
    background: linear-gradient(180deg, #001a33 0%, #00345f 100%);
}

.market-your-research-page .myr-final-cta-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    color: #fff;
    font-weight: 900;
}

.market-your-research-page .myr-final-cta-sub {
    margin: 0 auto 22px;
    font-size: clamp(0.98rem, 1.65vw, 1.12rem);
    line-height: 1.55;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36rem;
}

.market-your-research-page .myr-final-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.market-your-research-page .myr-final-cta-actions .btn-theme-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.market-your-research-page .myr-final-cta-actions .btn {
    transition: transform 0.25s var(--myr-ease), box-shadow 0.25s ease, filter 0.25s ease;
}

.market-your-research-page .myr-final-cta-actions .btn:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.market-your-research-page .myr-final-cta-actions .btn-theme-outline:hover {
    background: #fff;
    color: #001a33;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .market-your-research-page .myr-final-cta-actions .btn:hover {
        transform: none;
    }
}

@media (max-width: 767px) {
    .market-your-research-page .myr-final-cta-actions .btn {
        width: 100%;
    }
}

/* ===== Research Publishing Suite (shares MYR design system via dual body class) ===== */
.research-publishing-page.market-your-research-page .rps-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.research-publishing-page.market-your-research-page .rps-disciplines-section .section-header {
    margin-bottom: clamp(28px, 3.5vw, 40px);
}

.research-publishing-page.market-your-research-page .rps-disciplines-section .subject-grid {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .research-publishing-page.market-your-research-page .rps-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .research-publishing-page.market-your-research-page .rps-process-section .myr-process-grid::before,
    .research-publishing-page.market-your-research-page .rps-process-section .myr-process-grid::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .research-publishing-page.market-your-research-page .rps-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .research-publishing-page.market-your-research-page .rps-process-grid {
        grid-template-columns: 1fr;
    }
}

/* Research Publishing â€” FAQ 2-column grid (accordion unchanged) */
.research-publishing-page .rps-faq-accordion .rps-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

@media (min-width: 768px) {
    .research-publishing-page .rps-faq-accordion .rps-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

.research-publishing-page .rps-faq-accordion .rps-faq-grid .rps-faq-item {
    margin-bottom: 0 !important;
    border-radius: 18px;
    border: 1px solid #e9edf2;
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.06);
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.26s ease, border-color 0.26s ease;
}

.research-publishing-page .rps-faq-accordion .rps-faq-grid .rps-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 26, 51, 0.09);
}

.research-publishing-page .rps-faq-accordion .rps-faq-grid .accordion-button {
    padding: 18px 20px;
}

.research-publishing-page .rps-faq-accordion .rps-faq-grid .accordion-body {
    padding: 18px 20px 20px;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Thesis Editing â€” FAQ 2-column grid */
.thesis-editing-page .tes-faq-accordion .tes-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

@media (min-width: 768px) {
    .thesis-editing-page .tes-faq-accordion .tes-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

.thesis-editing-page .tes-faq-accordion .tes-faq-grid .tes-faq-item {
    margin-bottom: 0 !important;
    border-radius: 18px;
    border: 1px solid #e9edf2;
    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.06);
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.26s ease, border-color 0.26s ease;
}

.thesis-editing-page .tes-faq-accordion .tes-faq-grid .tes-faq-item:hover {
    border-color: rgba(255, 105, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 26, 51, 0.09);
}

.thesis-editing-page .tes-faq-accordion .tes-faq-grid .accordion-button {
    padding: 18px 20px;
}

.thesis-editing-page .tes-faq-accordion .tes-faq-grid .accordion-body {
    padding: 18px 20px 20px;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* ===== Page-level polish (Home + Research Publishing) ===== */
 

.home-page .section-title,
.research-publishing-page .section-title,
.thesis-editing-page .section-title {
    margin-bottom: clamp(20px, 3vw, 34px);
}

.home-page .section-title > p,
.research-publishing-page .section-title > p,
.thesis-editing-page .section-title > p,
.home-page .section-sub-text,
.research-publishing-page .section-sub-text,
.thesis-editing-page .section-sub-text,
.home-page .steps-sub-text,
.research-publishing-page .steps-sub-text,
.thesis-editing-page .steps-sub-text {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.home-page .btn-theme-new,
.home-page .btn-theme-outline,
.research-publishing-page .btn-theme-new,
.research-publishing-page .btn-theme-outline,
.research-publishing-page .btn-submit-orange,
.thesis-editing-page .btn-theme-new,
.thesis-editing-page .btn-theme-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.home-page .top-banner {
    padding-top: clamp(130px, 14vw, 170px);
    padding-bottom: clamp(64px, 9vw, 110px);
}

.home-page .top-banner .row {
    --bs-gutter-x: 2rem;
}

.home-page .top-banner .left-col h1 {
    font-size: clamp(2rem, 4.8vw, 3.5rem);
}

.home-page .top-banner .right-img {
    max-width: 520px;
    margin-inline: auto;
}

.home-page .top-banner .right-img > img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-page .top-banner .right-img .satisfied-customer {
    top: clamp(200px, 54%, 280px);
    left: 0;
}

.home-page .top-banner .right-img .counter {
    top: clamp(320px, 78%, 410px);
    right: 0;
}

.home-page .client .img-icon img,
.home-page .why-award-item img,
.home-page .home-manuscript-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.home-page .feature-card-custom ul {
    padding-left: 1.1rem;
    margin-bottom: 0.8rem;
}

.home-page .feature-card-custom li {
    margin-bottom: 0.35rem;
}

.home-page .testimonial-card,
.research-publishing-page .feature-card-custom,
.research-publishing-page .metric-card {
    box-shadow: 0 10px 28px rgba(0, 26, 51, 0.06);
}

.research-publishing-page .steps-main-title,
.research-publishing-page .main-title,
.home-page .main-title,
.home-page .steps-main-title,
.home-page .section-main-heading {
    letter-spacing: -0.01em;
}

.research-publishing-page .services-check-card h4,
.research-publishing-page .services-advanced-card h4 {
    line-height: 1.35;
}

.research-publishing-page .services-check-card p,
.research-publishing-page .services-advanced-card p,
.research-publishing-page .metric-label {
    line-height: 1.7;
}

.research-publishing-page .faq-enhanced .accordion-item,
.home-page .faq-section .accordion-item {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home-page .top-banner .right-img {
        max-width: 470px;
    }
}

@media (max-width: 991px) {
    .home-page .top-banner .left-col {
        margin-bottom: 14px;
    }

    .home-page .top-banner .btn-sec {
        gap: 10px;
    }

    .home-page .top-banner .right-img .satisfied-customer {
        top: auto;
        bottom: 16%;
        left: 0;
    }

    .home-page .top-banner .right-img .counter {
        top: auto;
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .home-page .top-banner .btn-sec,
    .research-publishing-page .btn-sec {
        display: flex;
        flex-direction: column;
    }

    .home-page .top-banner .btn-sec .btn,
    .research-publishing-page .btn-sec .btn {
        width: 100%;
    }

    .home-page .top-banner .right-img .satisfied-customer,
    .home-page .top-banner .right-img .counter {
        position: static;
        width: 100%;
        margin-top: 12px;
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Inner pages: keep hero content below the overlapping site header */
@media (max-width: 1199.98px) {
    :root {
        --site-header-height: 148px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --site-header-height: 144px;
    }
}

body:not(.home-page) .top-banner,
body:not(.home-page) .top-banner-pages,
body:not(.home-page) .inner-page-hero,
body:not(.home-page) .career-skills-hero.top-banner {
    padding-top: calc(var(--site-header-height) + clamp(24px, 3vw, 40px)) !important;
}