:root {
    --footer-navy: #002664;
    --footer-gray: #484848;
    --footer-gray-light: #9ca3af;
    --footer-border: #e5e7eb;
    --footer-bg: #ffffff;
    --brand-red: #d60302;
    --header-text: #484848;
    --brand-gold: #E3A72F;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.row > [class*="col-"] {
    min-width: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111827;
}

img {
    max-width: 100%;
}

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

.header-cta,
.hero-btn,
.cta-box__btn,
.service-card__btn,
.consult-form__btn,
.footer-newsletter__btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.site-header .navbar {
    padding: 24px 0;
    background: transparent;
}

.site-header .navbar-brand {
    padding: 0;
    margin-right: 24px;
}

.header-logo {
    width: 120px;
    /* max-width: 100%;
    height: auto; */
}

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

.site-header .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--header-text);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--footer-navy);
}

.site-header .nav-link.active {
    color: var(--brand-red);
}

.site-header .nav-link--contact {
    text-transform: none;
}

.site-header .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top-color: var(--header-text);
}

.site-header .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    margin-top: 8px;
    max-height: 280px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 38, 100, 0.35) transparent;
}

.site-header .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.site-header .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 38, 100, 0.35);
    border-radius: 6px;
}

.site-header .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.site-header .dropdown-item {
    font-size: 14px;
    color: var(--header-text);
    padding: 8px 20px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header .dropdown-item:hover {
    color: var(--footer-navy);
    background-color: #f3f4f6;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 50px;
    background-color: var(--footer-navy);
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.header-cta:hover {
    background-color: #001d4d;
    color: #ffffff;
}

.header-cta i {
    font-size: 13px;
}

.hero-banner {
    position: relative;
    min-height: 740px;
    padding: 160px 0 100px;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-banner__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.hero-banner__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 20px;
}

.hero-banner__title {
    margin-bottom: 24px;
}

.hero-banner__title-main {
    display: block;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hero-banner__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    color: #D70302;
    text-transform: none;
    margin-top: 4px;
}

.hero-banner__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--footer-gray);
    max-width: 620px;
    margin: 0 auto 32px;
}

.hero-banner__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 28px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.hero-btn i {
    font-size: 13px;
}

.hero-btn--primary {
    background-color: var(--footer-navy);
    color: #ffffff;
    border: 2px solid var(--footer-navy);
}

.hero-btn--primary:hover {
    background-color: #001d4d;
    border-color: #001d4d;
    color: #ffffff;
}

.hero-btn--outline {
    background-color: #ffffff;
    color: #111111;
    border: 2px solid #111111;
}

.hero-btn--outline:hover {
    background-color: #111111;
    color: #ffffff;
}

.hero-banner__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-banner__trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.hero-banner__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--footer-gray);
}

.hero-banner__stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--brand-red);
    font-size: 13px;
}

.hero-banner__plus {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-gold);
    line-height: 1;
}

/* Stats Section */
.stats-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 220px;
    background-color: #ffffff;
    padding: 48px 0;
}

.stats-item {
    position: relative;
    text-align: center;
    padding: 32px 24px;
}

.stats-col:not(:last-child) .stats-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: #e5e7eb;
}

.stats-item__number {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.stats-item__number i {
    font-size: 0.75em;
    margin-left: 4px;
    vertical-align: middle;
}

.stats-item__label {
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.stats-item__desc {
    font-size: 14px;
    color: var(--footer-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background-color: #ffffff;
    content-visibility: auto;
    contain-intrinsic-size: 1px 420px;
}

.cta-box {
    background-color: #f2f2f2;
    border-radius: 28px;
    overflow: hidden;
}

.cta-box__inner {
    display: flex;
    align-items: center;
    min-height: 340px;
}

.cta-box__inner--reverse {
    flex-direction: row-reverse;
}

.cta-box__content {
    flex: 0 0 58%;
    max-width: 58%;
    min-width: 0;
    padding: 30px 40px 30px 64px;
}

.cta-box__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 14px;
}

.cta-box__title {
    font-family: 'Joan', serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 22px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
}

.title-keep-single {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: clamp(24px, 2.6vw, 38px);
}

.gw-problem .title-keep-single {
    font-size: clamp(22px, 2.35vw, 36px);
}

.cta-box__title--two-line {
    white-space: normal;
    max-width: 100%;
    line-height: 1.3;
}

.cta-box__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 30px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.cta-box__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    padding: 0 26px;
    border-radius: 50px;
    background-color: var(--footer-navy);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cta-box__btn:hover {
    background-color: #001d4d;
    color: #ffffff;
}

.cta-box__btn i {
    font-size: 14px;
}

.cta-box__media {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    overflow: hidden;
    padding-right: 0;
}

.cta-box__media img {
    width: auto;
    height: 340px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    margin-right: -20px;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 0px 0 140px;
    background-color: #ffffff;
    background-image: url('../images/the-red-bg.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    overflow: hidden;
}

.services-section__header {
    max-width: 720px;
    margin: 0 auto 56px;
}

.services-section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.services-section__title {
    margin-bottom: 20px;
}

.services-section__title-main {
    display: block;
    font-size: clamp(28px, 3.4vw, 31px);
    font-weight: 600;
    line-height: 22px;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    max-width: 100%;
    overflow-wrap: break-word;
}

.services-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(39px, 4.9vw, 63px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    text-transform: none;
    margin-top: 4px;
}

.services-section__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 0;
}

.services-section .container {
    position: relative;
    max-width: 1320px;
}

.services-section__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: stretch;
}

.services-section__grid .service-card {
    flex: 0 1 calc((100% - 72px) / 4);
    width: calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
}

.service-card {
    width: 100%;
    aspect-ratio: 1;
    min-height: 0;
    background-color: #F8EFEF;
    border-radius: 18px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.service-card__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.service-card__title {
    font-family: 'Joan', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #0B0B0B;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.service-card__desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--footer-gray);
    margin-bottom: 16px;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 38, 100, 0.35) transparent;
}

.service-card__desc::-webkit-scrollbar {
    width: 4px;
}

.service-card__desc::-webkit-scrollbar-thumb {
    background-color: rgba(0, 38, 100, 0.35);
    border-radius: 4px;
}

.service-card__desc::-webkit-scrollbar-track {
    background: transparent;
}

.service-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 50px;
    background-color: #ffffff;
    color: #111111;
    border: 1.5px solid #111111;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: auto;
    font-size: 14px;
}

.service-card__btn:hover {
    background-color: #111111;
    color: #ffffff;
}

.service-card__btn i {
    font-size: 12px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.portfolio-section__header {
    max-width: 720px;
    margin: 0 auto 40px;
}

.portfolio-section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.portfolio-section__title {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.portfolio-section__title-main {
    font-size: clamp(28px, 3.15vw, 43px);
    font-weight: 600;
    line-height: 1.15;
    color: #0B0B0B;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    max-width: 100%;
    overflow-wrap: break-word;
}

.portfolio-section__title-script {
    font-family: 'Playball', cursive;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 400;
    line-height: 1;
    color: var(--brand-red);
}

.portfolio-section__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 0;
}

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 16px;
    margin-bottom: 44px;
    border: none;
    padding: 0;
    overflow: visible;
}

.portfolio-tabs .nav-item {
    margin: 0;
    padding: 0;
}

.portfolio-tabs .nav-link {
    background: linear-gradient(180deg, #fafafa 0%, #ececec 100%);
    color: #373737;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 14px 24px;
    font-family: 'Joan', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.portfolio-tabs .nav-link:hover,
.portfolio-tabs .nav-link:focus {
    background: linear-gradient(180deg, #003380 0%, #002664 100%);
    color: #ffffff;
    border-color: #001d4d;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.portfolio-tabs .nav-link.active,
.portfolio-tabs .nav-link.active:hover,
.portfolio-tabs .nav-link.active:focus {
    background: linear-gradient(180deg, #003380 0%, #002664 100%);
    color: #ffffff;
    border-color: #001d4d;
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.portfolio-item {
    aspect-ratio: 3 / 4;
    background-color: #f2f2f2;
    border-radius: 6px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

/* Story Section */
.story-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.story-section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 14px;
}

.story-section__title {
    margin-bottom: 36px;
}

.story-section__title-main {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    color: #0B0B0B;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.story-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: #d70302;
    text-transform: none;
    margin-top: 6px;
}

.story-features {
    margin-bottom: 0;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.story-feature + .story-feature {
    margin-top: 28px;
}

.story-feature__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 4px;
    line-height: 0;
}

.story-feature__icon img {
    width: 34px;
    height: 34px;
    display: block;
}

.story-feature__title {
    font-family: 'Joan', serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    color: #0B0B0B;
    margin-bottom: 8px;
}

.story-feature__desc {
    font-size: 16px;
    line-height: 25px;
    font-weight:500;
    color: var(--footer-gray);
    margin-bottom: 0;
}

.story-section__visual {
    position: relative;
    padding-left: 0;
}

.story-stat {
    text-align: left;
    margin-bottom: -152px;
    padding-left: 4px;
}

.story-stat__number {
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 700;
    line-height: 1;
    color: var(--brand-red);
    margin-bottom: 6px;
}

.story-stat__label {
    font-size: 14px;
    font-weight: 600;
    color: #0B0B0B;
    margin-bottom: 0;
}

.story-collage {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: 0;
    line-height: 0;
}

.story-collage__img {
    width: 100%;
    height: auto;
    display: block;
    /* mix-blend-mode: lighten; */
}

/* Red Section */
.red-section {
    position: relative;    
    background-image: url('../images/red-bg.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 90px 0 100px;
    margin-top: 0;
    overflow: hidden;
}

.red-section .container {
    position: relative;
    z-index: 4;
}

.red-section__inner {
    position: relative;
    z-index: 2;
}

.red-section__bottom-shape {
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 120%;
    height: 80px;
    background: #ffffff;
    border-radius: 50% 50% 0 0;
    z-index: 3;
    pointer-events: none;
}

/* Process Steps */
.process-steps {
    position: relative;
    margin-bottom: 70px;
}

.process-steps__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    pointer-events: none;
    display: none;
}

.process-steps__grid {
    position: relative;
    z-index: 2;
}

.process-card {
    position: relative;
    background-color: #ececec;
    border-radius: 4px;
    padding: 28px 24px 36px;    
}

/* .process-card::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 12px solid #ececec;
} */

.process-card--1 {
    margin-top: 0;
}

.process-card--2 {
    margin-top: 40px;
}

.process-card--3 {
    margin-top: 80px;
}

.process-card--4 {
    margin-top: 120px;
}

.process-card__number {
    display: block;
    font-family: 'Joan', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: var(--footer-navy);
    margin-bottom: 14px;
}

.process-card__title {
    font-family: 'Joan', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    color: #0B0B0B;
    margin-bottom: 12px;
}

.process-card__desc {
    font-size: 17px;
    line-height: 26px;
    color: #4E4E4E;
    margin-bottom: 0;
}

/* Testimonials Block */
.testimonials-block {
    margin-bottom: 36px;
}

.testimonials-block__header {
    max-width: 820px;
    margin: 0 auto;
}

.testimonials-block__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffff;
    margin-bottom: 0;
}

.testimonials-block__eyebrow {
    font-family: 'Joan', serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.testimonials-block__title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    max-width: 100%;
    font-family: 'Joan', serif;
}

.testimonials-block__title-main {
    display: block;
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    max-width: 100%;
    overflow-wrap: break-word;
}

.testimonials-block__title-script {
    font-family: 'Playball', cursive;
    font-size: clamp(28px, 3.15vw, 43px);
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    text-transform: none;
    max-width: 100%;
    overflow-wrap: break-word;
}

.testimonial-slider-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
    padding: 0 clamp(20px, 4vw, 60px);
}

.testimonial-slider {
    margin: 0;
}

.testimonial-slider .slick-list {
    overflow: hidden;
    margin: 0 -10px;
    padding: 2px 0;
}

.testimonial-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.testimonial-slider .slick-slide {
    height: auto;
}

.testimonial-slider .slick-slide > div,
.testimonial-slide {
    height: 100%;
    padding: 0 10px;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid var(--brand-red);
    border-radius: 20px;
    padding: 30px 30px 30px 30px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.testimonial-card__stars {
    display: block;
    margin: 0 0 16px;
    line-height: 0;
}

.testimonial-card__stars img {
    width: 110px;
    height: auto;
    display: block;
}

.testimonial-card__text {
    font-family: 'Joan', serif;
    font-size: 20px;
    line-height: 28px;
    color: #0B0B0B;
    margin: 0 0 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
    width: 100%;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card__info {
    flex: 1;
    min-width: 0;
}

.testimonial-card__name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #0B0B0B;
    margin: 0 0 2px;
}

.testimonial-card__role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #373737;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 12px 24px;
    min-width: 228px;
    min-height: 87px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust-badge img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Consult Section */
.consult-section {
    position: relative;
    padding: 100px 0 110px;
    background-color: #f7f8f9;
    overflow: hidden;
}

.consult-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.45) 0%, rgba(186, 230, 253, 0.28) 40%, rgba(247, 248, 249, 0) 72%);
    pointer-events: none;
}

.consult-section::after {
    content: '';
    position: absolute;
    top: 120px;
    right: 8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(134, 239, 172, 0.18) 0%, transparent 68%);
    pointer-events: none;
}

.consult-section .container {
    position: relative;
    z-index: 1;
}

.consult-section__header {
    max-width: 720px;
    margin: 0 auto 56px;
}

.consult-section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.consult-section__title {
    margin-bottom: 20px;
}

.consult-section__title-main {
    display: block;
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 600;
    line-height: 1.15;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    max-width: 100%;
    overflow-wrap: break-word;
}

.consult-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(39px, 4.9vw, 63px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    text-transform: none;
    margin-top: 4px;
}

.consult-section__subtitle {
    font-family: 'Playball', cursive;
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    color: #0B0B0B;
    margin-bottom: 20px;
}

.consult-section__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--footer-gray);
    max-width: 720px;
    margin: 0 auto 20px;
}

.consult-section__desc:last-of-type {
    margin-bottom: 0;
}

.consult-section__col-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consult-testimonial {
    background-color: #ffffff;
    border: 1px solid #000;
    border-radius: 18px;
    padding: 30px 32px;
    box-shadow: 0 2px 14px rgba(0, 38, 100, 0.05);
}

.consult-testimonial__stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f5b301;
    font-size: 15px;
    margin-bottom: 18px;
}

.consult-testimonial__text {
    font-family: 'Joan', serif;
    font-size: 19px;
    line-height: 1.65;
    color: #0B0B0B;
    margin: 0 0 22px;
}

.consult-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.consult-testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.consult-testimonial__avatar img {
    width: 100%;
    height: auto;
    display: block;
}

.consult-testimonial__name {
    font-size: 15px;
    font-weight: 500;
    color: #0B0B0B;
    margin: 0 0 3px;
}

.consult-testimonial__role {
    font-size: 13px;
    color: #373737;
    margin: 0;
}

.consult-next {
    background-color: #FFF7ED;
    border-radius: 18px;
    padding: 30px 55px 30px 32px;
}

.consult-next__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0B0B0B;
    margin-bottom: 20px;
}

.consult-next__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 24px;
    color: #505863;
    font-weight: 600;
}

.consult-next__list li + li {
    margin-top: 16px;
}

.consult-next__num {
    font-weight: 700;
    color: #505863;
    flex-shrink: 0;
    min-width: 24px;
    font-size: 18px;
}

.consult-form-box {
    background-color: #ffffff;
    border: 1px solid #000;
    border-radius: 18px;
    padding: 36px 34px 32px;
    height: 100%;
    box-shadow: 0 2px 14px rgba(0, 38, 100, 0.05);
    border: 1px solid;
}

.consult-form-box__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 26px;
}

.consult-form__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}

.consult-form__required {
    color: var(--brand-red);
}

.consult-form__input,
.consult-form__textarea {
    width: 100%;
    border: 1px solid #B7B7B7;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-form__input {
    height: 48px;
    border-radius: 27px;
}

.consult-form__input::placeholder,
.consult-form__textarea::placeholder {
    color: #9ca3af;
}

.consult-form__input:focus,
.consult-form__textarea:focus {
    border-color: var(--footer-navy);
    box-shadow: 0 0 0 3px rgba(0, 38, 100, 0.08);
}

.consult-form__input.is-invalid,
.consult-form__textarea.is-invalid,
.footer-newsletter__input.is-invalid {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(214, 3, 2, 0.12);
}

.consult-form__textarea {
    resize: vertical;
    min-height: 132px;
    border-radius: 8px;
}

.consult-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    margin-top: 4px;
    border: none;
    border-radius: 27px;
    background-color: var(--footer-navy);
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.consult-form__btn:hover {
    background-color: #001d4d;
    color: #ffffff;
}

.consult-form__btn i {
    font-size: 14px;
}

.consult-form-box__notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 56px;
    margin-top: 22px;
}

.consult-form-box__note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #373737;
}

.consult-form-box__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--brand-red);
    flex-shrink: 0;
}

.consult-form-box__link {
    font-size: 13px;
    line-height: 1.55;
    color: #6b7280;
    margin: 20px 0 0;
    text-align: center;
}

.consult-form-box__link a {
    color: var(--footer-navy);
    font-weight: 600;
    text-decoration: none;
}

.consult-form-box__link a:hover {
    text-decoration: underline;
}

.consult-form-box__link a i {
    font-size: 11px;
    margin-left: 3px;
}

@media (min-width: 992px) {
    .process-steps__line {
        display: block;
    }
}

.site-header .navbar-toggler {
    border: none;
    padding: 0;
    box-shadow: none !important;
}

.site-header .navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23002664' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-footer {
    background-color: var(--footer-bg);
    padding: 60px 0 0;
}

/* Newsletter */
.footer-newsletter {
    padding-bottom: 48px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-newsletter__title {
    font-size: 26px;
    font-weight: 600;
    color: #0B0B0B;
    line-height: 1.3;
    margin-bottom: 10px;
}

.footer-newsletter__text {
    font-size: 14px;
    font-weight: 500;
    color: #484848;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-newsletter--compact .footer-newsletter__title {
    font-size: 22px;
    line-height: 1.3;
}

.footer-newsletter--compact .footer-newsletter__text {
    font-size: 13px;
}

.footer-newsletter__form {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.footer-newsletter__input {
    flex: 1;
    max-width: 320px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-newsletter__input::placeholder {
    color: var(--footer-gray-light);
}

.footer-newsletter__input:focus {
    border-color: var(--footer-navy);
}

.footer-newsletter__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 50px;
    background-color: var(--footer-navy);
    color: #ffffff;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.footer-newsletter__btn:hover {
    background-color: #001d4d;
    color: #ffffff;
}

.footer-newsletter__btn i {
    font-size: 13px;
}

/* Main Footer */
.footer-main {
    padding: 48px 0;
}

.footer-logo {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    width: 120px;
    line-height: 0;
}

.footer-logo img {
    display: block;
    margin-top: 0;
    width: 100%;
    height: auto;
}

.footer-brand__text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--footer-gray);
    margin-bottom: 0;
    max-width: 100%;
    text-align: justify;
}

.footer-contact__social {
    margin-top: 28px;
}

.footer-contact__social .footer-heading {
    margin-bottom: 14px;
}

.footer-services {
    padding: 40px 0 48px;
    border-top: 1px solid var(--footer-border);
}

.footer-services__heading {
    font-size: 16px;
    font-weight: 600;
    color: #0B0B0B;
    margin-bottom: 16px;
    line-height: 1.3;
}

.footer-services__links li + li {
    margin-top: 10px;
}

.footer-services__links a {
    font-size: 13px;
    color: var(--footer-gray);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-services__links a:hover {
    color: var(--footer-navy);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #505863;
    text-transform: capitalize;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--footer-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--footer-navy);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--footer-gray);
}

.footer-contact li + li {
    margin-top: 14px;
}

.footer-contact i {
    color: var(--footer-navy);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--footer-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--footer-navy);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-navy);
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.75;
    color: var(--footer-navy);
}

/* Bottom Bar */
.footer-bottom {
    padding: 20px 0 24px;
    border-top: 1px solid var(--footer-border);
}

.footer-bottom__copy {
    font-size: 13px;
    color: #484848;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.footer-bottom__links a {
    font-size: 13px;
    color: #484848;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
    color: var(--footer-navy);
}

.services-section:before {
    content: '';
    background: url(assets/images/the-red-bg.webp);
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.services-section:before {
    content: '';
    background: url('assets/images/the-red-bg.webp');
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.services-section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 119px;
    background:#D70302;
}

/* About Us â€“ hero banner */
.hero-banner--about {
    background: #f6efe4 url('../images/about-hero.webp') no-repeat center center;
    background-size: cover;
}

.hero-banner--about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-banner--about .hero-banner__content {
    position: relative;
    z-index: 2;
}

.hero-banner--about .hero-banner__title-script {
    color: #d70302;
}

.hero-banner--about-us .hero-banner__title-main {
    font-size: clamp(22px, 2.8vw, 36px);
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .hero-banner--about-us .hero-banner__title-main {
        white-space: normal;
    }
}

.hero-banner--author-resources {
    background-image: url('../images/about-hero.webp');
}

.hero-banner--social-media {
    min-height: 460px;
    padding: 140px 0 64px;
    background-image: url('../images/about-hero.webp');
}

.hero-banner--social-media::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 28%,
        rgba(255, 255, 255, 0.62) 55%,
        rgba(255, 255, 255, 0.75) 100%
    );
}

.hero-banner--social-media .hero-banner__title-script {
    color: #d70302;
}

.hero-banner--book-launch-campaigns {
    min-height: 460px;
    padding: 140px 0 64px;
    background-image: url('../images/about-hero.webp');
}

.hero-banner--book-launch-campaigns::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 28%,
        rgba(255, 255, 255, 0.62) 55%,
        rgba(255, 255, 255, 0.75) 100%
    );
}

.hero-banner--book-launch-campaigns .hero-banner__title-script {
    color: #d70302;
}

/* Contact â€“ hero banner */
.hero-banner--contact {
    min-height: 480px;
    padding: 110px 0 70px;
    background: #f6efe4 url('../images/contact-hero.webp') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-banner--contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-banner--contact .hero-banner__content {
    position: relative;
    z-index: 2;
}

.hero-banner--contact .hero-banner__title-script {
    color: var(--brand-red);
}

.hero-banner--contact .hero-banner__desc {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact â€“ main section */
.contact-section {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.contact-section__header {
    max-width: 720px;
    margin: 0 auto 55px;
}

.contact-section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.contact-section__title {
    margin-bottom: 18px;
}

.contact-section__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
}

.contact-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    margin-top: 4px;
}

.contact-section__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 0;
}

.contact-info {
    height: 100%;
}

.contact-info__panel {
    height: 100%;
    background: linear-gradient(180deg, #D60302 0%, #8e0201 100%);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 24px 50px rgba(214, 3, 2, 0.12);
}

.contact-info__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffd27a;
    margin-bottom: 14px;
}

.contact-info__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-bottom: 14px;
}

.contact-info__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.contact-info__list {
    margin-bottom: 30px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-info__item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}

.contact-info__item + .contact-info__item {
    margin-top: 14px;
}

.contact-info__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 17px;
}

.contact-info__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
    min-width: 0;
}

.contact-info__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info__value {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

a.contact-info__value:hover {
    color: #ffd27a;
}

.contact-info__social-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

.contact-info__social-links {
    display: flex;
    gap: 12px;
}

.contact-info__social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-info__social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--brand-red);
}

/* Contact â€“ form box */
.contact-form-box {
    height: 100%;
    border: 1px solid #e8e8e8;
    box-shadow: 0 20px 50px rgba(0, 38, 100, 0.1);
}

.contact-form-box .consult-form-box__title {
    color: var(--footer-navy);
    font-size: 22px;
}

/* Contact â€“ features strip */
.contact-features {
    margin-top: 50px;
}

.contact-feature {
    text-align: center;
    padding: 32px 24px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0, 38, 100, 0.06);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 38, 100, 0.12);
}

.contact-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff2f2;
    color: var(--brand-red);
    font-size: 22px;
    margin-bottom: 18px;
}

.contact-feature__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--footer-navy);
    margin-bottom: 10px;
}

.contact-feature__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--footer-gray);
    margin-bottom: 0;
}

/* About Us â€“ values section red background */
.services-section--about {
    background-color: #D70302;
    background-image: none;
    padding: 90px 0 100px;
}

.services-section--about::before {
    display: none;
    content: none;
}

.services-section--about .services-section__eyebrow,
.services-section--about .services-section__title-main,
.services-section--about .services-section__title-script,
.services-section--about .services-section__desc {
    color: #ffffff;
}

/* About Us â€“ Mission & Vision */
.about-mv {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-mv--alt {
    background-color: #faf8f5;
}

.about-mv__media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 38, 100, 0.12);
}

.about-mv__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-mv__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.about-mv__title {
    margin-bottom: 20px;
}

.about-mv__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #0B0B0B;
}

.about-mv__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(36px, 4.2vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    margin-top: 4px;
}

.about-mv__desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--footer-gray);
    margin-bottom: 24px;
}

.about-mv__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #0B0B0B;
}

.about-mv__list li + li {
    margin-top: 14px;
}

.about-mv__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    line-height: 0;
    margin-top: 1px;
}

.about-mv__check img {
    width: 24px;
    height: 24px;
    display: block;
}

/* About Us â€“ Commitment */
.commitment-section {
    position: relative;
    padding: 90px 0 100px;
    background-color: #002664;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 640px;
}

.commitment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/red-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.08;
    pointer-events: none;
}

.commitment-section::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 167, 47, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.commitment-section .container {
    position: relative;
    z-index: 2;
}

.commitment-section__title {
    text-align: center;
    margin-bottom: 52px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-section__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    max-width: 100%;
    overflow-wrap: break-word;
}

.commitment-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(35px, 4.4vw, 55px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-gold);
    margin-left: 0;
    margin-top: 6px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.commitment-section--consultation .commitment-section__title-main {
    font-size: clamp(22px, 2.8vw, 34px);
}

.commitment-section--consultation .commitment-section__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.commitment-section--editing .commitment-section__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.commitment-section--editing .commitment-section__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.commitment-section--proofreading .commitment-section__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.commitment-section--proofreading .commitment-section__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.commitment-section--book-formatting .commitment-section__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.commitment-section--book-formatting .commitment-section__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.commitment-section--illustration .commitment-section__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.commitment-section--illustration .commitment-section__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.commitment-section--book-marketing .commitment-section__title-main {
    font-size: clamp(18px, 2.2vw, 28px);
}

.commitment-section--book-marketing .commitment-section__title-script {
    font-size: clamp(26px, 3.4vw, 40px);
}

.commitment-section--book-marketing .commitment-card__title {
    font-size: 16px;
}

.commitment-section--book-marketing .commitment-card__desc {
    font-size: 13px;
    line-height: 1.6;
}

.commitment-section--book-marketing-why .commitment-section__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.commitment-section--book-marketing-why .commitment-section__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.commitment-section--consultation .commitment-card__title {
    font-size: 18px;
}

.commitment-section--consultation .commitment-card__desc {
    font-size: 13px;
    line-height: 1.6;
}

.commitment-section__title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-gold), #ffffff);
}

.commitment-section .row {
    --commitment-gap: 20px;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: grid;
    gap: var(--commitment-gap);
    align-items: stretch;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    counter-reset: commitment-card;
}

.commitment-section .row:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-section .row:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-section .row:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commitment-section .row:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.commitment-section .row:has(> :nth-child(6):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-section .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    display: flex;
}

.commitment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 26px 20px 24px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--brand-red);
}

.commitment-card::after {
    content: counter(commitment-card, decimal-leading-zero);
    counter-increment: commitment-card;
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Joan', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: rgba(0, 38, 100, 0.07);
    pointer-events: none;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.commitment-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: -1;
    width: 50px;
    height: 50px;
    margin: 0 0 18px;
    border-radius: 14px;
    background-color: var(--brand-red);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(214, 3, 2, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    flex-shrink: 0;
}

.commitment-card__icon i {
    transform: rotate(45deg);
}

.commitment-card:hover .commitment-card__icon {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(214, 3, 2, 0.34);
}

.commitment-card__title {
    font-family: 'Joan', serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.25;
    color: #0b0b0b;
    margin-bottom: 12px;
    padding-right: 36px;
}

.commitment-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 0;
    flex: 1 1 auto;
}

.commitment-card__link {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: none;
}

.commitment-card__link:hover {
    text-decoration: underline;
}

.commitment-section .row:has(> :nth-child(5):last-child) .commitment-card {
    padding: 22px 16px 20px;
}

.commitment-section .row:has(> :nth-child(5):last-child) .commitment-card__title {
    font-size: clamp(16px, 1.35vw, 18px);
    padding-right: 28px;
}

.commitment-section .row:has(> :nth-child(5):last-child) .commitment-card__desc {
    font-size: clamp(12px, 1.05vw, 13px);
    line-height: 1.6;
}

.commitment-section .row:has(> :nth-child(5):last-child) .commitment-card::after {
    font-size: 32px;
    top: 12px;
    right: 12px;
}

.commitment-section .row:has(> :nth-child(5):last-child) .commitment-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
}

/* About Us â€“ Shared Journey (white + slider) */
.journey-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    padding: 70px 0;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(214, 3, 2, 0.08) 0%, rgba(214, 3, 2, 0) 70%);
    pointer-events: none;
}

.journey-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.journey-section__inner {
    max-width: 560px;
    margin-left: auto;
    padding: 0 10px 0 0;
    width: 100%;
}

.journey-section__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.journey-section__title {
    margin-bottom: 22px;
}

.journey-section__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
}

.journey-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    margin-top: 4px;
}

.journey-section__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--footer-gray);
    margin-bottom: 18px;
}

.journey-section__desc--strong {
    font-weight: 600;
    color: #0B0B0B;
}

.journey-section__list {
    margin: 0 0 20px;
    padding-left: 1.1rem;
}

.journey-section__list li {
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--footer-gray);
}

.journey-section__list li:last-child {
    margin-bottom: 0;
}

.journey-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 13px 28px;
    border-radius: 30px;
    background-color: var(--brand-red);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(214, 3, 2, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.journey-section__btn i {
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.journey-section__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(214, 3, 2, 0.45);
    color: #ffffff;
    background-color: #b80201;
}

.journey-section__btn:hover i {
    transform: rotate(45deg) translate(2px, -2px);
}

.journey-slider {
    padding: 0;
}

.journey-slider .slick-track {
    display: flex;
    align-items: center;
}

.journey-slide {
    padding: 0 8px;
}

.journey-slide img {
    width: 100%;
    /* height: 260px; */
    object-fit: cover;
    border-radius: 8px;
    /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-slide img:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.4);
}

.process-card--1{
    position:relative;
}
.process-card--1::before {
    content: '';
    position: absolute;
    background: url(../images/connection.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 72px;
    width: 100%;
    top: 15px;
    right: -24px;
}
.process-card--2{
    position:relative;
}
.process-card--2::before {
    content: '';
    position: absolute;
    background: url(../images/connection.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 72px;
    width: 100%;
    top: 21px;
    right: -24px;
}
.process-card--3{
    position:relative;
}
.process-card--3::before {
    content: '';
    position: absolute;
    background: url(../images/connection.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 72px;
    width: 100%;
    top: 37px;
    right: -24px;
}

/* ============================================================
   Service Hero â€“ split banner (left content / right form)
   ============================================================ */
.service-hero {
    position: relative;
    padding: 150px 0 90px;
    background-color: #f6efe4;
    background-image: url('../images/about-hero.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 250, 0.92) 0%, rgba(255, 253, 250, 0.8) 40%, rgba(255, 253, 250, 0.4) 65%, rgba(255, 253, 250, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-hero .container {
    position: relative;
    z-index: 3;
}

.service-hero__content {
    max-width: 100%;
    min-width: 0;
}

.service-hero__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 10px;
}

.service-hero__title {
    margin-bottom: 14px;
}

.service-hero__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    max-width: 100%;
    overflow-wrap: break-word;
}

.service-hero__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    margin-top: 0;
}

.service-hero__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #3f3f3f;
    margin-bottom: 26px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.service-hero__list {
    margin-bottom: 34px;
}

.service-hero__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #2a2a2a;
    font-weight: 500;
}

.service-hero__list li + li {
    margin-top: 12px;
}

.service-hero__list i {
    color: var(--brand-red);
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-hero__list-text {
    min-width: 0;
}

.service-hero__list-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #111111;
    margin-bottom: 3px;
}

.service-hero__list-text span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--footer-gray);
}

.service-hero[class*="service-hero--"] .service-hero__title-main {
    line-height: 1.15;
}

.service-hero[class*="service-hero--"] .service-hero__title-script {
    line-height: 1.1;
    margin-top: 0;
}

.service-hero--cover-design .service-hero__title-main {
    font-size: clamp(18px, 2.2vw, 26px);
}

.service-hero--cover-design .service-hero__title-script {
    font-size: clamp(24px, 3.2vw, 38px);
}

.service-hero--publishing-consultation .service-hero__title-main {
    font-size: clamp(18px, 2.2vw, 26px);
}

.service-hero--publishing-consultation .service-hero__title-script {
    font-size: clamp(24px, 3.2vw, 38px);
}

.service-hero--editing .service-hero__title-main {
    font-size: clamp(22px, 2.6vw, 34px);
}

.service-hero--editing .service-hero__title-script {
    font-size: clamp(28px, 3.8vw, 44px);
}

.service-hero--editing .service-hero__desc {
    font-size: 14px;
    line-height: 1.65;
}

.service-hero--proofreading .service-hero__title-main {
    font-size: clamp(18px, 2.2vw, 26px);
}

.service-hero--proofreading .service-hero__title-script {
    font-size: clamp(28px, 3.8vw, 44px);
}

.service-hero--proofreading .service-hero__desc {
    font-size: 14px;
    line-height: 1.65;
}

.service-hero--book-formatting .service-hero__title-main {
    font-size: clamp(18px, 2.2vw, 26px);
}

.service-hero--book-formatting .service-hero__title-script {
    font-size: clamp(28px, 3.8vw, 44px);
}

.service-hero--book-formatting .service-hero__desc {
    font-size: 14px;
    line-height: 1.65;
}

.service-hero--illustration .service-hero__title-main {
    font-size: clamp(22px, 2.6vw, 34px);
}

.service-hero--illustration .service-hero__title-script {
    font-size: clamp(28px, 3.8vw, 44px);
}

.service-hero--illustration .service-hero__desc {
    font-size: 14px;
    line-height: 1.65;
}

.service-hero--illustration .service-hero__form-title {
    font-size: 18px;
}

.service-hero--book-marketing .service-hero__title-main {
    font-size: clamp(22px, 2.6vw, 34px);
}

.service-hero--book-marketing .service-hero__title-script {
    font-size: clamp(28px, 3.8vw, 44px);
}

.service-hero--book-marketing .service-hero__desc {
    font-size: 14px;
    line-height: 1.65;
}

.service-hero--book-marketing .service-hero__form-title {
    font-size: 18px;
}

.service-hero--amazon-book-marketing .service-hero__title-main {
    font-size: clamp(18px, 2.2vw, 26px);
}

.service-hero--amazon-book-marketing .service-hero__title-script {
    font-size: clamp(24px, 3.2vw, 38px);
}

.service-hero--cover-design .service-hero__desc {
    font-size: 14px;
    line-height: 1.65;
}

.service-hero--cover-design .service-hero__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.service-hero--cover-design .service-hero__list li {
    margin: 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-hero--cover-design .service-hero__list li + li {
    margin-top: 0;
}

.service-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.service-hero__form-box {
    position: relative;
    z-index: 3;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 36px 34px 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    max-width: 520px;
    margin-left: auto;
}

.service-hero__form-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 6px;
}

.service-hero__form-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
}

.service-hero__form-box .consult-form__btn {
    background-color: var(--brand-red);
}

.service-hero__form-box .consult-form__btn:hover {
    background-color: #8e0201;
}

.service-hero__form-box .consult-form__input:focus,
.service-hero__form-box .consult-form__textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(214, 3, 2, 0.1);
}

/* Service page hero banners â€“ shared About Us image */
.service-hero[class*="service-hero--"] {
    background-image: url('../images/about-hero.webp');
}

/* ============================================================
   Ghostwriting â€“ Problem / Two-column section
   ============================================================ */
.gw-problem {
    padding: 90px 0;
    background-color: #ffffff;
    content-visibility: auto;
    contain-intrinsic-size: 1px 560px;
}

.gw-problem__content {
    max-width: 100%;
    min-width: 0;
}

.gw-problem__title {
    margin-bottom: 28px;
}

.gw-problem__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
    max-width: 100%;
    overflow-wrap: break-word;
}

.gw-problem--pod .gw-problem__title-main {
    font-size: clamp(22px, 2.6vw, 34px);
    white-space: nowrap;
}

.gw-problem--consultation .gw-problem__title-main {
    font-size: clamp(18px, 2.2vw, 28px);
}

.gw-problem--consultation .gw-problem__title-script {
    font-size: clamp(24px, 3.2vw, 36px);
}

.gw-problem--cover-design .gw-problem__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-problem--cover-design .gw-problem__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-problem--editing .gw-problem__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-problem--editing .gw-problem__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-problem--proofreading .gw-problem__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-problem--proofreading .gw-problem__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-problem--book-formatting .gw-problem__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-problem--book-formatting .gw-problem__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-problem--illustration .gw-problem__title-main {
    font-size: clamp(18px, 2.2vw, 28px);
}

.gw-problem--illustration .gw-problem__title-script {
    font-size: clamp(26px, 3.4vw, 40px);
}

.gw-problem--book-marketing .gw-problem__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-problem--book-marketing .gw-problem__title-script {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-problem--book-marketing .gw-snipe__list li + li {
    margin-top: 4px;
}

.gw-problem--book-marketing .gw-snipe__list li {
    line-height: 1.45;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .gw-problem--pod .gw-problem__title-main {
        white-space: normal;
    }
}

.gw-problem__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    margin-top: 4px;
}

.gw-problem__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--footer-gray);
    margin-bottom: 18px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.gw-problem__desc--last {
    margin-bottom: 32px;
    font-weight: 500;
    color: #2a2a2a;
}

.gw-problem__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 30px;
    border-radius: 50px;
    background-color: var(--brand-red);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gw-problem__btn:hover {
    background-color: #8e0201;
    color: #ffffff;
    transform: translateY(-2px);
}

.gw-problem__btn i {
    font-size: 13px;
}

.gw-problem__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-problem__image {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Ghostwriting â€“ We Snipe */
.gw-snipe {
    padding: 90px 0;
    background-color: #ffffff;
}

.gw-snipe__content {
    max-width: 100%;
    min-width: 0;
}

.gw-snipe__title {
    margin-bottom: 24px;
}

.gw-snipe__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.9vw, 35px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111111;
    max-width: 100%;
    overflow-wrap: break-word;
}

.gw-snipe__title-accent {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-red);
    margin-top: 4px;
}

.gw-snipe__intro {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.gw-snipe__list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--footer-gray);
}

.gw-snipe__list li + li {
    margin-top: 10px;
}

.gw-snipe__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-red);
}

.gw-snipe__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--footer-gray);
    margin: 28px 0 0;
}

.gw-snipe__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-snipe__image {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.gw-snipe--consultation .gw-snipe__intro,
.gw-snipe--cover-design .gw-snipe__intro,
.gw-snipe--proofreading .gw-snipe__intro,
.gw-snipe--book-formatting .gw-snipe__intro,
.gw-snipe--illustration .gw-snipe__intro {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.gw-snipe--consultation .gw-snipe__list,
.gw-snipe--cover-design .gw-snipe__list,
.gw-snipe--proofreading .gw-snipe__list,
.gw-snipe--book-formatting .gw-snipe__list,
.gw-snipe--illustration .gw-snipe__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gw-snipe--consultation .gw-snipe__list li,
.gw-snipe--cover-design .gw-snipe__list li,
.gw-snipe--proofreading .gw-snipe__list li,
.gw-snipe--book-formatting .gw-snipe__list li,
.gw-snipe--illustration .gw-snipe__list li {
    padding: 12px 14px 12px 16px;
    margin: 0;
    background-color: #faf8f5;
    border-radius: 10px;
    border-left: 3px solid var(--brand-red);
}

.gw-snipe--consultation .gw-snipe__list li::before,
.gw-snipe--cover-design .gw-snipe__list li::before,
.gw-snipe--proofreading .gw-snipe__list li::before,
.gw-snipe--book-formatting .gw-snipe__list li::before,
.gw-snipe--illustration .gw-snipe__list li::before {
    display: none;
}

.gw-snipe--consultation .gw-snipe__list li + li,
.gw-snipe--cover-design .gw-snipe__list li + li,
.gw-snipe--proofreading .gw-snipe__list li + li,
.gw-snipe--book-formatting .gw-snipe__list li + li,
.gw-snipe--illustration .gw-snipe__list li + li {
    margin-top: 0;
}

.gw-snipe--consultation .gw-snipe__list li strong,
.gw-snipe--cover-design .gw-snipe__list li strong,
.gw-snipe--proofreading .gw-snipe__list li strong,
.gw-snipe--book-formatting .gw-snipe__list li strong,
.gw-snipe--illustration .gw-snipe__list li strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #111111;
    margin-bottom: 4px;
}

.gw-snipe--consultation .gw-snipe__list li span,
.gw-snipe--cover-design .gw-snipe__list li span,
.gw-snipe--proofreading .gw-snipe__list li span,
.gw-snipe--book-formatting .gw-snipe__list li span,
.gw-snipe--illustration .gw-snipe__list li span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: var(--footer-gray);
}

.gw-snipe--cover-design .gw-snipe__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-snipe--cover-design .gw-snipe__title-accent {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-snipe--cover-design .gw-snipe__desc {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 18px;
}

.gw-snipe--editing .gw-snipe__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-snipe--editing .gw-snipe__title-accent {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-snipe--book-formatting .gw-snipe__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-snipe--book-formatting .gw-snipe__title-accent {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-snipe--book-formatting .gw-snipe__desc {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 18px;
}

.gw-snipe--illustration .gw-snipe__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-snipe--illustration .gw-snipe__title-accent {
    font-size: clamp(26px, 3.2vw, 38px);
}

.gw-snipe--book-marketing .gw-snipe__title-main {
    font-size: clamp(20px, 2.4vw, 30px);
}

.gw-snipe--book-marketing .gw-snipe__title-accent {
    font-size: clamp(28px, 3.6vw, 42px);
}

.gw-snipe--book-marketing .gw-snipe__intro {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.gw-snipe--book-marketing .gw-snipe__list li + li {
    margin-top: 4px;
}

.gw-snipe--book-marketing .gw-snipe__list li {
    font-size: 14px;
    line-height: 1.45;
}

.gw-snipe--book-marketing .gw-snipe__desc {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 18px;
}

.gw-snipe--editing .gw-snipe__intro {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.gw-snipe--editing .gw-snipe__desc {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 18px;
}

/* Publishing Categories â€“ Tabs */
.pub-cat {
    padding: 90px 0;
    background-color: #ffffff;
}

.pub-cat__title {
    max-width: 820px;
    margin: 0 auto 40px;
    overflow-wrap: break-word;
}

.pub-cat__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(25px, 2.9vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
    max-width: 100%;
}

.pub-cat__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(31px, 3.9vw, 47px);
    font-weight: 400;
    color: var(--brand-red);
    margin-left: 0;
    margin-top: 4px;
    max-width: 100%;
}

.pub-cat__tabs {
    gap: 12px;
    border: 0;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.pub-cat__tabs-wrap {
    margin-bottom: 55px;
}

.pub-cat__tabs-wrap .pub-cat__tabs {
    margin-bottom: 0;
}

.pub-cat__tabs .nav-link {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2a2a2a;
    background-color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pub-cat__tabs .nav-link:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.pub-cat__tabs .nav-link.active {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
}

.pub-cat__heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.4vw, 31px);
    font-weight: 600;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 18px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.pub-cat__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--footer-gray);
    margin-bottom: 18px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.pub-cat__text {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
}

.pub-cat__list {
    margin-bottom: 22px;
}

.pub-cat__list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--footer-gray);
    margin-bottom: 10px;
}

.pub-cat__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--brand-red);
}

.pub-cat__list li strong {
    color: #111111;
    font-weight: 600;
}

.pub-cat__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.pub-cat__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.pub-cat__btn i {
    font-size: 12px;
}

.pub-cat__btn--primary {
    background-color: var(--brand-red);
    color: #ffffff;
}

.pub-cat__btn--primary:hover {
    background-color: #8e0201;
    color: #ffffff;
    transform: translateY(-2px);
}

.pub-cat__btn--dark {
    background-color: #1a1a1a;
    color: #ffffff;
}

.pub-cat__btn--dark:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.pub-cat__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pub-cat__media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

/* Publishing Process Flow */
.process-flow {
    padding: 90px 0;
    background-color: #f7f7f7;
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}

.process-flow__title {
    max-width: 820px;
    margin: 0 auto 18px;
}

.process-flow__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(25px, 2.9vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
    max-width: 100%;
    overflow-wrap: break-word;
}

.process-flow__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(31px, 3.9vw, 47px);
    font-weight: 400;
    color: var(--brand-red);
    margin-top: 4px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.process-flow__intro {
    max-width: 640px;
    margin: 0 auto 52px;
    font-size: 16px;
    line-height: 1.65;
    color: #4e4e4e;
}

.process-flow__track {
    position: relative;
    max-width: 760px;
    margin: 0 auto 48px;
}

.process-flow__track::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-red) 0%, rgba(196, 30, 58, 0.25) 100%);
}

.process-flow__step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 28px;
}

.process-flow__step:last-child {
    padding-bottom: 0;
}

.process-flow__marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--brand-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.25);
}

.process-flow__marker span {
    font-family: 'Joan', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.process-flow__content {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 24px 28px;
    border-left: 4px solid var(--brand-red);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.process-flow__heading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 10px;
}

.process-flow__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #4e4e4e;
    margin-bottom: 0;
}

.process-flow__cta {
    margin-top: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background-color: #ffffff;
    content-visibility: auto;
    contain-intrinsic-size: 1px 640px;
}

.faq-section__title {
    margin-bottom: 30px;
}

.faq-section__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.15vw, 39px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
    max-width: 100%;
    overflow-wrap: break-word;
}

.faq-section__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(35px, 4.15vw, 51px);
    font-weight: 400;
    color: var(--brand-red);
    margin-top: 4px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.faq-section__media {
    border-radius: 16px;
    overflow: hidden;
}

.faq-section__media img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-accordion__item {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-accordion .accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #ffffff;
    padding: 20px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: var(--brand-red);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
    padding: 20px 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    background-color: var(--brand-red);
    color: #ffffff;
}

/* Publishing Process Page */
.process-page-intro {
    padding: 70px 0 20px;
    background-color: #ffffff;
}

.process-page-intro__header {
    max-width: 720px;
    margin: 0 auto;
}

.process-page-intro__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.process-page-intro__title {
    margin-bottom: 20px;
}

.process-page-intro__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111111;
}

.process-page-intro__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(36px, 4.2vw, 52px);
    color: var(--brand-red);
    margin-top: 4px;
}

.process-page-intro__desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--footer-gray);
}

.red-section--process {
    margin-top: 0;
    padding-top: 60px;
}

.process-detail {
    padding: 80px 0 90px;
    background-color: #faf8f5;
}

.process-detail__item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px 26px 26px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-detail__step {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 10px;
}

.process-detail__title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #111111;
    margin-bottom: 10px;
}

.process-detail__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 16px;
}

.process-detail__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.process-detail__list li {
    padding: 12px 14px;
    background-color: #faf8f5;
    border-radius: 10px;
    border-left: 3px solid var(--brand-red);
}

.process-detail__list li strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #111111;
    margin-bottom: 4px;
}

.process-detail__list li span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--footer-gray);
}

/* FAQs Page */
.faq-page {
    padding: 80px 0 90px;
    background-color: #ffffff;
}

.faq-page__sidebar {
    position: sticky;
    top: 100px;
    padding: 32px 28px;
    background-color: #faf8f5;
    border-radius: 16px;
}

.faq-page__sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
}

.faq-page__sidebar-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 24px;
}

.faq-page__sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 26px;
    border-radius: 50px;
    background-color: var(--brand-red);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.faq-page__sidebar-btn:hover {
    background-color: #8e0201;
    color: #ffffff;
    transform: translateY(-2px);
}

.faq-page__note {
    margin: 28px 0 0;
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--footer-gray);
    background-color: #faf8f5;
    border-radius: 12px;
    border-left: 4px solid var(--brand-red);
}

/* Legal Pages (Privacy Policy, Terms & Conditions) */
.legal-page {
    padding: 80px 0 90px;
    background-color: #ffffff;
}

.legal-page__sidebar {
    position: sticky;
    top: 100px;
    padding: 28px 24px;
    background-color: #faf8f5;
    border-radius: 16px;
}

.legal-page__updated {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 18px;
}

.legal-page__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.legal-page__nav a {
    font-size: 14px;
    line-height: 1.45;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-page__nav a:hover {
    color: var(--brand-red);
}

.legal-page__link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 50px;
    background-color: var(--footer-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.legal-page__link-btn:hover {
    background-color: #001d4d;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page__content {
    max-width: 100%;
}

.legal-page__intro {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8eaed;
}

.legal-page__block + .legal-page__block {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid #eef0f2;
}

.legal-page__block h2 {
    font-family: 'Joan', serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    color: #111111;
    margin-bottom: 14px;
}

.legal-page__block p {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 14px;
}

.legal-page__block p:last-child {
    margin-bottom: 0;
}

.legal-page__block ul {
    margin: 0 0 14px;
    padding-left: 1.25rem;
}

.legal-page__block li {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.legal-page__block li:last-child {
    margin-bottom: 0;
}

.legal-page__contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.legal-page__contact-list li {
    margin-bottom: 10px;
}

.legal-page__contact-list a {
    color: var(--footer-navy);
    text-decoration: none;
}

.legal-page__contact-list a:hover {
    color: var(--brand-red);
}

.red-section:after {
    content: '';
    height: 300px;
    width: 100%;
    background: #d60302;
    bottom: 0;
    z-index: 3;
    position: absolute;
}

/* Free Consultation Modal */
.quote-modal .modal-dialog {
    max-width: 860px;
}

.quote-modal__content {
    position: relative;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.quote-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e6ea;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quote-modal__close:hover {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
    transform: rotate(90deg);
}

.quote-modal__aside {
    position: relative;
    padding: 44px 34px;
    background: linear-gradient(150deg, var(--footer-navy) 0%, #013a91 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-modal__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 14px;
}

.quote-modal__aside-title {
    font-family: 'Joan', serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
}

.quote-modal__aside-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
}

.quote-modal__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 12px;
}

/* Author Resources Page */
.author-resources-topics {
    padding: 90px 0;
    background-color: #ffffff;
}

.author-resources-topics__header {
    max-width: 820px;
    margin: 0 auto 52px;
}

.author-resources-topics__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.author-resources-topics__title {
    margin-bottom: 18px;
}

.author-resources-topics__title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #111111;
}

.author-resources-topics__title-script {
    display: block;
    font-family: 'Playball', cursive;
    font-size: clamp(35px, 4.4vw, 55px);
    font-weight: 400;
    color: var(--brand-red);
    margin-top: 4px;
}

.author-resources-topics__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 0;
}

.author-resources-topics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.author-resources-topics__card {
    background-color: #f8efef;
    border-radius: 18px;
    padding: 28px 24px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.author-resources-topics__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--footer-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.author-resources-topics__card-title {
    font-family: 'Joan', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
    color: #0b0b0b;
    margin-bottom: 12px;
}

.author-resources-topics__card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--footer-gray);
    margin-bottom: 14px;
}

.author-resources-topics__card-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 12px;
}

.author-resources-topics__card .pub-cat__list {
    margin-bottom: 0;
    flex: 1 1 auto;
}

.author-resources-topics__card .pub-cat__list li {
    font-size: 14px;
    line-height: 1.55;
    padding-left: 16px;
    margin-bottom: 8px;
}

.author-resources-topics__card .pub-cat__list li::before {
    width: 6px;
    height: 6px;
    top: 8px;
}

.author-resources-topics__card .pub-cat__list a {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 500;
}

.author-resources-topics__card .pub-cat__list a:hover {
    text-decoration: underline;
}

.quote-modal__list li:last-child {
    margin-bottom: 0;
}

.quote-modal__list i {
    color: var(--brand-gold);
    margin-top: 3px;
}

.quote-modal__form-col {
    padding: 40px 34px;
    background: #ffffff;
}

.quote-modal__form-title {
    font-family: 'Joan', serif;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 22px;
}

@media (max-width: 991.98px) {
    .quote-modal__aside {
        padding: 34px 28px;
    }

    .quote-modal__aside-title {
        font-size: 23px;
    }

    .quote-modal__form-col {
        padding: 30px 26px;
    }
}

@media (max-width: 575.98px) {
    .quote-modal__aside {
        display: none;
    }

    .quote-modal__form-col {
        padding: 44px 20px 26px;
    }
}

/* Author Resources */
@media (max-width: 1199.98px) {
    .author-resources-topics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .author-resources-topics {
        padding: 48px 0;
    }

    .author-resources-topics__header {
        margin-bottom: 36px;
    }

    .author-resources-topics__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .author-resources-topics__card {
        padding: 24px 20px 22px;
    }
}

.page-content-box-section {
    padding: 56px 0 90px;
    background-color: #f6f1ea;
}

.page-content-box {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 56px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 38, 100, 0.08);
    border-top: 4px solid #c41e3a;
}

.page-content-box p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.75;
    color: #333333;
}

.page-content-box__label {
    margin-bottom: 14px !important;
    font-weight: 600;
    color: #002664;
}

.page-content-box__list {
    margin: 0 0 24px;
    padding-left: 1.25rem;
}

.page-content-box__list li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.65;
    color: #333333;
}

.page-content-box__list li:last-child {
    margin-bottom: 0;
}

.page-content-box__last {
    margin-bottom: 32px !important;
}

.page-content-box__actions {
    text-align: center;
    padding-top: 8px;
}

@media (max-width: 767.98px) {
    .page-content-box-section {
        padding: 40px 0 64px;
    }

    .page-content-box {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .page-content-box p,
    .page-content-box__list li {
        font-size: 16px;
    }
}
