/* =============================================
   American Book Publishing Company — Styles
   ============================================= */

   @font-face {
    font-family: 'Classy Vogue';
    src: url('../fonts/Classyvogueregular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-red: #BF152A;
    --color-red-dark: #78181A;
    --gradient-red: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    --gradient-red-hover: linear-gradient(180.02deg, #a81224 0.01%, #5f1214 112.19%);
    --color-navy: #061D55;
    --color-nav-active: #E9F0FF;
    --color-text: #1a1a1a;
    --font-heading: 'Classy Vogue', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* ---- Header / Navbar ---- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.site-header .navbar {
    padding: 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 1.25rem;
    width: 100%;
}

.navbar-col--brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar-col--nav {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-col--actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.site-header .navbar-brand {
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
}

.site-logo {
    height: 62px;
    width: auto;
    max-width: 100%;
}

.navbar-col--nav .navbar-nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.site-header .nav-item {
    list-style: none;
}

.site-header .nav-link {
    font-size: 17px;
    font-weight: 300;
    color: #000;
    padding: 8px 15px !important;
    border-radius: 50px;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.site-header .nav-link:hover {
    color: var(--color-red);
}

.site-header .nav-link.active {
    background: var(--color-nav-active);
    color: var(--color-text);
}

.btn-quote {
    background: var(--gradient-red);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 0.75rem 1.85rem;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    align-items: center;
    line-height: 1.2;
    transition: background 0.2s;
}

.btn-quote:hover,
.btn-quote:focus {
    background: var(--gradient-red-hover);
    color: #fff;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas */

#mobileNav {
    width: 300px;
}

#mobileNav .offcanvas-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
}

#mobileNav .offcanvas-body {
    padding: 1.5rem;
}

#mobileNav .nav-link {
    font-size: 1rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
}

#mobileNav .nav-link.active {
    background: var(--color-nav-active);
}

/* ---- Hero Banner ---- */

.hero-banner {
    position: relative;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    background: #0b1a35;
    z-index: 1;
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-banner__flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 42, 0.15) 0%, rgba(8, 18, 42, 0.45) 100%),
        linear-gradient(90deg, rgba(8, 18, 42, 0.55) 0%, rgba(8, 18, 42, 0.1) 55%, rgba(8, 18, 42, 0.25) 100%);
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 2rem;
    text-align: center;
}

.hero-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4.8vw, 58px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2.75rem;
    letter-spacing: 0.01em;
}

.hero-banner__title .text-accent {
    color: var(--color-red);
}

/* ---- Hero Form ---- */

.hero-form {
    background: rgba(12, 28, 58, 0.62);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.25rem 2.5rem 2rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 4;
}

.hero-form__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.hero-form__desc {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form__row {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.55fr 1.15fr auto;
    gap: 0.75rem;
    align-items: stretch;
}

.hero-form__cell {
    min-width: 0;
}

.hero-form__cell--submit {
    min-width: 120px;
}

.hero-input {
    background: #edf4fb;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text);
    height: 48px;
    min-height: 48px;
    width: 100%;
    box-shadow: none;
}

.hero-input::placeholder {
    color: #4b5563;
    opacity: 1;
}

.hero-input::-webkit-input-placeholder {
    color: #4b5563;
    opacity: 1;
}

.hero-input::-moz-placeholder {
    color: #4b5563;
    opacity: 1;
}

.hero-input:-ms-input-placeholder {
    color: #4b5563;
    opacity: 1;
}

.form-select.hero-input:required:invalid {
    color: #4b5563;
}

.form-select.hero-input option {
    color: var(--color-text);
}

.hero-form .phone-field__dial,
.gw-hero__form .phone-field__dial {
    color: #4b5563;
}

.hero-form .phone-field .phone-input::placeholder,
.gw-hero__form .phone-field .phone-input::placeholder {
    color: #4b5563;
    opacity: 1;
}

.hero-input:focus,
.hero-input:focus-visible {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(191, 21, 42, 0.3);
    outline: none;
}

.form-select.hero-input {
    background-color: #edf4fb;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.btn-submit {
    background: var(--gradient-red);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.75rem;
    height: 48px;
    min-height: 48px;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-submit:hover,
.btn-submit:focus {
    background: var(--gradient-red-hover);
    color: #fff;
}

/* ---- Books Row ---- */

.hero-books {
    position: relative;
    z-index: 3;
    margin-bottom: -120px;
    text-align: center;
    line-height: 0;
    padding-bottom: 0;
}

.hero-books__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: bottom;
    filter: drop-shadow(0 12px 4px rgba(0, 0, 0, 0.4));
}

/* ---- Bottom Bar ---- */

.hero-bottom-bar {
    position: relative;
    margin-top: -6px;
    line-height: 0;
    z-index: 0;
}

.hero-bottom-bar__img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Platforms Slider ---- */

.platforms-section {
    background-color: #fff;
    padding: 20px 50px;
}

.platforms-slider {
    margin: 0;
}

.platforms-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.platforms-slider:not(.slick-initialized) .platform-item {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
}

.platform-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 15px;
}

.platform-item img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.platforms-slider .slick-track {
    display: flex;
    align-items: center;
}

/* ---- Portfolio Section ---- */

.portfolio-section {
    background: #fff;
    padding: 70px 0 80px;
    overflow: hidden;
}

.portfolio-heading {
    font-family: var(--font-heading);
    font-size: clamp(35px, 3.5vw, 58px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2.25rem;
}

.portfolio-heading .text-red {
    color: var(--color-red);
}

.portfolio-heading .text-navy {
    color: var(--color-navy);
}

.portfolio-filters-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.portfolio-filters-wrap::-webkit-scrollbar {
    display: none;
}

.portfolio-filters {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--gradient-red) border-box;
}

.portfolio-filter {
    flex: 1 1 0;
    min-width: 0;
    font-family: var(--font-heading);
    font-size: clamp(11px, 1.15vw, 18px);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-navy);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1rem 0.5rem;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.portfolio-filter:hover:not(.active) {
    color: var(--color-red);
}

.portfolio-filter.active {
    background: var(--gradient-red);
    color: #fff;
}

.portfolio-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #333;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.portfolio-slider-wrap {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.portfolio-slider-wrap .tab-content,
.portfolio-slider-wrap .tab-pane {
    margin: 0;
    padding: 0;
}

.portfolio-item {
    padding: 0 6px;
}

.portfolio-item a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
}

.portfolio-item__thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.portfolio-item a:hover img {
    transform: scale(1.05);
}

.portfolio-item__thumb img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.portfolio-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.portfolio-slider:not(.slick-initialized) .portfolio-item {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
}

.portfolio-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.portfolio-slider .slick-slide {
    height: auto;
}

/* ---- Ink Dreams Section ---- */

.ink-dreams-section {
    position: relative;
    padding: 6.5rem 0 0;
    background: #fff;
    overflow: visible;
}

.ink-dreams__band {
    position: relative;
    width: 100%;
    background: url('../images/blue-bg1.webp') center center / cover no-repeat;
    min-height: 360px;
    overflow: visible;
}

.ink-dreams__row {
    min-height: 360px;
    position: relative;
}

.ink-dreams__col-figure {
    position: relative;
    min-height: 360px;
    align-self: stretch;
}

.ink-dreams__figure {
    position: absolute;
    bottom: 26px;
    left: 0;
    line-height: 0;
    z-index: 2;
    transform: scale(1.1);
    
}

.ink-dreams__man {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
    object-fit: contain;
    object-position: bottom left;
}

.ink-dreams__content {
    padding: 3.25rem 2.5rem 3.25rem 1.5rem;
}

.ink-dreams__title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 65px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.35rem;
}

.ink-dreams__title .text-accent {
    color: var(--color-red);
}

.ink-dreams__text {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 1.85rem;
}

.ink-dreams__content .btn-quote {
    padding: 0.85rem 2.15rem;
    font-size: 1rem;
}

/* ---- Writing Process Section ---- */

.writing_process_sect {
    padding: 80px 0;
    background: #fff;
}

.writing_process_sect h2 {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.writing_process_sect h2 span {
    color: var(--color-red);
}

.writing_process_sect > .container > .row > .col-lg-10 > p,
.writing_process_sect .col-lg-10 > p {
    font-size: 1.125rem;
    color: #383838;
    line-height: 1.7;
    margin-bottom: 0;
}

.writing_timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.writing_timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/writing-process-bg.webp') center / contain no-repeat;
    z-index: 1;
    pointer-events: none;
}

.writing_timeline_item {
    display: flex;
    padding: 20px 0;
    position: relative;
    z-index: 0;
}

.writing_timeline_item .writing_timeline_title {
    width: 40%;
    padding: 20px;
    display: flex;
    align-items: center;
    background: linear-gradient(86.25deg, var(--color-navy) -124.26%, var(--color-red) 133.25%);
    position: relative;
}

.writing_timeline_item .writing_timeline_title h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

.writing_timeline_item .writing_timeline_title span {
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    border: 3px solid #fff;
    z-index: 3;
}

.writing_timeline_item .writing_timeline_title.left_title {
    border-radius: 10px 0 0 10px;
    padding-right: 100px;
    padding-left: 35px;
}

.writing_timeline_item .writing_timeline_title.right_title {
    border-radius: 0 10px 10px 0;
    padding-left: 110px;
    padding-right: 35px;
}

.writing_timeline_item .writing_timeline_title.left_title span {
    top: -15px;
    left: -15px;
}

.writing_timeline_item .writing_timeline_title.right_title span {
    top: -15px;
    right: -15px;
}

.writing_timeline_item .writing_timeline_content {
    width: 65%;
    padding: 25px;
    border: 1px solid var(--color-red);
    border-radius: 10px;
    background: #fff;
}

.writing_timeline_item .writing_timeline_content.left_content {
    padding-left: 140px;
}

.writing_timeline_item .writing_timeline_content.right_content {
    padding-right: 140px;
}

.writing_timeline_item .writing_timeline_content p {
    font-size: 0.875rem;
    color: #585858;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

.writing_timeline2 {
    display: none;
}

.timeline_item {
    margin-bottom: 25px;
    position: relative;
}

.timeline_icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -30px;
    position: relative;
    z-index: 2;
}

.timeline_icon img {
    width: 80px;
}

.timeline_title {
    background: linear-gradient(86.25deg, var(--color-navy) -124.26%, var(--color-red) 133.25%);
    padding: 45px 20px 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    position: relative;
}

.timeline_title span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-body);
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-navy);
    border-radius: 50%;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline_title h4 {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.timeline_content {
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    background: #fff;
}

.timeline_content p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ---- Services Section ---- */

.services-section {
    position: relative;
    padding: 100px 0 150px;
    background: url('../images/service-bg.webp') center center / cover no-repeat;
    color: #fff;
}

.services-section__head {
    max-width: 820px;
    margin: 0 auto 2.5rem;
}

.services-section__title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.25rem;
}

.services-section__title .text-accent {
    color: var(--color-red);
}

.services-section__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.services-section__grid {
    --bs-gutter-x: 2rem;
}

@media (min-width: 992px) {
    .services-section__grid {
        --bs-gutter-x: 3rem;
    }
}

@media (min-width: 1200px) {
    .services-section__grid {
        --bs-gutter-x: 3.75rem;
    }
}

.service-card {
    height: 100%;
}

.service-card__img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.service-card__img img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__img img {
    transform: scale(1.04);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.65rem;
}

.service-card__title .text-accent {
    color: var(--color-red);
}

.service-card__text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
}

.service-card__link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.service-card__link:hover {
    opacity: 0.85;
    color: #fff;
}

/* ---- Copies CTA Section ---- */

.copies-cta-section {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: visible;

}

.copies-cta__band {
    position: relative;
    width: 100%;
    background: var(--gradient-red);
    overflow: visible;
    padding: 30px 0;
}

.copies-cta__line {
    position: absolute;
    height: 100%;
    max-height: 340px;
    width: auto;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
}

.copies-cta__line--left {
    left: 0;
    top: 0;
}

.copies-cta__line--right {
    right: 0;
    bottom: 0;
}

.copies-cta__row {
    min-height: 340px;
    position: relative;
    z-index: 1;
}

.copies-cta__content {
    padding: 2.75rem 1.5rem 2.75rem 3.75rem;
}

.copies-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.copies-cta__quote {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.35rem;
    max-width: 660px;
}

.copies-cta__rating {
    display: inline-block;
    background: #fff;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    padding: 0.65rem 1.15rem;
    border-radius: 8px;
    margin-bottom: 1.35rem;
}

.copies-cta__partners {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    object-position: left center;
}

.copies-cta__col-img {
    position: relative;
    min-height: 340px;
    align-self: stretch;
}

.copies-cta__figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    line-height: 0;
    z-index: 5;
}

.copies-cta__books {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 540px;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}

/* ---- Book Lovers Section ---- */

.book-lovers-section {
    padding: 5rem 0;
    background: #fff;
}

.book-lovers__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.book-lovers__content {
    max-width: 640px;
}

.book-lovers__title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.book-lovers__title .text-accent {
    color: var(--color-red);
}

.book-lovers__text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: #6b6b6b;
    margin-bottom: 2rem;
}

.book-lovers__author {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.book-lovers__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #111;
    line-height: 1.2;
}

.book-lovers__role {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
}

/* ---- Counter Section ---- */

.counter-section {
    padding: 4.5rem 0;
    background: url('../images/counter-bg.webp') center center / cover no-repeat;
    color: #fff;
}

.counter-section__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.counter-section__desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 500px;
}

.counter-section__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.counter-stat {
    flex: 1 1 140px;
    text-align: center;
}

.counter-stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.65rem;
}

.counter-stat__plus {
    font-family: var(--font-heading);
}

.counter-stat__label {
    font-size: 0.9375rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* ---- Reviews Section ---- */

.reviews-section {
    padding: 5rem 0;
    background: #fff;
}

.reviews-section__head {
    max-width: 820px;
    margin: 0 auto 2.75rem;
}

.reviews-section__title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.reviews-section__title .text-accent {
    color: var(--color-red);
}

.reviews-section__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #6b6b6b;
    margin: 0;
}

.reviews-slider {
    margin: 0 -12px;
}

.reviews-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow: hidden;
}

.reviews-slider:not(.slick-initialized) .reviews-slide {
    flex: 0 0 50%;
    max-width: 50%;
}

.reviews-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.reviews-slider .slick-slide {
    height: auto;
}

.reviews-slider .slick-slide > div {
    height: 100%;
}

.reviews-slide {
    padding: 0 12px;
    height: 100%;
}

.reviews-card {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    height: 100%;
    min-height: 100%;
    padding: 1.75rem;
    background: var(--color-navy);
    border-radius: 14px;
    color: #fff;
}

.reviews-card__cover {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-card__cover img {
    width: 100%;
    max-width: 210px;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}

.reviews-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.reviews-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.reviews-card__divider {
    width: 100%;
    border-top: 1px dashed rgba(255, 255, 255, 0.35);
    margin: 1rem 0 1.15rem;
}

.reviews-card__name {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 0.35rem;
}

.reviews-card__role {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.reviews-card__avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.reviews-card__avatar {
    object-fit: cover;
    display: block;
}


.reviews-card__stars {
    display: flex;
    gap: 0.15rem;
    margin-top: 0.85rem;
}

.reviews-card__star {
    color: #f5b301;
    font-size: 0.95rem;
    line-height: 1;
}

.reviews-card__text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1.25rem;
}

.reviews-card__footer {
    margin-top: auto;
    display: flex;
}

.reviews-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    background: var(--gradient-red);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: lowercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.reviews-card__btn:hover,
.reviews-card__btn:focus {
    background: var(--gradient-red-hover);
    color: #fff;
    transform: translateY(-1px);
}

.reviews-slider .slick-dots {
    position: static;
    margin-top: 2rem;
    line-height: 0;
}

.reviews-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--color-navy);
    opacity: 0.25;
}

.reviews-slider .slick-dots li.slick-active button:before {
    color: var(--color-red);
    opacity: 1;
}

/* ---- Contact Section ---- */

.contact-section {
    padding: 0 0 5rem;
    background: #fff;
}

.contact-section__box {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--gradient-red);
    border-radius: 24px;
}

.contact-section__line {
    position: absolute;
    width: auto;
    pointer-events: none;
    z-index: 0;
}

.contact-section__line--top {
    top: 0;
    right: 0;
    max-width: 220px;
}

.contact-section__line--bottom {
    left: 0;
    bottom: 0;
    max-width: 140px;
}

.contact-section__box > .row {
    position: relative;
    z-index: 1;
}

.contact-section__content {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding-right: 1rem;
}

.contact-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: auto;
}

.contact-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.25rem;
}

.contact-section__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.75rem;
    max-width: 620px;
}

.contact-section__list-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
}

.contact-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.contact-section__list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.55rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.contact-section__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.contact-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-section__btn--call {
    background: #fff;
    color: var(--color-navy);
}

.contact-section__btn--call:hover,
.contact-section__btn--call:focus {
    background: #f3f3f3;
    color: var(--color-navy);
    transform: translateY(-1px);
}

.contact-section__btn--chat {
    background: var(--color-navy);
    color: #fff;
}

.contact-section__btn--chat:hover,
.contact-section__btn--chat:focus {
    background: #08142e;
    color: #fff;
    transform: translateY(-1px);
}

.contact-section__form-card {
    display: flex;
    flex-direction: column;
    background: #f3f4f6;
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.contact-form__field {
    margin-bottom: 1.15rem;
}

.contact-form__field--grow {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    min-height: 0;
}

.contact-form__input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    background: transparent;
    padding: 0.7rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    outline: none;
    resize: vertical;
}

.contact-form__input::placeholder {
    color: #555;
}

.contact-form__input:focus {
    border-bottom-color: var(--color-navy);
}

.contact-form__input--area {
    flex: 1;
    min-height: 110px;
    resize: none;
    padding-top: 0.7rem;
    line-height: 1.55;
}

.contact-form__footer {
    margin-top: auto;
    padding-top: 1.25rem;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 10px;
    background: var(--color-navy);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus {
    background: #08142e;
    color: #fff;
    transform: translateY(-1px);
}

.contact-form__icon {
    flex-shrink: 0;
    display: block;
}

/* ---- FAQ Section ---- */

.faq-section {
    padding: 5rem 0;
    background: #fff;
}

.faq-section__title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.faq-section__title .text-accent {
    color: var(--color-red);
}

.faq-section__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #6b6b6b;
    margin-bottom: 2rem;
}

.faq-section__figure {
    margin-top: 0.5rem;
}

.faq-section__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

.faq-accordion .accordion-item {
    background: var(--color-nav-active);
    border: none;
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    background: var(--color-nav-active);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.45;
    padding: 1.15rem 1.35rem;
    box-shadow: none;
    border-radius: 12px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--color-nav-active);
    color: var(--color-navy);
    font-weight: 700;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    width: 0.85rem;
    height: 0.85rem;
    background-size: 0.85rem;
    filter: brightness(0) saturate(100%) invert(28%) sepia(12%) saturate(1200%) hue-rotate(182deg) brightness(95%) contrast(88%);
}

.faq-accordion .accordion-body {
    padding: 0 1.35rem 1.15rem;
    color: #6b6b6b;
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ---- Footer ---- */

.site-footer {
    background: var(--gradient-red);
    color: rgba(255, 255, 255, 0.92);
    padding: 4.5rem 0;
    font-family: var(--font-body);
}

.site-footer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.35rem;
    line-height: 1.2;
}

.site-footer__links li,
.site-footer__contact li {
    margin-bottom: 0.7rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__contact span {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: #fff;
    opacity: 1;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.site-footer__icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #fff;
    display: inline-flex;
}

.site-footer__subscribe-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.15rem;
}

.site-footer__subscribe-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 1rem;
}

.site-footer__subscribe-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.65rem 1.1rem;
    font-size: 0.875rem;
    color: #333;
    border-radius: 50px;
    min-width: 0;
}

.site-footer__subscribe-input input::placeholder {
    color: #888;
}

.site-footer__subscribe-input button {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
}

.site-footer__subscribe-input button:hover {
    background: #08142e;
}

.site-footer__terms .form-check-input {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 3px;
}

.site-footer__terms .form-check-input:checked {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
}

.site-footer__terms .form-check-input:focus {
    box-shadow: none;
}

.site-footer__terms .form-check-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__terms .form-check-label a {
    color: #fff;
    text-decoration: underline;
}

.site-footer__terms .form-check-label a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Footer Mega (Dark Blue Links Section) ---- */

.footer-mega {
    background: var(--color-navy);
    color: #fff;
    font-family: var(--font-body);
}

.footer-mega__main {
    padding: 3rem 0 2.5rem;
}

.footer-mega__cols {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
}

.footer-mega__heading {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.footer-mega__col .footer-mega__heading:not(:first-child) {
    margin-top: 1.35rem;
}

.footer-mega__list {
    margin: 0 0 0.5rem;
}

.footer-mega__list--spaced-top {
    margin-top: 2rem;
}

.footer-mega__list li {
    position: relative;
    padding-left: 0.85rem;
    margin-bottom: 0.35rem;
}

.footer-mega__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.footer-mega__list a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-mega__list a:hover {
    color: #fff;
}

.footer-mega__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.15rem 0 1.35rem;
}

.footer-mega__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.footer-mega__copy {
    margin: 0;
    flex: 1 1 auto;
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}

.footer-mega__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0;
    flex: 0 0 auto;
}

.footer-mega__social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease;
}

.footer-mega__social a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer-mega__terms {
    flex: 1 1 auto;
    text-align: right;
    font-size: 0.8125rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-mega__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex: 1 1 auto;
}

.footer-mega__legal .footer-mega__terms {
    flex: none;
    text-align: right;
}

.footer-mega__terms:hover {
    opacity: 0.85;
    color: #fff;
}

/* ---- Inner Page Hero ---- */

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--color-navy);
    color: #fff;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-banner.webp') center center / cover no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 26, 58, 0.96) 0%, rgba(10, 26, 58, 0.88) 100%);
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0 4rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero__title .text-accent {
    color: var(--color-red);
}

.page-hero__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.page-hero__breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

.page-hero__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-hero__breadcrumb a:hover {
    color: var(--color-red);
}

.about-section,
.services-page,
.contact-page__info {
    padding: 5rem 0;
    background: #fff;
}

.services-page--genres {
    background: #f8f9fb;
}

.about-values {
    padding: 4.5rem 0 5rem;
    background: #f8f9fb;
}

.about-value-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 26, 58, 0.08);
}

.about-value-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(191, 21, 42, 0.1) 0%, rgba(10, 26, 58, 0.06) 100%);
    border: 1px solid rgba(191, 21, 42, 0.14);
}

.about-value-card__icon i {
    font-size: 1.75rem;
    color: var(--color-red);
}

.about-value-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 0.65rem;
}

.about-value-card__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #6b6b6b;
    margin: 0;
}

.services-page__card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.services-page__card-link .gw-genre-card__link {
    display: block;
}

.contact-info-card {
    height: 100%;
    background: #f8f9fb;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.contact-info-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-red);
    color: #fff;
    font-size: 1.5rem;
}

.contact-info-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.contact-info-card__text,
.contact-info-card__text a {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #6b6b6b;
    text-decoration: none;
}

.contact-info-card__text a:hover {
    color: var(--color-red);
}

/* ---- Legal Pages ---- */

.legal-section {
    padding: 4.5rem 0 5rem;
    background: #fff;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content__updated {
    font-size: 0.9rem;
    color: #8a94a6;
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--color-navy);
    margin: 2rem 0 0.85rem;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6478;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.legal-content li {
    margin-bottom: 0.45rem;
}

.legal-content a {
    color: var(--color-red);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content__contact {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
}

.legal-content__contact li {
    margin-bottom: 0.35rem;
}

/* ---- Quote Popup ---- */

.quote-popup .modal-backdrop.show {
    opacity: 0.72;
}

.quote-popup .modal-dialog {
    max-width: 960px;
    margin: 1.25rem auto;
}

.quote-popup__dialog {
    position: relative;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(6, 29, 85, 0.28);
}

.quote-popup__aside {
    position: relative;
    background: var(--color-navy);
    color: #fff;
    overflow: hidden;
}

.quote-popup__aside-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-banner.webp') center center / cover no-repeat;
    opacity: 0.14;
    pointer-events: none;
}

.quote-popup__aside-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 21, 42, 0.45) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    pointer-events: none;
}

.quote-popup__aside-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 100%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-popup__aside-title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.quote-popup__aside-title .text-accent {
    color: var(--color-red);
}

.quote-popup__aside-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1.35rem;
    max-width: 320px;
}

.quote-popup__perks {
    margin-bottom: 1.5rem;
}

.quote-popup__perks li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 0.7rem;
}

.quote-popup__perk-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.72rem;
    color: #fff;
}

.quote-popup__contact {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: auto;
    padding-bottom: 0.5rem;
}

.quote-popup__call {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.quote-popup__call:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.quote-popup__call-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-popup__call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.quote-popup__call-text small {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quote-popup__call-text strong {
    font-size: 0.98rem;
    font-weight: 600;
}

.quote-popup__chat {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding-left: 0.15rem;
    transition: color 0.2s ease;
}

.quote-popup__chat:hover {
    color: var(--color-red);
}

.quote-popup__main {
    position: relative;
    background: #fff;
}

.quote-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid #e8ebf0;
    border-radius: 50%;
    background: #fff;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.quote-popup__close:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
}

.quote-popup__form-wrap {
    padding: 2.5rem 2.25rem 2rem;
    padding-right: 3.5rem;
}

.quote-popup__head {
    margin-bottom: 1.25rem;
}

.quote-popup__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-red);
    background: rgba(191, 21, 42, 0.08);
    border: 1px solid rgba(191, 21, 42, 0.18);
    border-radius: 50px;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
}

.quote-popup__title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    color: var(--color-navy);
    margin-bottom: 0.4rem;
    line-height: 1.15;
    padding-right: 0.5rem;
}

.quote-popup__title .text-accent {
    color: var(--color-red);
}

.quote-popup__desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.quote-popup__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.quote-popup__field {
    margin-bottom: 0.65rem;
}

.quote-popup__input {
    width: 100%;
    border: 1px solid #dde3ec;
    border-radius: 10px;
    padding: 0.72rem 0.95rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-navy);
    background: #f8f9fb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-popup__input::placeholder {
    color: #9aa3b2;
}

.quote-popup__input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(191, 21, 42, 0.1);
    background: #fff;
}

.quote-popup__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23061D55' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.quote-popup__textarea {
    resize: vertical;
    min-height: 88px;
}

.quote-popup__submit {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
}

.quote-popup__submit i {
    transition: transform 0.25s ease;
}

.quote-popup__submit:hover i {
    transform: translateX(3px);
}

.quote-popup__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.85rem 0 0;
    font-size: 0.78rem;
    color: #8a94a6;
}

.quote-popup__secure i {
    color: var(--color-navy);
    font-size: 0.85rem;
}

.quote-popup.show .quote-popup__dialog {
    animation: quotePopupIn 0.35s ease;
}

@keyframes quotePopupIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 991.98px) {
    .quote-popup__aside-inner {
        padding: 1.75rem 1.5rem;
    }

    .quote-popup__form-wrap {
        padding: 3.25rem 1.5rem 1.75rem;
    }

    .quote-popup__contact {
        margin-top: 0.5rem;
        padding-bottom: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .quote-popup .modal-dialog {
        margin: 0.65rem;
    }

    .quote-popup__form-wrap {
        padding: 3rem 1.15rem 1.5rem;
        padding-right: 1.15rem;
    }

    .quote-popup__close {
        top: 12px;
        right: 12px;
    }
}

/* ---- Phone Field (country picker + formatted tel) ---- */

.phone-field {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

.phone-field .form-floating,
.phone-field__control {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.phone-field__dial {
    flex: 0 0 auto;
    padding-left: 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.phone-field .form-floating > .form-control,
.phone-field .form-floating > .phone-input,
.phone-field__control > .form-control,
.phone-field__control > .phone-input {
    height: 48px;
    min-height: 48px;
    flex: 1;
    min-width: 0;
    padding-left: 0.4rem;
}

.phone-field .form-floating > label {
    padding-left: 1.1rem;
}

.country-picker {
    position: relative;
    flex: 0 0 88px;
    z-index: 6;
}

.country-picker-btn {
    width: 100%;
    height: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    background: #edf4fb;
    border: none;
    border-radius: 50px;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

.country-picker-btn .bi-chevron-down {
    font-size: 0.7rem;
    opacity: 0.75;
}

.country-picker-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 30;
    min-width: 200px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(10, 26, 58, 0.12);
}

.country-picker-menu[hidden] {
    display: none !important;
}

.country-picker-menu li {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--color-navy);
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
}

.country-picker-menu li:hover,
.country-picker-menu li[aria-selected="true"] {
    background: #f3f4f6;
}

/* Hero form: country + phone as one pill */
.hero-form .phone-field {
    gap: 0;
    background: #edf4fb;
    border-radius: 50px;
    overflow: visible;
    height: 48px;
    min-height: 48px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hero-form .phone-field:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(191, 21, 42, 0.3);
}

.hero-form .country-picker {
    flex: 0 0 70px;
}

.hero-form .country-picker-btn {
    height: 48px;
    min-height: 48px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(6, 29, 85, 0.12);
    border-radius: 50px 0 0 50px;
    color: var(--color-navy);
    padding: 0 0.65rem;
}

.hero-form .phone-field .form-floating,
.hero-form .phone-field__control {
    flex: 1;
    min-width: 0;
}

.hero-form .phone-field .form-floating > label,
.hero-form .phone-field__control > label {
    display: none;
}

.hero-form .phone-field .form-floating > .hero-input,
.hero-form .phone-field .form-floating > .phone-input,
.hero-form .phone-field__control > .hero-input,
.hero-form .phone-field__control > .phone-input {
    height: 48px;
    min-height: 48px;
    background: transparent;
    border: none;
    border-radius: 0 50px 50px 0;
    box-shadow: none;
    padding: 0.7rem 1.15rem 0.7rem 0.35rem;
}

.hero-form .phone-field .form-floating > .hero-input:focus,
.hero-form .phone-field .form-floating > .phone-input:focus,
.hero-form .phone-field__control > .hero-input:focus,
.hero-form .phone-field__control > .phone-input:focus {
    background: transparent;
    box-shadow: none;
}

.hero-form .phone-field__dial {
    padding-left: 0.85rem;
    color: var(--color-navy);
}

.hero-form .country-picker-menu {
    top: calc(100% + 8px);
    left: 0;
}

.gw-hero__form .phone-field {
    gap: 0;
    background: #edf4fb;
    border-radius: 50px;
    overflow: visible;
    height: 48px;
    min-height: 48px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.gw-hero__form .phone-field:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(191, 21, 42, 0.3);
}

.gw-hero__form .country-picker {
    flex: 0 0 70px;
}

.gw-hero__form .country-picker-btn {
    height: 48px;
    min-height: 48px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(6, 29, 85, 0.12);
    border-radius: 50px 0 0 50px;
    color: var(--color-navy);
    padding: 0 0.65rem;
}

.gw-hero__form .phone-field .form-floating,
.gw-hero__form .phone-field__control {
    flex: 1;
    min-width: 0;
}

.gw-hero__form .phone-field .form-floating > label,
.gw-hero__form .phone-field__control > label {
    display: none;
}

.gw-hero__form .phone-field .form-floating > .hero-input,
.gw-hero__form .phone-field .form-floating > .phone-input,
.gw-hero__form .phone-field__control > .hero-input,
.gw-hero__form .phone-field__control > .phone-input {
    height: 48px;
    min-height: 48px;
    background: transparent;
    border: none;
    border-radius: 0 50px 50px 0;
    box-shadow: none;
    padding: 0.7rem 1.15rem 0.7rem 0.35rem;
}

.gw-hero__form .phone-field .form-floating > .hero-input:focus,
.gw-hero__form .phone-field .form-floating > .phone-input:focus,
.gw-hero__form .phone-field__control > .hero-input:focus,
.gw-hero__form .phone-field__control > .phone-input:focus {
    background: transparent;
    box-shadow: none;
}

.gw-hero__form .phone-field__dial {
    padding-left: 0.85rem;
}

.gw-hero__form .country-picker-menu {
    top: calc(100% + 8px);
    left: 0;
}

.quote-popup .phone-field {
    gap: 0;
    background: #f8f9fb;
    border: 1px solid #dde3ec;
    border-radius: 10px;
    overflow: visible;
    height: 48px;
    min-height: 48px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-popup .phone-field:focus-within {
    background: #fff;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(191, 21, 42, 0.1);
}

.quote-popup .country-picker {
    flex: 0 0 72px;
}

.quote-popup .country-picker-btn {
    height: 46px;
    min-height: 46px;
    background: transparent;
    border: none;
    border-right: 1px solid #dde3ec;
    border-radius: 10px 0 0 10px;
    color: var(--color-navy);
    padding: 0 0.65rem;
}

.quote-popup .phone-field .form-floating,
.quote-popup .phone-field__control {
    flex: 1;
    min-width: 0;
}

.quote-popup .phone-field .form-floating > label,
.quote-popup .phone-field__control > label {
    display: none;
}

.quote-popup .phone-field .form-floating > .quote-popup__input,
.quote-popup .phone-field .form-floating > .phone-input,
.quote-popup .phone-field__control > .quote-popup__input,
.quote-popup .phone-field__control > .phone-input {
    height: 46px;
    min-height: 46px;
    background: transparent;
    border: none;
    border-radius: 0 10px 10px 0;
    box-shadow: none;
    padding: 0.7rem 0.95rem 0.7rem 0.35rem;
}

.quote-popup .phone-field .form-floating > .quote-popup__input:focus,
.quote-popup .phone-field .form-floating > .phone-input:focus,
.quote-popup .phone-field__control > .quote-popup__input:focus,
.quote-popup .phone-field__control > .phone-input:focus {
    background: transparent;
    box-shadow: none;
}

.quote-popup .phone-field__dial {
    padding-left: 0.75rem;
}

.quote-popup .country-picker-menu {
    bottom: calc(100% + 6px);
    top: auto;
}

.contact-form .phone-field {
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #333;
    transition: border-color 0.2s ease;
}

.contact-form .phone-field:focus-within {
    border-bottom-color: var(--color-navy);
}

.contact-form .country-picker {
    flex: 0 0 64px;
}

.contact-form .country-picker-btn {
    height: 46px;
    min-height: 46px;
    width: 100%;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0;
    padding: 0 0.5rem 0 0;
    color: var(--color-navy);
    justify-content: flex-start;
}

.contact-form .phone-field .form-floating,
.contact-form .phone-field__control {
    flex: 1;
    min-width: 0;
}

.contact-form .phone-field .form-floating > label,
.contact-form .phone-field__control > label {
    display: none;
}

.contact-form .phone-field .form-floating > .contact-form__input,
.contact-form .phone-field .form-floating > .phone-input,
.contact-form .phone-field__control > .contact-form__input,
.contact-form .phone-field__control > .phone-input {
    height: 46px;
    min-height: 46px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0.7rem 0 0.7rem 0.35rem;
}

.contact-form .phone-field .form-floating > .contact-form__input:focus,
.contact-form .phone-field .form-floating > .phone-input:focus,
.contact-form .phone-field__control > .contact-form__input:focus,
.contact-form .phone-field__control > .phone-input:focus {
    border: none;
    box-shadow: none;
}

.contact-form .phone-field__dial {
    padding-left: 0.85rem;
}

.contact-form .country-picker-menu {
    bottom: calc(100% + 6px);
    top: auto;
}

.quote-popup .country-picker-menu {
    bottom: calc(100% + 6px);
    top: auto;
}

/* ---- 404 Error Page ---- */

.error-section {
    padding: 5rem 0;
    background: #f8f9fb;
}

.error-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    padding: 2.75rem 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(10, 26, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.error-card__code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 14vw, 8rem);
    line-height: 0.9;
    color: rgba(6, 29, 85, 0.06);
    margin: 0 0 0.25rem;
    pointer-events: none;
    user-select: none;
}

.error-card__icon {
    font-size: 2.5rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.error-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #5a6478;
    margin: 0 auto 1.75rem;
    max-width: 540px;
}

.error-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.error-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    background: #f8f9fb;
    border: 1px solid #e8ebf0;
    color: var(--color-navy);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.error-card__link:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
}

.error-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.error-card__note {
    font-size: 0.95rem;
    color: #5a6478;
    margin: 0;
}

.error-card__note a {
    color: var(--color-red);
    font-weight: 600;
    text-decoration: none;
}

.error-card__note a:hover {
    text-decoration: underline;
}

/* ---- Thank You Page ---- */

.thank-you-section {
    padding: 5rem 0;
    background: #f8f9fb;
}

.thank-you-card {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(10, 26, 58, 0.06);
}

.thank-you-card__icon {
    font-size: 3.5rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.thank-you-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.thank-you-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #5a6478;
    margin-bottom: 2rem;
}

.thank-you-card__steps {
    text-align: left;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
}

.thank-you-card__steps-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.85rem;
}

.thank-you-card__list {
    margin: 0;
    padding-left: 1.25rem;
    color: #5a6478;
    line-height: 1.8;
}

.thank-you-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.thank-you-card__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--color-navy);
    border-radius: 50px;
    background: transparent;
    color: var(--color-navy);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.thank-you-card__btn-outline:hover {
    background: var(--color-navy);
    color: #fff;
}

.thank-you-card__note {
    font-size: 0.95rem;
    color: #5a6478;
    margin: 0;
}

.thank-you-card__note a {
    color: var(--color-red);
    font-weight: 600;
    text-decoration: none;
}

.thank-you-card__note a:hover {
    text-decoration: underline;
}

.reviews-page__partners {
    padding: 3rem 0 0;
    text-align: center;
}

.reviews-page__partners img {
    max-width: 100%;
    height: auto;
}

/* ---- Ghostwriting Service Page ---- */

.gw-hero {
    position: relative;
    overflow: hidden;
}

.gw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gw-hero__flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.gw-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 42, 0.1) 0%, rgba(8, 18, 42, 0.5) 100%),
        linear-gradient(90deg, rgba(8, 18, 42, 0.65) 0%, rgba(8, 18, 42, 0.2) 55%, rgba(8, 18, 42, 0.45) 100%);
}

.gw-hero__content {
    position: relative;
    z-index: 1;
    padding: 5rem 0 4.5rem;
}

.gw-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
}

.gw-hero__title .text-accent {
    color: var(--color-red);
}

.gw-hero__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.35rem;
    max-width: 580px;
}

.gw-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin-bottom: 1.75rem;
}

.gw-hero__badges li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.gw-hero__badges li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-red);
}

.gw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.gw-hero__call {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.gw-hero__call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gw-hero__call-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.gw-hero__call-meta small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.gw-hero__call-meta strong {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.gw-hero__form-card {
    background: rgba(12, 28, 58, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
}

.gw-hero__form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.gw-hero__form-desc {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.gw-hero__field {
    margin-bottom: 0.85rem;
}

.gw-hero__textarea {
    border-radius: 16px !important;
    min-height: 96px;
    resize: vertical;
}

.gw-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: 1.15rem;
}

.gw-section__title .text-accent {
    color: var(--color-red);
}

.gw-section__text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #6b6b6b;
    margin-bottom: 1rem;
}

.gw-section__head {
    max-width: 720px;
    margin: 0 auto 2rem;
}

.gw-intro {
    padding: 5rem 0;
    background: #fff;
}

.gw-intro__img {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto;
}

.gw-check-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #444;
}

.gw-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-red);
}

.gw-genres {
    padding: 4.5rem 0 5rem;
    background: #f8f9fb;
}

.gw-genre-card {
    height: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 1.35rem;
    border: 1px solid #e8ebf0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gw-genre-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 26, 58, 0.08);
}

.gw-genre-card__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(191, 21, 42, 0.1) 0%, rgba(10, 26, 58, 0.06) 100%);
    border: 1px solid rgba(191, 21, 42, 0.14);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.gw-genre-card__icon i {
    font-size: 1.85rem;
    color: var(--color-red);
    line-height: 1;
    transition: color 0.25s ease;
}

.gw-genre-card:hover .gw-genre-card__icon {
    background: var(--gradient-red);
    border-color: transparent;
    transform: scale(1.06);
}

.gw-genre-card:hover .gw-genre-card__icon i {
    color: #fff;
}

.gw-genre-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.gw-genre-card__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #6b6b6b;
    text-align: center;
    margin-bottom: 1rem;
}

.gw-genre-card__link {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-red);
    text-decoration: none;
}

.gw-genre-card__link:hover {
    color: var(--color-red-dark);
}

.gw-cta-band {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: var(--color-navy);
    color: #fff;
}

.gw-cta-band__bg {
    position: absolute;
    inset: 0;
    background: url('../images/service-bg.webp') center right / cover no-repeat;
    opacity: 1;
    pointer-events: none;
}

.gw-cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 26, 58, 0.97) 0%,
        rgba(10, 26, 58, 0.9) 35%,
        rgba(10, 26, 58, 0.55) 62%,
        rgba(10, 26, 58, 0.2) 100%
    );
    pointer-events: none;
}

.gw-cta-band__glow {
    position: absolute;
    width: min(520px, 55vw);
    height: min(520px, 55vw);
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(191, 21, 42, 0.22) 0%, rgba(191, 21, 42, 0.08) 40%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.gw-cta-band__container {
    position: relative;
    z-index: 1;
}

.gw-cta-band__row {
    min-height: 440px;
}

.gw-cta-band__content {
    padding: 4.5rem 2.5rem 4.5rem 0;
    max-width: 580px;
}

.gw-cta-band__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 1.35rem;
}

.gw-cta-band__title .text-accent {
    color: var(--color-red);
}

.gw-cta-band__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.gw-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.gw-cta-band .btn-quote {
    padding: 0.85rem 2.15rem;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gw-cta-band .btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(191, 21, 42, 0.4);
}

.gw-cta-band__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.15rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gw-cta-band__btn-outline:hover {
    background: #fff;
    color: var(--color-navy);
    border-color: #fff;
    transform: translateY(-2px);
}

.gw-cta-band__btn-outline--dark {
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.gw-cta-band__btn-outline--dark:hover {
    background: var(--color-navy);
    color: #fff;
}

.gw-cta-band__col-img {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

@media (min-width: 992px) {
    .gw-cta-band__content {
        padding-right: 1rem;
    }

    .gw-cta-band__col-img {
        justify-content: flex-start;
        padding-left: 1rem;
    }

    .gw-cta-band__figure {
        margin-left: -2.5rem;
    }
}

.gw-cta-band__content::before {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.gw-cta-band__figure {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    line-height: 0;
    z-index: 2;
}

.gw-cta-band__books {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

@keyframes gw-cta-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gw-cta-band__books {
        animation: none;
    }
}

.gw-cta-band__img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.gw-voice {
    padding: 5rem 0;
    background: #fff;
}

.gw-voice__img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(10, 26, 58, 0.1);
}

.gw-voice__label {
    font-size: 0.9375rem;
    color: var(--color-navy);
    margin-bottom: 0.35rem;
}

.gw-why {
    padding: 4.5rem 0 5rem;
    background: #f8f9fb;
}

.gw-feature-card {
    height: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #e8ebf0;
}

.gw-feature-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
}

.gw-feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.gw-feature-card__text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #6b6b6b;
    margin: 0;
}

/* ---- Responsive ---- */

@media (max-width: 1399px) {
    .site-header .nav-link {
        font-size: 16px;
    }
    
    .navbar-col--nav .navbar-nav {
        gap: 8px;
    }
    
    .site-logo {
        height: auto;
        width: 200px;
    }
    
    .btn-quote {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .navbar-col--brand,
    .navbar-col--actions {
        flex: 0 0 auto;
    }

    .hero-form {
        padding: 1.5rem;
    }

    .hero-form__row {
        grid-template-columns: 1fr 1fr;
    }

    .hero-form__cell--phone {
        grid-column: 1 / -1;
    }

    .hero-form__cell--service {
        grid-column: 1 / 2;
    }

    .hero-form__cell--submit {
        grid-column: 2 / 3;
        min-width: 0;
    }

    .hero-banner__content {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-books {
        margin-top: -1.5rem;
    }

    .portfolio-filters {
        min-width: 640px;
    }

    .portfolio-filter {
        padding: 0.85rem 0.35rem;
        font-size: 11px;
    }

    .portfolio-item img {
        height: 320px;
    }

    .ink-dreams-section {
        padding: 4.5rem 0 0;
    }

    .ink-dreams__band,
    .ink-dreams__row,
    .ink-dreams__col-figure {
        min-height: 320px;
    }

    .ink-dreams__figure {
        left: 50%;
        transform: translateX(-50%);
    }

    .ink-dreams__man {
        max-height: 400px;
    }

    .ink-dreams__content {
        padding: 2.5rem 1.5rem 2rem;
    }

    .writing_timeline {
        display: none;
    }

    .writing_timeline2 {
        display: block;
    }

    .writing_process_sect {
        padding: 60px 0;
    }
    .services-section__grid{
        justify-content: center;
    }
    .copies-cta__figure {
        position: relative;
    }
    
    .copies-cta__books {
        margin: 0 auto;
    }
    
    .book-lovers__content {
        text-align: center;
    }
    
    .copies-cta__content {
        text-align: center;
    }
    
    .counter-section__title,.counter-section__desc {
        text-align: center;
        margin: 10px auto;
    }
    .hero-bottom-bar__img {
        min-height: 140px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-filters {
        min-width: unset;
        flex-wrap: wrap;
    }
    
    .portfolio-filter {
        flex: 30%;
    }
}
@media (max-width: 575.98px) {
    .site-logo {
        height: 38px;
    }

    .hero-form {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .hero-form__row {
        grid-template-columns: 1fr;
    }

    .hero-form__cell--phone,
    .hero-form__cell--service,
    .hero-form__cell--submit {
        grid-column: auto;
    }

    .hero-form__desc {
        font-size: 0.75rem;
    }

    .hero-books {
        margin-top: 0;
    }

    .hero-books__img {
        max-width: 100%;
    }

    .portfolio-section {
        padding: 50px 0 60px;
    }

    .portfolio-filters {
        border-radius: 8px;
    }

    .portfolio-filter {
        font-size: 10px;
        padding: 0.75rem 0.25rem;
        letter-spacing: 0.02em;
    }

    .portfolio-item img {
        height: 280px;
    }

    .ink-dreams-section {
        padding: 3.5rem 0 0;
    }

    .ink-dreams__band,
    .ink-dreams__row,
    .ink-dreams__col-figure {
        min-height: 280px;
    }

    .ink-dreams__man {
        max-height: 320px;
    }

    .ink-dreams__content {
        text-align: center;
        padding: 2rem 1rem 1.75rem;
    }

    .ink-dreams__text {
        margin-left: auto;
        margin-right: auto;
    }

    .writing_process_sect {
        padding: 50px 0;
    }

    .services-section {
        padding: 3.5rem 0 0;
    }

    .service-card__img img {
        height: 200px;
    }

    .copies-cta__line {
        max-height: 260px;
    }

    .copies-cta__line--left {
        left: 8px;
    }

    .copies-cta__line--right {
        right: 8px;
    }

    .copies-cta__row,
    .copies-cta__col-img {
        min-height: 0;
    }

    .copies-cta__content {
        padding: 2.5rem 1.5rem 1.5rem;
        text-align: center;
    }

    .copies-cta__quote {
        margin-left: auto;
        margin-right: auto;
    }

    .copies-cta__partners {
        margin: 0 auto;
        object-position: center;
    }

    .copies-cta__figure {
        position: relative;
        right: auto;
        text-align: center;
        margin-top: -2rem;
    }

    .copies-cta__books {
        max-height: 340px;
        margin: 0 auto;
        object-position: bottom center;
    }

    .book-lovers-section {
        padding: 3.5rem 0;
    }

    .book-lovers__content {
        text-align: center;
        margin: 0 auto;
    }

    .counter-section {
        padding: 3.5rem 0;
    }

    .counter-section__desc {
        max-width: 100%;
    }

    .counter-section__stats {
        justify-content: center;
    }

    .reviews-section {
        padding: 3.5rem 0;
    }

    .reviews-slider:not(.slick-initialized) .reviews-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviews-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .reviews-card__cover {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .reviews-card__cover img {
        max-width: 160px;
        margin: 0 auto;
    }

    .reviews-card__footer {
        justify-content: center;
    }

    .contact-section {
        padding-bottom: 3.5rem;
    }

    .contact-section__content {
        padding-right: 0;
        text-align: center;
    }

    .contact-section__desc,
    .contact-section__list {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-section__list {
        text-align: left;
        max-width: 420px;
    }

    .contact-section__actions {
        margin-top: 0;
        justify-content: center;
    }

    .contact-section__line--top {
        max-width: 140px;
    }

    .contact-section__line--bottom {
        max-width: 100px;
    }

    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-section__content {
        text-align: center;
    }

    .faq-section__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-section__img {
        margin: 0 auto;
    }

    .footer-mega__list--spaced-top {
        margin-top: 0;
    }

    .footer-mega__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-mega__copy,
    .footer-mega__terms,
    .footer-mega__legal {
        flex: none;
        text-align: center;
    }

    .footer-mega__legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .gw-hero__content {
        padding: 3.5rem 0 3rem;
    }

    .gw-hero__actions,
    .gw-cta-band__actions {
        justify-content: center;
    }

    .gw-intro,
    .gw-voice,
    .gw-genres,
    .gw-why {
        padding: 3.5rem 0;
    }

    .gw-intro__img,
    .gw-voice__img,
    .gw-cta-band__books {
        margin: 0 auto;
    }

    .gw-cta-band__content::before {
        margin-left: auto;
        margin-right: auto;
    }

    .gw-cta-band__content {
        padding: 3.5rem 0 2rem;
        text-align: center;
        max-width: none;
    }

    .gw-cta-band__text {
        margin-left: auto;
        margin-right: auto;
    }

    .gw-cta-band__row,
    .gw-cta-band__col-img {
        min-height: 0;
    }

    .gw-cta-band__glow {
        right: 50%;
        transform: translate(50%, -50%);
        width: 320px;
        height: 320px;
    }

    .gw-cta-band__col-img {
        padding-bottom: 2rem;
    }

    .gw-cta-band__figure {
        max-width: 360px;
        margin-left: 0;
    }

    .gw-cta-band__books {
        max-height: 340px;
    }

    .gw-voice .gw-section__title,
    .gw-voice .gw-section__text,
    .gw-voice .gw-voice__label,
    .gw-why .gw-section__title,
    .gw-why .gw-section__text {
        text-align: center;
    }
}

@media (max-width: 479.98px) {
    .ink-dreams__figure {
        transform: scale(1);
        margin: 0 auto;
        position: relative;
        left: unset;
    }
    
    .ink-dreams__man {
        max-height: 100%;
    }
}


@media (max-width: 1199.98px) {
    .copies-cta__line--left,.copies-cta__line--right,.contact-section__line--top,.contact-section__line--bottom {
        opacity: .5;
    }
    
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header .nav-link {
        font-size: 0.8125rem;
        padding: 0.45rem 0.65rem;
    }

    .btn-quote {
        font-size: 0.875rem;
        padding: 0.65rem 1.35rem;
    }

    .writing_timeline_item .writing_timeline_title h4 {
        font-size: 1.125rem;
    }

    .writing_timeline_item .writing_timeline_content.left_content {
        padding: 10px 10px 10px 94px;
    }

    .writing_timeline_item .writing_timeline_content.right_content {
        padding: 10px 94px 10px 10px;
    }
   
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}
@media (min-width: 1600px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

/* Mobile sticky Call / Sign Up */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 64px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        display: flex;
        height: 56px;
        box-shadow: 0 -4px 18px rgba(6, 29, 85, 0.18);
    }

    .mobile-sticky-cta__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
        border: 0;
        text-decoration: none;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        line-height: 1;
    }

    .mobile-sticky-cta__btn--call {
        background: #0a1a3a;
        color: #fff;
    }

    .mobile-sticky-cta__btn--signup {
        background: #BF152A;
        color: #fff;
    }

    .mobile-sticky-cta__btn i {
        font-size: 15px;
    }

    .mobile-sticky-cta__or {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        color: #0a1a3a;
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.04em;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        z-index: 1;
        pointer-events: none;
    }

    /* Keep Tawk above sticky bar if customStyle is ignored */
    #tawkchat-container,
    .widget-visible {
        bottom: 72px !important;
    }
}
