
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

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

.scroll-animation {
    transition: opacity 0.5s ease-in-out;
}

:root {
    --pink-color: #8B2FA8;
    --violet-color: #B88BC9;
    --top-pd: 150px;
    --title: 35px;
    --text: 19px;
    --section-title: 55px;
    --section-title-weight: 700;
}

.pink {
    color: var(--pink-color);
}

a {
    text-decoration: none;
    color: black;
}

header {
    width: 100%;
    height: 150px;
    position: fixed !important;
    top: 0;
    background-color: white;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Anchor offset under fixed header */
#hero,
#history,
#gamechangers,
#work,
#opinions-videos,
#faq,
#design-section,
#quote {
    scroll-margin-top: 150px !important;
}

section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
}

.bolder {
    font-weight: 700;
}

.header {
    height: 100%;
    width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 120px;
    width: 120px;
}

.menu-phones {
    display: none;
}

.opinions-slider-phone-container {
    display: none;
}

.gc-title-phone {
    display: none;
}

#menu-button>img {
    display: none;
    height: 35px;
    width: 35px;
}

.menu {
    width: 1100px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}

.menu-link {
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
    display: inline-block;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--pink-color);
    transform: translateX(-50%);
    transition: width 0.4s ease-in-out;
}

.menu-link:hover::before {
    width: 100%;
}

.menu-link:hover:not(:last-child) {
    color: var(--pink-color);
}

.menu-link-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 40px;
    width: auto;
    min-width: 200px;
    padding: 12px 24px;
    background-color: var(--pink-color);
    border-radius: 60px;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.menu-link-form::before {
    display: none;
}

.menu-link-form:hover {
    background-color: #7A2A95;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 47, 168, 0.3);
}

.menu-link-ebook {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(139, 47, 168, 0.35);
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.12) 0%, rgba(139, 47, 168, 0.06) 100%);
    color: #6a2382;
    font-weight: 600;
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.menu-link-ebook::before {
    display: none;
}

.menu-link-ebook:hover {
    color: #5f1f75;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.2) 0%, rgba(139, 47, 168, 0.1) 100%);
    border-color: rgba(139, 47, 168, 0.45);
    box-shadow: 0 3px 10px rgba(139, 47, 168, 0.14);
}

.menu-link-phone-ebook {
    width: auto;
    min-width: 170px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.menu-link-phone-ebook:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

@media screen and (max-width: 1000px) {
    .menu-link-phone.menu-link-phone-ebook {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        min-width: 250px;
        padding: 11px 22px;
        border-radius: 60px;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .menu-link-phone.menu-link-phone-form {
        padding: 11px 22px;
        margin-bottom: 30px;
    }
}

/* HERO SECTION */
#hero {
    width: 100%;
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    height: fit-content;
    width: 1400px;
    padding-top: 200px;
    padding-bottom: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.hero-texts {
    width: 600px;
}

.hero-text {
    font-size: var(--title);
}

.hero-description {
    font-size: 0.9em;
    display: block;
    margin-top: 10px;
}

#hero-name {
    color: var(--pink-color);
    font-weight: 700;
    font-size: 1.4em;
    display: block;
    margin: 20px 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-button {
    width: 400px;
    height: 55px;
    border-radius: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-top: 50px;
    background-color: var(--pink-color);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
    transition: all 0.3s ease-in-out;
    animation: heroButtonPulse 1.5s ease-in-out infinite;
}

.hero-button>img {
    height: 20px;
    width: 20px;
    filter: brightness(0) invert(1);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    background-color: #7A2A95;
    color: white;
}

@keyframes heroButtonPulse {
    0% {
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.32);
    }

    50% {
        box-shadow: 0 10px 28px rgba(139, 47, 168, 0.52);
    }

    100% {
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.32);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-button {
        animation: none;
    }
}

/* History section â€“ overflow: visible, ĹĽeby zdjÄ™cie mogĹ‚o wcinaÄ‡ siÄ™ z boku */
#history {
    width: 100%;
    min-height: 70vh;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.history {
    height: fit-content;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 24px 100px;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.history-image {
    width: 480px;
    height: 1100px;
}

.history-texts {
    width: 100%;
    max-width: 1200px;
    text-align: right;
}

.history-context {
    overflow: visible;
}

.history-content-wrapper {
    width: 100%;
    margin-top: 40px;
    position: relative;
    overflow: visible;
}

.history-content-wrapper::after {
    content: '';
    display: table;
    clear: both;
}

/* ZdjÄ™cie wcina siÄ™ z lewej â€“ delikatne zaokrÄ…glenie, bez cienia */
.history-image-left {
    float: left;
    width: 380px;
    max-height: 85vh;
    height: auto;
    object-fit: cover;
    object-position: top center;
    margin-left: -80px;
    margin-right: 48px;
    margin-bottom: 24px;
    margin-top: 0;
    border-radius: 16px;
    box-shadow: none;
    shape-outside: margin-box;
    display: block;
}

/* Tekst opĹ‚ywa zdjÄ™cie, a gdy zdjÄ™cie siÄ™ koĹ„czy â€“ automatycznie rozszerza siÄ™ na peĹ‚nÄ… szerokoĹ›Ä‡ */
.history-text-content {
    text-align: right;
    display: flow-root;
    /* Tworzy nowy context, pozwala tekstowi rozszerzyÄ‡ siÄ™ po zakoĹ„czeniu float */
}

/* Na mniejszych ekranach: najpierw historia (tekst), potem zdjÄ™cie â€“ bez wcinania */
@media screen and (max-width: 1000px) {
    .history-content-wrapper {
        display: flex;
        flex-direction: column;
        margin-top: 32px;
    }

    .history-content-wrapper::after {
        display: none;
    }

    .history-image-left {
        order: 2;
        float: none;
        width: 100%;
        max-width: 420px;
        max-height: none;
        margin: 48px auto 0;
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
    }

    .history-text-content {
        order: 1;
        max-width: 100%;
    }
}

/* History Hero Title */
.history-hero-title {
    margin-bottom: 60px;
    text-align: right;
}

.history-main-title {
    font-size: 65px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Roboto Serif', serif;
    letter-spacing: -1px;
}

.history-main-title .highlight {
    color: var(--pink-color);
    display: block;
    margin-top: 10px;
}

.history-subtitle {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    font-family: 'Roboto Serif', serif;
}

.history-subtitle .be-highlight {
    color: var(--pink-color);
    display: inline-block;
    padding: 0 10px;
    background: linear-gradient(120deg, rgba(139, 47, 168, 0.1) 0%, rgba(139, 47, 168, 0.05) 100%);
    border-radius: 8px;
}

.history-title {
    margin-bottom: 40px;
    text-align: right;
}

.history-label {
    font-size: 18px;
    color: var(--pink-color);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Roboto Serif', serif;
    text-transform: uppercase;
}

.history-title>h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--pink-color);
    line-height: 1.3;
    margin-bottom: 0;
    font-family: 'Roboto Serif', serif;
}

.history-intro {
    margin-bottom: 40px;
    text-align: right;
}

.history-intro-text {
    font-size: 22px;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    font-weight: 500;
}


.history-paragraph {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
}

.history-paragraph strong {
    color: var(--pink-color);
    font-weight: 700;
}

.history-quote {
    margin: 40px 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.08) 0%, rgba(139, 47, 168, 0.03) 100%);
    border-left: 4px solid var(--pink-color);
    border-radius: 8px;
    text-align: right;
}

.history-quote p {
    font-size: 22px;
    font-style: italic;
    color: var(--pink-color);
    font-weight: 600;
    margin: 0;
    font-family: 'Roboto Serif', serif;
}

.history-highlight-box {
    margin: 40px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--pink-color) 0%, #7A2A95 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 47, 168, 0.25);
    text-align: center;
    position: relative;
    clear: both;
}

.history-highlight-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--pink-color), #7A2A95);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.history-highlight-text {
    font-size: 24px;
    color: white;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    font-family: 'Roboto Serif', serif;
}

.history-quote-large {
    margin: 50px 0;
    padding: 35px 45px;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.12) 0%, rgba(139, 47, 168, 0.05) 100%);
    border-left: 5px solid var(--pink-color);
    border-radius: 10px;
    text-align: right;
    position: relative;
    clear: both;
}

.history-quote-large::before {
    content: "\"";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 80px;
    color: var(--pink-color);
    opacity: 0.2;
    font-family: 'Roboto Serif', serif;
    line-height: 1;
}

.history-quote-large p {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
    font-family: 'Roboto Serif', serif;
}

.history-list {
    margin: 30px 0;
    padding-right: 0;
    padding-left: 0;
    list-style: none;
    text-align: right;
    clear: both;
}

.history-list li {
    margin-bottom: 15px;
    padding-right: 0;
    padding-left: 36px;
    position: relative;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    text-align: right;
}

/* StrzaĹ‚ka na poczÄ…tku linii (z lewej) */
.history-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    right: auto;
    color: var(--pink-color);
    font-weight: 700;
    font-size: 24px;
}

.history-end-text {
    margin-top: 80px;
    text-align: right;
    clear: both;
    width: 100%;
    max-width: 100%;
}

.history-cta {
    font-size: 20px;
    color: #333;
    line-height: 1.9;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    text-align: right;
    max-width: 100%;
}

.history-cta-bold {
    display: block;
    margin-top: 24px;
    font-size: 32px;
    font-weight: 800;
    color: var(--pink-color);
    font-family: 'Roboto Serif', serif;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* Usuwam konfliktujÄ…ce style dla .history-end-text>p */
.history-end-text>p {
    text-align: right;
    padding-left: 0;
    padding-right: 0;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    margin-top: 0;
}

/* GAMECHANGERS - Sekcja BE */
#gamechangers {
    width: 100%;
    min-height: 70vh;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    background: #ffffff;
    position: relative;

}



.gamechangers {
    height: fit-content;
    width: 100%;
    max-width: 1400px;
    padding-top: 0;
    padding-bottom: 0;
    gap: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.gamechangers-title {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
}

.gamechangers-title>h3 {
    font-size: 56px;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: -1.5px;
    margin: 0;
    text-shadow: none;
    position: relative;
    line-height: 1.2;
}

.gamechangers-title>h3::after {
    display: none;
}

.gamechangers-context {
    font-size: 20px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.gc-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    object-fit: contain;
}

.gamechangers-context>article {
    flex: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gamechangers-context>article>p {
    margin: 0 0 28px 0;
    width: 100%;
    color: #333333;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: none;
    font-size: 18px;
}

.gamechangers-context>article>p:last-child {
    margin-bottom: 0;
}

/* WORK SECTION */

#work {
    width: 100%;
    min-height: 65vh;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
}



.work {
    height: fit-content;
    width: 100%;
    max-width: 1400px;
    padding-top: 80px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.work-title {
    margin-bottom: 50px;
}

.work-title>h3 {
    font-size: 72px;
    font-weight: 900;
    font-family: 'Roboto Serif', serif;
    background: linear-gradient(135deg, var(--pink-color) 0%, #7A2A95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.work-title>h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pink-color), transparent);
    border-radius: 2px;
}

.work-text {
    width: 1300px;
    font-size: 20px;
    margin-bottom: 50px;
}

.work-text>article {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 45px 55px;
    border-radius: 20px;
    border: 2px solid rgba(139, 47, 168, 0.12);
    box-shadow: 0 8px 30px rgba(139, 47, 168, 0.08);
    transition: all 0.3s ease;
}

.work-text>article:hover {
    box-shadow: 0 12px 40px rgba(139, 47, 168, 0.12);
    border-color: rgba(139, 47, 168, 0.2);
    transform: translateY(-2px);
}

.work-text>article>p {
    margin-bottom: 22px;
    line-height: 1.85;
    color: #333;
    font-size: 20px;
}

.work-text>article>p:last-child {
    margin-bottom: 0;
}

.work-text>article .pink {
    color: var(--pink-color);
    font-weight: 700;
    position: relative;
}

/* Work Features - Kafelki z funkcjami - wszystkie jeden pod drugim */
.work-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    width: 100%;
}

.work-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid rgba(139, 47, 168, 0.15);
    border-radius: 16px;
    padding: 40px 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.work-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--pink-color) 0%, #7A2A95 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.work-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(139, 47, 168, 0.2);
    border-color: rgba(139, 47, 168, 0.4);
}

.work-feature-card:hover::before {
    opacity: 1;
}

.work-feature-card:hover::after {
    opacity: 1;
}

.work-feature-card-large {
    padding: 45px 50px;
}

.work-feature-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--pink-color);
    margin: 0 0 18px 0;
    line-height: 1.3;
    font-family: 'Roboto Serif', serif;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.work-feature-card:hover .work-feature-title {
    color: #7A2A95;
}

.work-feature-text {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

/* QUOTE SECTION - Cytat */
#quote {
    width: 100%;
    min-height: 40vh;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    position: relative;
}



.quote {
    height: fit-content;
    width: 100%;
    max-width: 1200px;
    padding: 60px 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
    position: relative;
}

.quote>img {
    width: 60px;
    height: 60px;
    opacity: 0.3;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(2000%) hue-rotate(270deg) brightness(0.9);
}

.quote>p {
    width: 100%;
    max-width: 900px;
    font-family: 'Roboto Serif', serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: -0.5px;
}

.quote>p>span.bolder {
    font-family: 'Roboto Serif', serif;
    font-weight: 900;
    color: var(--pink-color);
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.quote>p>span.bolder::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pink-color), transparent);
    opacity: 0.4;
}

/* OPINIONS VIDEOS SECTION */

#opinions-videos {
    width: 100%;
    min-height: 50vh;
    height: fit-content;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    flex-direction: column;
    gap: 60px;
    text-align: center;
    background: #ffffff;

}

.opinions-videos-title {
    font-size: 56px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin: 0;
    text-align: center;
}

.opinions-videos {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opinions-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0;
}

/* EBOOK BREAK SECTION */
#ebook-break {
    width: 100%;
    padding: 44px 20px 52px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.ebook-break {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: clamp(20px, 3.4vw, 34px) clamp(18px, 3vw, 42px);
    border: 1px solid rgba(139, 47, 168, 0.35);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.045) 0%, rgba(139, 47, 168, 0.02) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.ebook-break-text {
    margin: 0;
    color: #3f2b4b;
    font-size: clamp(16px, 1.55vw, 22px);
    line-height: 1.4;
    font-weight: 500;
}

.ebook-break-text span {
    display: block;
    margin-top: 6px;
    color: var(--pink-color);
    font-weight: 600;
}

.ebook-break-link {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 999px;
    background-color: var(--pink-color);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    border: 1px solid var(--pink-color);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ebook-break-link:hover {
    background-color: #84309d;
    box-shadow: 0 4px 10px rgba(139, 47, 168, 0.18);
    transform: none;
    color: #fff;
}

@media screen and (max-width: 780px) {
    #ebook-break {
        padding: 34px 14px 42px;
    }

    .ebook-break {
        border-width: 1px;
        border-radius: 12px;
        align-items: center;
        gap: 16px;
    }

    .ebook-break-link {
        width: 100%;
        min-height: 44px;
    }
}

/* FAQ SECTION */
#faq {
    width: 100%;
    min-height: 70vh;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);

}

.faq-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 56px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin: 0 0 60px 0;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(139, 47, 168, 0.12);
}

.faq-question {
    width: 100%;
    padding: 28px 35px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--pink-color);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 32px;
    font-weight: 300;
    color: var(--pink-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 35px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 35px 28px 35px;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

/* TIMELINE SECCTION */
#design-section {
    width: 100%;
    min-height: 70vh;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff;

}

.timeline-title {
    font-size: 56px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    margin-bottom: 80px;
    color: #1a1a1a;
    letter-spacing: -1px;
    text-align: center;
}

.checkpoint {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkpoint-item {
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkpoint-item:hover {
    border-color: rgba(139, 47, 168, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 47, 168, 0.15);
}

.checkpoint-item>p {
    text-align: center;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.checkpoint-item>img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.desgin-section-text {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin-top: 60px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 1.7;
}

.desgin-section-button {
    width: 100%;
    max-width: 400px;
    height: 70px;
    border-radius: 12px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--pink-color) 0%, #7A2A95 100%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
}

.desgin-section-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    background: linear-gradient(135deg, #7A2A95 0%, var(--pink-color) 100%);
}

.desgin-section-button>img {
    height: 24px;
    width: 24px;
    filter: brightness(0) invert(1);
}

/* FOOTER */
.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.footer-cont {
    height: 100%;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.footer-cont {
    height: 100%;
    width: 400px;
}

.footer-middle>a>img {
    height: 100px;
    width: 100px;
}

.footer-middle>a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-right>a {
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-right>a:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: rgba(139, 47, 168, 0.1);
}



@media screen and (max-width:1400px) {
    :root {
        --pink-color: #8B2FA8;
        --violet-color: #D3B9E8;
        --top-pd: 150px;
        --title: 25px;
        --text: 16px;
        --section-title: 35px;
        --section-title-weight: 700;
    }

    .header {
        height: 100%;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 0 10px;
    }

    .header-logo {
        height: 120px;
        width: 120px;
    }

    .menu {
        width: 80%;
        height: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: 14px;
        gap: 0;
    }

    .menu-link {
        position: relative;
        padding: 5px 0;
        transition: color 0.3s ease-in-out;
        display: inline-block;
    }

    .menu-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--pink-color);
        transform: translateX(-50%);
        transition: width 0.4s ease-in-out;
    }

    .menu-link:hover::before {
        width: 100%;
    }

    .menu-link:hover:not(:last-child) {
        color: var(--pink-color);
    }

    .menu-link-form {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        min-height: 40px;
        width: auto;
        min-width: 160px;
        padding: 10px 20px;
        border: 1px solid var(--pink-color);
        border-radius: 60px;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease-in-out;
    }

    .menu-link-form::before {
        display: none;
    }

    .menu-link-form:hover {
        background-color: var(--pink-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 47, 168, 0.3);
    }

    /* HERO SECTION */
    #hero {
        width: 100%;
        min-height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        height: fit-content;
        width: 980px;
        padding-top: 200px;
        padding-bottom: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .hero-texts {
        width: 450px;
    }

    .hero-text {
        font-size: var(--title);
    }

    .hero-description {
        font-size: 0.9em;
        display: block;
        margin-top: 10px;
    }

    #hero-name {
        color: var(--pink-color);
        font-weight: 700;
        font-size: 1.3em;
        display: block;
        margin: 18px 0;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .hero-button {
        width: 450px;
        height: 55px;
        border-radius: 40px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        margin-top: 50px;
        background-color: var(--pink-color);
        color: white;
        font-weight: 600;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
        transition: all 0.3s ease-in-out;
    }

    .hero-button>img {
        height: 20px;
        width: 20px;
        filter: brightness(0) invert(1);
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
        background-color: #7A2A95;
        color: white;
    }

    .hero>img {
        height: 450px;
        width: 420px;
    }

    /* History section */
    #history {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .history {
        height: fit-content;
        width: 980px;
        padding-top: 200px;
        padding-bottom: 100px;
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    .history-image {
        width: 400px;
        height: 1000px;
    }

    .history-texts {
        width: 100%;
        max-width: 900px;
        text-align: right;
    }

    .history-content-wrapper {
        display: flex;
        flex-direction: column;
        margin-top: 32px;
    }

    .history-content-wrapper::after {
        display: none;
    }

    .history-image-left {
        order: 2;
        float: none;
        width: 100%;
        max-width: 420px;
        max-height: none;
        margin: 48px auto 0;
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
    }

    .history-text-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .history-title>h2 {
        font-size: var(--section-title);
        font-weight: var(--section-title-weight);
        color: var(--pink-color);
        line-height: 35px;
        margin-bottom: 30px;
        font-family: 'Roboto Serif', serif;
    }

    .history-title>p {
        font-size: 20px;
        color: var(--pink-color);
        font-family: 'Roboto Serif', serif;
    }

    .history-context {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .history-context>article {
        text-align: right;
        font-size: 18px;
        width: fit-content;
        line-height: 32px;
    }

    .history-end-text {
        margin-top: 60px;
    }

    .history-cta {
        font-size: 18px;
    }

    .history-cta-bold {
        font-size: 26px;
        margin-top: 20px;
    }

    .history-end-text>p {
        padding-left: 0;
        padding-right: 0;
    }

    /* GAMECHANGERS */
    #gamechangers {
        padding: 80px 40px;
        background: #ffffff;
    }

    .gamechangers {
        width: 100%;
        max-width: 1000px;
        padding-top: 0;
        padding-bottom: 0;
        gap: 60px;
    }

    .gamechangers-title>h3 {
        font-size: 48px;
        letter-spacing: -1px;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        color: #1a1a1a;
    }

    .gamechangers-context {
        font-size: 19px;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .gc-image {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .gamechangers-context>article {
        max-width: 100%;
    }

    .gamechangers-context>article>p {
        margin-bottom: 26px;
        font-size: 17px;
        color: #333333;
    }

    /* WORK SECTION */

    #work {
        width: 100%;
        min-height: 65vh;
        padding: 50px 40px;
        display: flex;
        justify-content: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .work {
        height: fit-content;
        width: 100%;
        max-width: 1000px;
        padding-top: 70px;
        padding-bottom: 80px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 45px;
    }

    .work-title>h3 {
        font-size: 56px;
    }

    .work-text {
        width: 100%;
        max-width: 1000px;
        font-size: 19px;
        padding: 0 10px;
    }

    .work-text>article {
        padding: 35px 40px;
    }

    .work-features {
        gap: 20px;
        margin-top: 50px;
    }

    .work-feature-card {
        padding: 35px 40px;
    }

    .work-feature-title {
        font-size: 24px;
    }

    .work-feature-text {
        font-size: 16px;
    }

    .work>img {
        width: 90%;
    }

    /* QUOTE SECTION */
    #quote {
        padding: 60px 40px;
        background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    }

    .quote {
        width: 100%;
        max-width: 1000px;
        padding: 50px 40px;
        gap: 35px;
    }

    .quote>img {
        width: 50px;
        height: 50px;
    }

    .quote>p {
        font-size: 36px;
        max-width: 800px;
    }

    /* OPINIONS VIDEOS SECTION */

    #opinions-videos {
        padding: 80px 40px;
        background: #ffffff;
    }

    .opinions-videos-title {
        font-size: 48px;
    }

    .opinions-image {
        max-width: 1000px;
    }

    /* FAQ SECTION */
    #faq {
        padding: 80px 40px;
    }

    .faq-title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .faq-question {
        padding: 24px 30px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 30px;
    }

    .faq-item.active .faq-answer {
        padding: 0 30px 24px 30px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    /* TIMELINE SECCTION */
    #design-section {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .timeline-title {
        font-size: 60px;
        font-family: 'Roboto Serif', serif;
        font-weight: 500;
        margin-bottom: 50px;
    }

    .checkpoint {
        width: 100%;
        max-width: 900px;
        margin-bottom: 25px;
    }

    .checkpoint-item {
        max-width: 450px;
        padding: 35px;
    }

    .checkpoint-item>p {
        font-size: 17px;
    }

    .checkpoint-item>img {
        width: 55px;
        height: 55px;
    }

    /* .first-right:hover, .second-left:hover, .third-right:hover, .fourth-left:hover{
        background-color: var(--pink-color);
    } */
    .desgin-section-text {
        text-align: center;
        width: 600px;
        margin-top: 80px;
        font-size: 25px;
    }

    .desgin-section-button {
        width: 400px;
        height: 75px;
        border-radius: 10px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        transition: 0.3s ease-in-out;
        border: 1px solid black;
        color: #000;
        font-family: Roboto Serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        transition: 0.3s ease-in-out;
    }

    .desgin-section-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    }

    .desgin-section-button>img {
        height: 22px;
        width: 22px;
    }

    /* FOOTER */
    .footer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px;
    }

    .footer-cont {
        height: 100%;
        width: 400px;
    }

    .footer-middle>a>img {
        height: 100px;
        width: 100px;
    }

    .footer-middle>a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .footer-right>a {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .footer-right>a:hover {
        opacity: 1;
        transform: scale(1.1);
        background-color: rgba(139, 47, 168, 0.1);
    }
}

@media screen and (max-width:1000px) {
    :root {
        --pink-color: #8B2FA8;
        --violet-color: #D3B9E8;
        --top-pd: 150px;
        --title: 23px;
        --text: 2px;
        --section-title: 32px;
        --section-title-weight: 700;
    }

    .history-main-title {
        font-size: 50px;
    }

    .history-subtitle {
        font-size: 35px;
    }

    .header {
        height: 100%;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 0 10px;
    }

    .header-logo {
        height: 120px;
        width: 120px;
    }

    .menu {
        width: 80%;
        height: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: 14px;
    }

    .menu-link {
        position: relative;
        padding: 5px 0;
        transition: color 0.3s ease-in-out;
        display: inline-block;
    }

    .menu-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--pink-color);
        transform: translateX(-50%);
        transition: width 0.4s ease-in-out;
    }

    .menu-link:hover::before {
        width: 100%;
    }

    .menu-link:hover:not(:last-child) {
        color: var(--pink-color);
    }

    .menu-link-form {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        min-height: 40px;
        width: auto;
        min-width: 160px;
        padding: 10px 20px;
        border: 1px solid var(--pink-color);
        border-radius: 60px;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease-in-out;
    }

    .menu-link-form::before {
        display: none;
    }

    .menu-link-form:hover {
        background-color: var(--pink-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 47, 168, 0.3);
    }

    /* HERO SECTION */
    #hero {
        width: 100%;
        min-height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 150px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .hero-texts {
        width: 350px;
    }

    .hero-text {
        font-size: var(--title);
    }

    .hero-description {
        font-size: 0.9em;
        display: block;
        margin-top: 10px;
    }

    #hero-name {
        color: var(--pink-color);
        font-weight: 700;
        font-size: 1.2em;
        display: block;
        margin: 15px 0;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .hero-button {
        width: 350px;
        height: 45px;
        border-radius: 40px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        margin-top: 45px;
        background-color: var(--pink-color);
        color: white;
        font-weight: 600;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
        transition: all 0.3s ease-in-out;
    }

    .hero-button>img {
        height: 20px;
        width: 20px;
        filter: brightness(0) invert(1);
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
        background-color: #7A2A95;
        color: white;
    }

    .hero>img {
        height: 350px;
        width: 320px;
    }

    /* History section */
    #history {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .history {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        gap: 100px;
    }

    .history-image {
        width: 400px;
        height: 900px;
        margin: auto;
    }

    .history-texts {
        width: 90%;
        text-align: center;
    }

    .history-title>h2 {
        font-size: 35px;
        font-weight: var(--section-title-weight);
        color: var(--pink-color);
        line-height: 35px;
        margin-bottom: 30px;
        font-family: 'Roboto Serif', serif;
    }

    .history-title>p {
        font-size: 22px;
        color: var(--pink-color);
        font-family: 'Roboto Serif', serif;
    }

    .history-context {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .history-context>article {
        text-align: center;
        font-size: 20px;
        width: fit-content;
        line-height: 35px;
    }

    .history-end-text {
        margin-top: 60px;
        text-align: center;
    }

    .history-cta {
        font-size: 18px;
        text-align: center;
    }

    .history-cta-bold {
        font-size: 26px;
        margin-top: 20px;
    }

    .history-end-text>p {
        padding-left: 0;
        padding-right: 0;
    }

    /* GAMECHANGERS */
    #gamechangers {
        padding: 70px 30px;
        background: #ffffff;
    }

    .gamechangers {
        width: 100%;
        max-width: 800px;
        padding-top: 0;
        padding-bottom: 0;
        gap: 50px;
    }

    .gamechangers-title>h3 {
        font-size: 42px;
        letter-spacing: -1px;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        color: #1a1a1a;
    }

    .gamechangers-context {
        font-size: 18px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gc-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        order: -1;
    }

    .gamechangers-context>article {
        max-width: 100%;
    }

    .gamechangers-context>article>p {
        margin-bottom: 24px;
        font-size: 17px;
        color: #333333;
    }

    /* WORK SECTION */

    #work {
        width: 100%;
        min-height: 65vh;
        padding: 40px 30px;
        display: flex;
        justify-content: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .work {
        height: fit-content;
        width: 90%;
        padding-top: 60px;
        padding-bottom: 70px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .work-title>h3 {
        font-size: 48px;
    }

    .work-text {
        width: 95%;
        font-size: 18px;
        padding: 0 10px;
        line-height: 32px;
    }

    .work-text>article {
        padding: 30px 35px;
    }

    .work-features {
        gap: 18px;
        margin-top: 40px;
    }

    .work-feature-card {
        padding: 30px 35px;
    }

    .work-feature-title {
        font-size: 22px;
    }

    .work-feature-text {
        font-size: 15px;
    }

    .work>img {
        width: 100%;
    }

    /* QUOTE SECTION */
    #quote {
        padding: 50px 30px;
        background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    }

    .quote {
        width: 100%;
        max-width: 800px;
        padding: 45px 35px;
        gap: 30px;
        flex-direction: row;
    }

    .quote>img {
        width: 45px;
        height: 45px;
    }

    .quote>p {
        font-size: 32px;
        max-width: 100%;
    }

    /* OPINIONS VIDEOS SECTION */

    #opinions-videos {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        box-shadow: none;

    }

    .opinions-videos {
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 1;
        flex-wrap: wrap;
        gap: 100px;
    }

    .opinions-videos {
        width: 100%;
        height: 100%;
    }

    .opinions-image {
        max-width: 100%;
    }


    /* MORE TEXT SECTION */
    #more-text {
        width: 100%;
        min-height: 15vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: none;
        background-color: var(--pink-color);
    }

    #more-text>blockquote {
        font-size: 60px;
        font-family: 'Roboto Serif', serif;
        font-weight: 600;
    }

    /* TIMELINE SECCTION */
    #design-section {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .timeline-title {
        font-size: 60px;
        font-family: 'Roboto Serif', serif;
        font-weight: 500;
        margin-bottom: 50px;
    }

    .checkpoint {
        width: 100%;
        max-width: 900px;
        margin-bottom: 25px;
    }

    .checkpoint-item {
        max-width: 450px;
        padding: 35px;
    }

    .checkpoint-item>p {
        font-size: 17px;
    }

    .checkpoint-item>img {
        width: 55px;
        height: 55px;
    }

    /* .first-right:hover, .second-left:hover, .third-right:hover, .fourth-left:hover{
        background-color: var(--pink-color);
    } */
    .desgin-section-text {
        text-align: center;
        width: 600px;
        margin-top: 80px;
        font-size: 25px;
    }

    .desgin-section-button {
        width: 400px;
        height: 75px;
        border-radius: 10px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        transition: 0.3s ease-in-out;
        border: 1px solid black;
        color: #000;
        font-family: Roboto Serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        transition: 0.3s ease-in-out;
    }

    .desgin-section-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    }

    .desgin-section-button>img {
        height: 20px;
        width: 20px;
    }

    /* FOOTER */
    .footer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px;
    }

    .footer-cont {
        height: 100%;
        width: 400px;
    }

    .footer-middle>a>img {
        height: 100px;
        width: 100px;
    }

    .footer-middle>a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .footer-right>a {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .footer-right>a:hover {
        opacity: 1;
        transform: scale(1.1);
        background-color: rgba(139, 47, 168, 0.1);
    }
}


@media screen and (max-width:800px) {
    :root {
        --pink-color: #8B2FA8;
        --violet-color: #D3B9E8;
        --top-pd: 150px;
        --title: 20px;
        --text: 16px;
        --section-title: 32px;
        --section-title-weight: 700;
    }

    .header {
        height: 100%;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        height: 120px;
        width: 120px;
        margin-left: 20px;
    }

    .menu {
        display: none;
        justify-content: space-evenly;
        align-items: center;
        width: 80%;
        height: 100%;
        font-size: 14px;
    }

    #menu-button>img {
        display: block;
        height: 35px;
        width: 35px;
        cursor: pointer;
    }

    #menu-button {
        padding-right: 50px;
    }

    .menu-phones {
        display: none;
        align-items: center;
        flex-direction: column;
        position: fixed;
        top: 150px;
        /* below fixed header so burger stays clickable */
        height: calc(100vh - 150px);
        width: 100%;
        background-color: #000000b6;
        left: 0;
        right: 0;
        opacity: 0;
        transition: 0.3s ease-in-out;
        z-index: 998;
        padding-top: 40px;
        gap: 15px;
        overflow-y: auto;
    }

    .menu-link-phone {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 15px 0;
        font-size: 28px;
        transition: 0.3s ease-in-out;
        color: white;
    }

    .menu-link-phone:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--pink-color);
    }

    .menu-link-phone-form {
        background-color: var(--pink-color);
        color: white;
        font-weight: 700;
        border-radius: 60px;
        padding: 15px 30px;
        width: auto;
        min-width: 250px;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .menu-link-phone-form:hover {
        background-color: #7A2A95;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 47, 168, 0.3);
        color: white;
    }

    /* HERO SECTION */
    #hero {
        width: 100%;
        min-height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 200px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .hero-texts {
        width: 60%;
        margin: auto;
        text-align: center;
    }

    .hero-text {
        font-size: 24px;
    }

    .hero-description {
        font-size: 0.9em;
        display: block;
        margin-top: 10px;
    }

    #hero-name {
        color: var(--pink-color);
        font-weight: 700;
        font-size: 1.15em;
        display: block;
        margin: 15px 0;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .hero-button {
        width: 350px;
        height: 45px;
        border-radius: 40px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        margin-top: 45px;
        background-color: var(--pink-color);
        color: white;
        font-weight: 600;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
        transition: all 0.3s ease-in-out;
    }

    .hero-button>img {
        height: 20px;
        width: 20px;
        filter: brightness(0) invert(1);
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
        background-color: #7A2A95;
        color: white;
    }

    .hero>img {
        height: 400px;
        width: 370px;
    }

    /* History section */
    #history {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .history {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    .history-image {
        width: 480px;
        height: 1100px;
        margin: auto;
    }

    .history-texts {
        width: 90%;
        text-align: center;
    }

    .history-title>h2 {
        font-size: 35px;
        font-weight: var(--section-title-weight);
        color: var(--pink-color);
        line-height: 40px;
        margin-bottom: 30px;
        font-family: 'Roboto Serif', serif;
    }


    .history-title>p {
        font-size: 22px;
        color: var(--pink-color);
        font-family: 'Roboto Serif', serif;
    }

    .history-context {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .history-context>article {
        text-align: center;
        font-size: 20px;
        width: fit-content;
        line-height: 35px;
    }

    .history-content-wrapper {
        display: flex;
        flex-direction: column;
        margin-top: 32px;
    }

    .history-content-wrapper::after {
        display: none;
    }

    .history-image-left {
        order: 2;
        float: none;
        width: 100%;
        max-width: 420px;
        max-height: none;
        margin: 48px auto 0;
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
        display: block;
    }

    .history-text-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .history-end-text {
        margin-top: 50px;
        text-align: center;
    }

    .history-cta {
        font-size: 17px;
        text-align: center;
    }

    .history-title>h3 {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }

    .history-quote-large {
        padding: 25px;
        margin: 30px 0;
        text-align: center;
    }

    .history-quote-large p {
        font-size: 18px;
        line-height: 1.5;
    }

    .history-quote-large::before {
        font-size: 60px;
        right: 10px;
        top: -20px;
    }

    .history-cta-bold {
        font-size: 24px;
        margin-top: 18px;
    }

    .history-end-text>p {
        padding-left: 0;
        padding-right: 0;
    }

    /* GAMECHANGERS */
    #gamechangers {
        padding: 60px 25px;
        background: #ffffff;
    }

    .gamechangers {
        width: 90%;
        padding-top: 0;
        padding-bottom: 0;
        gap: 40px;
    }

    .gamechangers-title>h3 {
        font-size: 36px;
        letter-spacing: -0.8px;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        color: #1a1a1a;
    }

    .gamechangers-title>h3::after {
        display: none;
    }

    .gc-title-phone {
        display: inline;
        font-size: 36px;
        color: #1a1a1a;
        text-shadow: none;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        letter-spacing: -0.8px;
        margin-bottom: 0;
    }

    .gamechangers-title>h3:nth-child(2) {
        display: none;
    }

    .gamechangers-context {
        font-size: 17px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gc-image {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        order: -1;
    }

    .gamechangers-context>article>p {
        margin-bottom: 22px;
        font-size: 16px;
        color: #333333;
    }

    /* WORK SECTION */

    #work {
        width: 100%;
        min-height: 65vh;
        padding: 35px 20px;
        display: flex;
        justify-content: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
        word-wrap: break-word;
        /* Ensure long words break */
    }

    .work {
        height: fit-content;
        width: 90%;
        padding-top: 50px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 35px;
    }

    .work-title>h3 {
        font-size: 42px;
    }

    .work-text {
        width: 98%;
        font-size: 17px;
        padding: 0 10px;
        line-height: 30px;
    }

    .work-text>article {
        padding: 28px 30px;
    }

    .work-text>article>p {
        margin-top: 20px;
    }

    .work-features {
        gap: 16px;
        margin-top: 35px;
    }

    .work-feature-card {
        padding: 26px 30px;
        border-radius: 14px;
    }

    .work-feature-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .work-feature-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .work>img {
        width: 100%;
    }

    /* QUOTE SECTION */
    #quote {
        padding: 45px 25px;
        background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    }

    .quote {
        width: 100%;
        max-width: 100%;
        padding: 40px 30px;
        gap: 25px;
        flex-direction: row;
    }

    .quote>img {
        width: 40px;
        height: 40px;
    }

    .quote>p {
        font-size: 28px;
        line-height: 1.4;
    }

    /* OPINIONS VIDEOS SECTION */

    #opinions-videos {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        box-shadow: none;

    }

    .opinions-videos {
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 1;
        flex-wrap: wrap;
        gap: 100px;
    }

    .opinions-videos-title {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        width: 500px;
        background-color: var(--pink-color);
        font-size: 40px;
        font-family: 'Roboto Serif', serif;
        font-weight: 700;
        padding: 50px;
    }

    .opinions-videos {
        width: 100%;
        height: 100%;
    }


    .opinions-image {
        width: 460px;
    }



    /* MORE TEXT SECTION */
    #more-text {
        width: 100%;
        min-height: 15vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: none;
        background-color: var(--pink-color);
    }

    #more-text>blockquote {
        font-size: 50px;
        font-family: 'Roboto Serif', serif;
        font-weight: 600;
    }

    /* VIDEOS */
    /* TIMELINE SECCTION */
    #design-section {
        padding: 60px 25px;
        background: #ffffff;
    }

    .timeline-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .checkpoint {
        width: 100%;
        margin-bottom: 25px;
    }

    .checkpoint-item {
        max-width: 100%;
        padding: 30px;
        min-height: 180px;
    }

    .checkpoint-item>p {
        font-size: 16px;
    }

    .checkpoint-item>img {
        width: 50px;
        height: 50px;
    }


    .desgin-section-text {
        width: 100%;
        margin-top: 40px;
        font-size: 17px;
    }

    .desgin-section-button {
        width: 100%;
        max-width: 100%;
        height: 60px;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        transition: 0.3s ease-in-out;
    }

    .desgin-section-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    }

    .desgin-section-button>img {
        height: 20px;
        width: 20px;
    }

    /* FOOTER */
    .footer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-cont {
        height: 100%;
        width: 400px;
    }

    .footer-left {
        display: none;
    }

    .footer-middle>a>img {
        height: 100px;
        width: 100px;
    }

    .footer-middle>a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .footer-right>a {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .footer-right>a:hover {
        opacity: 1;
        transform: scale(1.1);
        background-color: rgba(139, 47, 168, 0.1);
    }
}

@media screen and (max-width:600px) {
    :root {
        --pink-color: #8B2FA8;
        --violet-color: #D3B9E8;
        --top-pd: 150px;
        --title: 20px;
        --text: 16px;
        --section-title: 32px;
        --section-title-weight: 700;
    }

    .history-main-title {
        font-size: 32px;
    }

    .history-subtitle {
        font-size: 24px;
    }

    .header {
        height: 100%;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        height: 90px;
        width: 90px;
        margin-left: 20px;
    }

    .menu {
        display: none;
        justify-content: space-evenly;
        align-items: center;
        width: 80%;
        height: 100%;
        font-size: 14px;
    }

    #menu-button>img {
        display: block;
        height: 35px;
        width: 35px;
        cursor: pointer;
    }

    #menu-button {
        padding-right: 30px;
    }

    .menu-phones {
        display: none;
        align-items: center;
        flex-direction: column;
        position: fixed;
        top: 150px;
        /* below fixed header so burger stays clickable */
        height: calc(100vh - 150px);
        width: 100%;
        background-color: #000000b6;
        left: 0;
        right: 0;
        opacity: 0;
        transition: 0.3s ease-in-out;
        z-index: 998;
        padding-top: 40px;
        gap: 12px;
        overflow-y: auto;
    }

    .menu-link-phone {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 12px 0;
        font-size: 24px;
        transition: 0.3s ease-in-out;
        color: white;
    }

    .menu-link-phone:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--pink-color);
    }

    .menu-link-phone-form {
        background-color: var(--pink-color);
        color: white;
        font-weight: 700;
        border-radius: 60px;
        padding: 12px 25px;
        width: auto;
        min-width: 220px;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .menu-link-phone-form:hover {
        background-color: #7A2A95;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 47, 168, 0.3);
        color: white;
    }

    /* HERO SECTION */
    #hero {
        width: 100%;
        min-height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 200px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .hero-texts {
        width: 80%;
        margin: auto;
        text-align: center;
    }

    .hero-text {
        font-size: 23px;
    }

    .hero-description {
        font-size: 0.9em;
        display: block;
        margin-top: 10px;
    }

    #hero-name {
        color: var(--pink-color);
        font-weight: 700;
        font-size: 1.1em;
        display: block;
        margin: 12px 0;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .hero-button {
        width: 80%;
        height: 45px;
        border-radius: 40px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        margin-top: 40px;
        background-color: var(--pink-color);
        color: white;
        font-weight: 600;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
        transition: all 0.3s ease-in-out;
    }

    .hero-button>img {
        height: 18px;
        width: 18px;
        filter: brightness(0) invert(1);
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
        background-color: #7A2A95;
        color: white;
    }

    .hero>img {
        height: 80%;
        width: 80%;
    }

    /* History section */
    #history {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .history {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 120px;
        padding-bottom: 100px;
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    .history-image {
        width: 100%;
        height: 100%;
    }

    .history-texts {
        width: 96%;
        text-align: left;
        line-height: 28px;
    }

    .history-content-wrapper {
        display: flex;
        flex-direction: column;
        margin-top: 32px;
    }

    .history-content-wrapper::after {
        display: none;
    }

    .history-image-left {
        order: 2;
        float: none;
        width: 100%;
        max-width: 420px;
        max-height: none;
        margin: 48px auto 0;
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
        display: block;
    }

    .history-text-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .history-title>h2 {
        font-size: 45px;
        font-weight: var(--section-title-weight);
        color: var(--pink-color);
        line-height: 45px;
        margin-bottom: 30px;
        font-family: 'Roboto Serif', serif;
    }

    .history-title>p {
        font-size: 25px;
        color: var(--pink-color);
        font-family: 'Roboto Serif', serif;
    }

    .history-context {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .history-context>article {
        text-align: justify;
        font-size: 20px;
        width: 100%;
        line-height: 35px;
    }

    .history-end-text {
        margin-top: 50px;
        text-align: left;
    }

    .history-cta {
        font-size: 16px;
        text-align: left;
        line-height: 1.8;
    }

    .history-title>h3 {
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
    }

    .history-quote-large {
        padding: 20px;
        margin: 25px 0;
        text-align: center;
    }

    .history-quote-large p {
        font-size: 16px;
    }

    .history-quote-large::before {
        font-size: 50px;
        right: 5px;
        top: -15px;
    }

    .history-cta-bold {
        font-size: 22px;
        margin-top: 16px;
    }

    .history-end-text>p {
        padding-left: 0;
        padding-right: 0;
    }

    /* GAMECHANGERS */
    #gamechangers {
        padding: 50px 20px;
        background: #ffffff;
    }

    .gamechangers {
        width: 90%;
        padding-top: 0;
        padding-bottom: 0;
        gap: 35px;
    }

    .gamechangers-title>h3 {
        font-size: 30px;
        letter-spacing: -0.8px;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        color: #1a1a1a;
    }

    .gamechangers-title>h3::after {
        display: none;
    }

    .gc-title-phone {
        font-size: 30px;
        color: #1a1a1a;
        text-shadow: none;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        letter-spacing: -0.8px;
        margin-bottom: 0;
    }

    .gamechangers-title>h3:nth-child(2) {
        display: none;
    }

    .gamechangers-context {
        font-size: 16px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gc-image {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        order: -1;
    }

    .gamechangers-context>article>p {
        margin-bottom: 20px;
        font-size: 15px;
        text-align: left;
        line-height: 1.75;
        color: #333333;
    }

    /* WORK SECTION */

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
        word-wrap: break-word;
        padding: 0 10px;
        /* Add some padding to prevent edge touching */
    }

    #work {
        width: 100%;
        min-height: 35vh;
        display: flex;
        justify-content: center;
        padding: 30px 15px;
        padding-top: 100px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .work {
        height: fit-content;
        width: 95%;
        padding-top: 40px;
        padding-bottom: 50px;
        text-align: left;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .work-title>h3 {
        font-size: 38px;
    }

    .work-text {
        width: 100%;
        font-size: 16px;
        line-height: 28px;
    }

    .work-text>article {
        padding: 25px 28px;
    }

    .work-features {
        gap: 14px;
        margin-top: 30px;
    }

    .work-feature-card {
        padding: 24px 26px;
        border-radius: 12px;
    }

    .work-feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .work-feature-text {
        font-size: 13px;
        line-height: 1.65;
    }

    .work>img {
        width: 90%;
    }

    /* QUOTE SECTION */
    #quote {
        padding: 40px 20px;
        background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    }

    .quote {
        width: 100%;
        max-width: 100%;
        padding: 35px 25px;
        gap: 20px;
        flex-direction: row;
    }

    .quote>img {
        width: 35px;
        height: 35px;
    }

    .quote>p {
        font-size: 24px;
        line-height: 1.4;
    }

    /* OPINIONS VIDEOS SECTION */

    #opinions-videos {
        width: 100%;
        min-height: 50vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        box-shadow: none;

    }

    .opinions-videos {
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 1;
        flex-wrap: wrap;
        gap: 100px;
    }

    .opinions-videos-title {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        width: 300px;
        background-color: var(--pink-color);
        font-size: 30px;
        font-family: 'Roboto Serif', serif;
        font-weight: 700;
        padding: 50px;
    }

    .opinions-videos {
        width: 100%;
        height: 100%;
    }

    .opinions-videos>iframe {
        height: 300px;
        width: 800px;
    }

    .opinions-image {
        width: 480px;
    }


    /* MORE TEXT SECTION */
    #more-text {
        width: 100%;
        min-height: 15vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: none;
        text-align: center;
        background-color: var(--pink-color);
    }

    #more-text>blockquote {
        font-size: 40px;
        font-family: 'Roboto Serif', serif;
        font-weight: 600;
    }

    /* VIDEOS */
    /* TIMELINE SECCTION */
    #design-section {
        padding: 60px 25px;
        background: #ffffff;
    }

    .timeline-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .checkpoint {
        height: 200px;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 130px;
        margin: 30px;
    }






    .desgin-section-text {
        width: 100%;
        margin-top: 35px;
        font-size: 16px;
    }

    .desgin-section-button {
        width: 100%;
        max-width: 100%;
        height: 55px;
        font-size: 15px;
        font-weight: 500;
        line-height: normal;
        transition: 0.3s ease-in-out;
    }

    .desgin-section-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    }

    .desgin-section-button>img {
        height: 20px;
        width: 20px;
    }

    /* FOOTER */
    .footer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-cont {
        height: 100%;
        width: 400px;
    }

    .footer-left {
        display: none;
    }

    .footer-middle>a>img {
        height: 100px;
        width: 100px;
    }

    .footer-middle {
        display: none;
    }

    .footer-middle>a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .footer-right>a {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .footer-right>a:hover {
        opacity: 1;
        transform: scale(1.1);
        background-color: rgba(139, 47, 168, 0.1);
    }
}

/* =========================================================
   Global fixes (mobile + consistency)
   ========================================================= */

/* Opinions â€“ enforce modern title on small screens (removes old "pink box" header styles) */
@media screen and (max-width: 1000px) {
    #opinions-videos {
        padding: 80px 20px !important;
        min-height: auto !important;
    }

    .opinions-videos {
        width: 100% !important;
        max-width: 1200px !important;
        gap: 0 !important;
    }

    .opinions-videos-title {
        display: block !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #1a1a1a !important;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 800 !important;
        letter-spacing: -1px !important;
        text-align: center !important;
        line-height: 1.15 !important;
        font-size: clamp(28px, 6vw, 48px) !important;
    }

    .opinions-image {
        display: block !important;
        width: 100% !important;
        max-width: 1000px !important;
        height: auto !important;
    }
}

/* CTA at bottom â€“ always white, bold, padded */
.desgin-section-button,
.desgin-section-button:visited {
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px;
    height: auto !important;
    min-height: 64px;
    padding: 16px 26px !important;
    background: linear-gradient(135deg, var(--pink-color) 0%, #7A2A95 100%) !important;
    border: none !important;
    box-shadow: 0 8px 26px rgba(139, 47, 168, 0.25) !important;
}

.desgin-section-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 47, 168, 0.32) !important;
}

.desgin-section-button:focus-visible {
    outline: 3px solid rgba(139, 47, 168, 0.35);
    outline-offset: 4px;
}

@media screen and (max-width: 600px) {
    .desgin-section-button {
        min-height: 56px;
        padding: 14px 18px !important;
        font-size: 16px !important;
    }
}

@media screen and (max-width:480px) {
    :root {
        --pink-color: #8B2FA8;
        --violet-color: #D3B9E8;
        --top-pd: 150px;
        --title: 20px;
        --text: 16px;
        --section-title: 32px;
        --section-title-weight: 700;
    }

    .header {
        height: 100%;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        height: 90px;
        width: 90px;
        margin-left: 20px;
    }

    .menu {
        display: none;
        justify-content: space-evenly;
        align-items: center;
        width: 80%;
        height: 100%;
        font-size: 14px;
    }

    #menu-button>img {
        display: block;
        height: 35px;
        width: 35px;
        cursor: pointer;
    }

    #menu-button {
        padding-right: 30px;
    }

    .menu-phones {
        display: none;
        align-items: center;
        flex-direction: column;
        position: fixed;
        top: 150px;
        /* below fixed header so burger stays clickable */
        height: calc(100vh - 150px);
        width: 100%;
        background-color: #000000b6;
        left: 0;
        right: 0;
        opacity: 0;
        transition: 0.3s ease-in-out;
        z-index: 998;
        padding-top: 30px;
        gap: 10px;
        overflow-y: auto;
    }

    .menu-link-phone {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 12px 0;
        font-size: 20px;
        transition: 0.3s ease-in-out;
        color: white;
    }

    .menu-link-phone:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--pink-color);
    }

    .menu-link-phone-form {
        background-color: var(--pink-color);
        color: white;
        font-weight: 700;
        border-radius: 60px;
        padding: 12px 20px;
        width: auto;
        min-width: 200px;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .menu-link-phone-form:hover {
        background-color: #7A2A95;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 47, 168, 0.3);
        color: white;
    }

    /* HERO SECTION */
    #hero {
        width: 100%;
        min-height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 200px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .hero-texts {
        width: 80%;
        margin: auto;
        text-align: center;
    }

    .hero-text {
        font-size: var(--title);
    }

    .hero-description {
        font-size: 0.9em;
        display: block;
        margin-top: 10px;
    }

    #hero-name {
        color: var(--pink-color);
        font-weight: 700;
        font-size: 1.1em;
        display: block;
        margin: 12px 0;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .hero-button {
        width: 80%;
        height: 45px;
        border-radius: 40px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        margin-top: 40px;
        background-color: var(--pink-color);
        color: white;
        font-weight: 600;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 47, 168, 0.3);
        transition: all 0.3s ease-in-out;
    }

    .hero-button>img {
        height: 18px;
        width: 18px;
        filter: brightness(0) invert(1);
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
        background-color: #7A2A95;
        color: white;
    }

    .hero>img {
        height: 80%;
        width: 80%;
    }

    /* History section */
    #history {
        width: 100%;
        min-height: 70vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .history {
        height: fit-content;
        width: 100%;
        max-width: 800px;
        padding-top: 120px;
        padding-bottom: 100px;
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    .history-image {
        width: 100%;
        height: 100%;
    }

    .history-texts {
        width: 96%;
        text-align: left;
        line-height: 28px;
    }

    .history-content-wrapper {
        display: flex;
        flex-direction: column;
        margin-top: 32px;
    }

    .history-content-wrapper::after {
        display: none;
    }

    .history-image-left {
        order: 2;
        float: none;
        width: 100%;
        max-width: 420px;
        max-height: none;
        margin: 48px auto 0;
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
    }

    .history-text-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .history-title>h2 {
        font-size: var(--section-title);
        font-weight: var(--section-title-weight);
        color: var(--pink-color);
        line-height: 35px;
        margin-bottom: 30px;
        font-family: 'Roboto Serif', serif;
    }

    .history-title>p {
        font-size: 18px;
        color: var(--pink-color);
        font-family: 'Roboto Serif', serif;
    }

    .history-context {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .history-context>article {
        text-align: justify;
        font-size: 16px;
        width: 100%;
        line-height: 32px;
    }

    .history-end-text {
        margin-top: 40px;
        text-align: left;
    }

    .history-cta {
        font-size: 15px;
        text-align: left;
        line-height: 1.7;
    }

    .history-cta-bold {
        font-size: 20px;
        margin-top: 14px;
    }

    .history-end-text>p {
        padding-left: 0;
        padding-right: 0;
    }

    /* GAMECHANGERS */
    #gamechangers {
        padding: 45px 15px;
        background: #ffffff;
    }

    .gamechangers {
        width: 90%;
        padding-top: 0;
        padding-bottom: 0;
        gap: 30px;
    }

    .gamechangers-title>h3 {
        font-size: 26px;
        letter-spacing: -0.8px;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        color: #1a1a1a;
    }

    .gamechangers-title>h3::after {
        display: none;
    }

    .gc-title-phone {
        font-size: 26px;
        color: #1a1a1a;
        text-shadow: none;
        font-family: 'Roboto', sans-serif;
        font-weight: 800;
        letter-spacing: -0.8px;
        margin-bottom: 0;
    }

    .gamechangers-title>h3:nth-child(2) {
        display: none;
    }

    .gamechangers-context {
        font-size: 15px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gc-image {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        order: -1;
    }

    .gamechangers-context>article>p {
        margin-bottom: 18px;
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
        color: #333333;
    }

    /* WORK SECTION */

    #work {
        width: 100%;
        min-height: 35vh;
        display: flex;
        justify-content: center;
        padding: 25px 12px;
        padding-top: 90px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(139, 47, 168, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    }

    .work {
        height: fit-content;
        width: 95%;
        padding-top: 35px;
        padding-bottom: 45px;
        text-align: left;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 25px;
    }

    .work-title>h3 {
        font-size: 32px;
    }

    .work-text {
        width: 100%;
        font-size: 15px;
        line-height: 26px;
    }

    .work-text>article {
        padding: 22px 24px;
    }

    .work-features {
        gap: 12px;
        margin-top: 28px;
    }

    .work-feature-card {
        padding: 22px 24px;
        border-radius: 10px;
    }

    .work-feature-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .work-feature-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .work>img {
        width: 90%;
    }

    /* QUOTE SECTION */
    #quote {
        padding: 35px 15px;
        background: linear-gradient(135deg, rgba(139, 47, 168, 0.05) 0%, rgba(139, 47, 168, 0.02) 100%);
    }

    .quote {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        gap: 18px;
        flex-direction: row;
    }

    .quote>img {
        width: 30px;
        height: 30px;
    }

    .quote>p {
        font-size: 20px;
        line-height: 1.35;
    }

    .quote>p>span.bolder {
        font-size: 1.05em;
    }

    /* OPINIONS VIDEOS SECTION */

    #opinions-videos {
        width: 100%;
        min-height: 30vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        box-shadow: none;

    }

    .opinions-videos {
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 1;
        flex-wrap: wrap;
        gap: 100px;
    }

    .opinions-videos-title {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        width: 300px;
        background-color: var(--pink-color);
        font-size: 30px;
        font-family: 'Roboto Serif', serif;
        font-weight: 700;
        padding: 50px;
    }

    .opinions-videos {
        width: 100%;
        height: 100%;
    }

    .opinions-videos>iframe {
        height: 200px;
        width: 800px;
    }

    .opinions-image {
        display: none;
    }

    /* MORE TEXT SECTION */
    #more-text {
        width: 100%;
        min-height: 15vh;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: none;
        text-align: center;
        background-color: var(--pink-color);
    }

    #more-text>blockquote {
        font-size: 40px;
        font-family: 'Roboto Serif', serif;
        font-weight: 600;
    }

    /* VIDEOS */
    /* TIMELINE SECCTION */
    #design-section {
        padding: 60px 25px;
        background: #ffffff;
    }

    .timeline-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .checkpoint {
        height: 200px;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 130px;
        margin: 30px;
    }




    .desgin-section-text {
        width: 100%;
        margin-top: 30px;
        font-size: 15px;
    }

    .desgin-section-button {
        width: 100%;
        max-width: 100%;
        height: 50px;
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        transition: 0.3s ease-in-out;
    }

    .desgin-section-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 47, 168, 0.4);
    }

    .desgin-section-button>img {
        height: 20px;
        width: 20px;
    }

    /* FOOTER */
    .footer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-cont {
        height: 100%;
        width: 400px;
    }

    .footer-left {
        display: none;
    }

    .footer-middle>a>img {
        height: 100px;
        width: 100px;
    }

    .footer-middle {
        display: none;
    }

    .footer-middle>a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .footer-right>a {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .footer-right>a:hover {
        background-color: transparent
    }
}

/* History section compact tuning */
#history {
    padding: 12px;
}

.history {
    max-width: 980px;
    padding: 92px 12px 36px;
}

.history-hero-title {
    margin-bottom: 20px;
}

.history-main-title {
    font-size: clamp(1.35rem, 2.9vw, 2rem);
    line-height: 1.12;
    margin-bottom: 8px;
}

.history-main-title .highlight {
    margin-top: 2px;
}

.history-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    line-height: 1.2;
}

.history-title {
    margin-bottom: 14px;
}

.history-label {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.history-title>h3 {
    font-size: clamp(1.02rem, 2.2vw, 1.5rem);
}

.history-intro {
    margin-bottom: 12px;
}

.history-intro-text {
    font-size: clamp(0.86rem, 1.3vw, 0.98rem);
    line-height: 1.4;
}

.history-content-wrapper {
    margin-top: 12px;
}

.history-image-left {
    width: 230px;
    margin-left: 0;
    margin-right: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.history-paragraph {
    font-size: clamp(0.84rem, 1.15vw, 0.95rem);
    margin-bottom: 10px;
    line-height: 1.45;
}

.history-quote {
    margin: 14px 0;
    padding: 8px 12px;
}

.history-quote p {
    font-size: clamp(0.9rem, 1.35vw, 1.02rem);
}

.history-highlight-box {
    margin: 14px 0;
    padding: 10px 12px;
    border-radius: 8px;
}

.history-highlight-text {
    font-size: clamp(0.9rem, 1.4vw, 1.04rem);
    line-height: 1.4;
}

.history-quote-large {
    margin: 14px 0;
    padding: 10px 12px;
}

.history-quote-large p {
    font-size: clamp(0.92rem, 1.45vw, 1.08rem);
    line-height: 1.4;
}

.history-list {
    margin: 10px 0;
    gap: 6px;
}

.history-list li {
    font-size: clamp(0.86rem, 1.2vw, 0.98rem);
    padding-right: 14px;
    line-height: 1.4;
}

.history-end-text {
    margin-top: 14px;
    padding: 10px 8px;
}

.history-cta {
    font-size: clamp(0.94rem, 1.45vw, 1.08rem);
    line-height: 1.4;
}

.history-cta-bold {
    font-size: clamp(0.98rem, 1.55vw, 1.14rem);
}

/* Work section cleanup after intro removal */
#work {
    padding: 36px 20px;
}

.work {
    max-width: 1180px;
    padding-top: 52px;
    padding-bottom: 64px;
    gap: 28px;
}

.work-title {
    margin-bottom: 12px;
}

.work-title>h3 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: -0.8px;
}

.work-title>h3::after {
    bottom: -9px;
    width: 84px;
    height: 3px;
}

.work-text {
    width: 100%;
    max-width: 1120px;
    margin-bottom: 12px;
    font-size: 16px;
}

.work-features {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.work-feature-card {
    padding: 24px 22px;
    border-radius: 12px;
}

.work-feature-title {
    font-size: clamp(1rem, 1.7vw, 1.3rem);
    margin-bottom: 10px;
    line-height: 1.3;
}

.work-feature-text {
    font-size: clamp(0.86rem, 1.25vw, 0.98rem);
    line-height: 1.5;
}

.work-feature-card-be {
    justify-content: center;
    align-items: center;
    padding: 14px;
    min-height: 220px;
}

.work-feature-be-image {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    cursor: zoom-in;
}

@media screen and (max-width: 900px) {
    .work-features {
        grid-template-columns: 1fr;
    }

    .work {
        padding-top: 44px;
        padding-bottom: 50px;
    }

    .work-feature-card-be {
        min-height: 180px;
        padding: 10px;
    }

    .work-feature-be-image {
        max-height: 220px;
        border-radius: 8px;
    }

    .work-feature-card {
        transition: none;
    }

    .work-feature-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-color: rgba(139, 47, 168, 0.15);
    }

    .work-feature-card:hover::before,
    .work-feature-card:hover::after {
        opacity: 0;
    }

    .work-feature-card:hover .work-feature-title {
        color: var(--pink-color);
    }
}

/* FAQ section visual refresh */
#faq {
    padding: 72px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fcf8ff 100%);
}

.faq-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.faq-title {
    font-size: clamp(1.5rem, 3.6vw, 2.6rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.4px;
}

.faq-list {
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(139, 47, 168, 0.14);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(20, 14, 28, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 47, 168, 0.28);
    box-shadow: 0 12px 28px rgba(139, 47, 168, 0.16);
}

.faq-item.active {
    border-color: rgba(139, 47, 168, 0.38);
    box-shadow: 0 14px 30px rgba(139, 47, 168, 0.18);
}

.faq-question {
    padding: 20px 22px;
    font-size: clamp(0.98rem, 1.55vw, 1.15rem);
    line-height: 1.45;
    font-weight: 600;
    color: #1f1b24;
}

.faq-question:hover {
    color: #6f2188;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    color: #6f2188;
    background: rgba(139, 47, 168, 0.12);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg) scale(1.02);
    background: rgba(139, 47, 168, 0.18);
}

.faq-answer {
    padding: 0 22px;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease,
        transform 0.45s ease;
}

.faq-item.active .faq-answer {
    padding: 0 22px 18px 22px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    line-height: 1.65;
    color: #4a4550;
}

@media screen and (max-width: 768px) {
    #faq {
        padding: 54px 14px;
    }

    .faq-title {
        margin-bottom: 22px;
    }

    .faq-question {
        padding: 16px 14px;
        gap: 12px;
    }

    .faq-answer {
        padding: 0 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 14px 14px 14px;
    }
}

/* Design section 2x2 layout + visual polish */
#design-section {
    padding: 74px 20px;
    background:
        radial-gradient(circle at 14% 20%, rgba(139, 47, 168, 0.08) 0%, transparent 36%),
        radial-gradient(circle at 85% 82%, rgba(139, 47, 168, 0.08) 0%, transparent 34%),
        #ffffff;
}

.timeline-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.checkpoints-grid {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 18px;
}

#design-section .checkpoint {
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100%;
}

#design-section .checkpoint-item {
    max-width: none;
    min-height: 168px;
    height: 100%;
    padding: 22px 18px;
    border-radius: 14px;
    border: 1px solid rgba(139, 47, 168, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #faf4ff 100%);
    box-shadow: 0 8px 20px rgba(139, 47, 168, 0.1);
    animation: checkpointFlow 6.4s ease-in-out infinite;
}

#design-section .checkpoint-item:hover {
    transform: none;
    border-color: rgba(139, 47, 168, 0.2);
    box-shadow: 0 8px 20px rgba(139, 47, 168, 0.1);
}

#design-section .checkpoint:nth-child(1) .checkpoint-item {
    animation-delay: 0s;
}

#design-section .checkpoint:nth-child(2) .checkpoint-item {
    animation-delay: 1.6s;
}

#design-section .checkpoint:nth-child(3) .checkpoint-item {
    animation-delay: 3.2s;
}

#design-section .checkpoint:nth-child(4) .checkpoint-item {
    animation-delay: 4.8s;
}

@keyframes checkpointFlow {
    0%,
    85%,
    100% {
        border-color: rgba(139, 47, 168, 0.2);
        box-shadow: 0 8px 20px rgba(139, 47, 168, 0.1);
        filter: saturate(1);
    }

    40% {
        border-color: rgba(139, 47, 168, 0.38);
        box-shadow: 0 14px 28px rgba(139, 47, 168, 0.2);
        filter: saturate(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    #design-section .checkpoint-item {
        animation: none;
    }

    .desgin-section-button {
        animation: none;
    }
}

#design-section .checkpoint-item>img {
    width: 52px;
    height: 52px;
}

#design-section .checkpoint-item>p {
    margin-top: 12px;
    font-size: clamp(0.95rem, 1.4vw, 1.12rem);
    line-height: 1.4;
}

.desgin-section-text {
    max-width: 740px;
    margin-top: 34px;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    color: #4d4658;
}

.desgin-section-button {
    width: 100%;
    max-width: 390px;
    height: 66px;
    margin-top: 30px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #a43ac3 0%, #7A2A95 55%, #5e1f74 100%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 24px rgba(122, 42, 149, 0.35), 0 0 0 0 rgba(164, 58, 195, 0.5);
    backdrop-filter: blur(3px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    animation: designCtaPulse 1.25s ease-in-out infinite;
}

.desgin-section-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(122, 42, 149, 0.42), 0 0 0 10px rgba(164, 58, 195, 0.06);
    filter: saturate(1.08);
}

.desgin-section-button>img {
    height: 22px;
    width: 22px;
    filter: brightness(0) invert(1);
}

@keyframes designCtaPulse {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(122, 42, 149, 0.4), 0 0 0 0 rgba(164, 58, 195, 0.62);
    }

    50% {
        box-shadow: 0 18px 36px rgba(122, 42, 149, 0.62), 0 0 0 22px rgba(164, 58, 195, 0.2);
    }
}

@media screen and (max-width: 760px) {
    .checkpoints-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    #design-section {
        padding: 56px 14px;
    }

    #design-section .checkpoint-item {
        min-height: 144px;
        height: 100%;
    }

    .desgin-section-text {
        margin-top: 22px;
    }
}

/* Opinions images refresh */
.opinions-gallery-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.opinions-gallery {
    width: 100%;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 8px;
    align-items: start;
    justify-content: start;
}

.opinions-photo {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(139, 47, 168, 0.18);
    box-shadow: 0 12px 28px rgba(139, 47, 168, 0.14);
    background: #fff;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opinions-nav {
    display: none;
}

.opinions-photo:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(139, 47, 168, 0.2);
}

body.opinions-lightbox-open {
    overflow: hidden;
}

.opinions-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px;
    background: rgba(13, 10, 18, 0.82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.opinions-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.opinions-lightbox-image {
    width: min(92vw, 760px);
    max-height: 88vh;
    border-radius: 16px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.opinions-lightbox-close {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #3f2b4b;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media screen and (max-width: 760px) {
    .opinions-gallery-wrapper {
        max-width: 100%;
        padding: 0 42px;
        overflow: hidden;
    }

    .opinions-gallery {
        max-width: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        overflow: hidden;
        touch-action: none;
        align-items: stretch;
        justify-content: flex-start;
        will-change: transform;
    }

    .opinions-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        border-radius: 14px;
    }

    .opinions-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border: 1px solid rgba(139, 47, 168, 0.28);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        color: #7A2A95;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
        box-shadow: 0 6px 14px rgba(139, 47, 168, 0.18);
    }

    .opinions-nav-prev {
        left: 4px;
    }

    .opinions-nav-next {
        right: 4px;
    }

    .opinions-lightbox-image {
        width: min(94vw, 420px);
        border-radius: 12px;
    }
}

/* Opinions carousel (clean rebuild) */
#opinions-videos .opinions-gallery-wrapper {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
}

#opinions-videos .opinions-viewport {
    width: 100%;
    overflow: hidden;
}

#opinions-videos .opinions-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
}

#opinions-videos .opinions-videos-title {
    font-size: clamp(1.5rem, 3.6vw, 2.6rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

#opinions-videos .opinions-photo {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    display: block;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(139, 47, 168, 0.18);
    box-shadow: 0 10px 24px rgba(139, 47, 168, 0.14);
    cursor: zoom-in;
    background: #ffffff;
}

#opinions-videos .opinions-nav {
    display: none;
}

#opinions-videos .opinions-dots {
    display: none;
}

@media screen and (max-width: 760px) {
    #opinions-videos .opinions-videos-title {
        white-space: normal;
    }

    #opinions-videos .opinions-gallery-wrapper {
        max-width: 340px;
        padding: 0 36px;
    }

    #opinions-videos .opinions-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
        will-change: transform;
    }

    #opinions-videos .opinions-photo {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }

    #opinions-videos .opinions-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border: 1px solid rgba(139, 47, 168, 0.3);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        color: #7A2A95;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 6px 14px rgba(139, 47, 168, 0.2);
    }

    #opinions-videos .opinions-nav-prev {
        left: 2px;
    }

    #opinions-videos .opinions-nav-next {
        right: 2px;
    }

    #opinions-videos .opinions-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
    }

    #opinions-videos .opinions-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: rgba(122, 42, 149, 0.28);
        padding: 0;
        cursor: pointer;
    }

    #opinions-videos .opinions-dot.is-active {
        width: 20px;
        border-radius: 999px;
        background: rgba(122, 42, 149, 0.88);
    }
}

@media screen and (max-width: 900px) {
    #opinions-videos .opinions-videos-title {
        white-space: normal;
    }
}

/* History section: force centered content */
#history .history-texts,
#history .history-text-content,
#history .history-hero-title,
#history .history-title,
#history .history-intro,
#history .history-paragraph,
#history .history-quote,
#history .history-quote p,
#history .history-highlight-box,
#history .history-highlight-text,
#history .history-quote-large,
#history .history-quote-large p,
#history .history-end-text,
#history .history-cta,
#history .history-cta-bold,
#history .history-list,
#history .history-list li {
    text-align: center;
}

#history .history-content-wrapper {
    align-items: center;
}

#history .history-image-left {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#history .history-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2px;
    margin-bottom: 8px;
}

#history .history-list li {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 2px;
    line-height: 1.2;
}

#history .history-list li:last-child {
    margin-bottom: 0;
}

#history .history-list li::before {
    position: static;
    margin-right: 6px;
}

#history .history-cta-bold {
    margin-top: 6px;
}

/* History layout: desktop text wraps next to image with no gap, mobile image at bottom */
#history .history-texts > article::after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (min-width: 1401px) {
    #history .history-texts > article {
        display: block;
    }

    #history .history-texts > article > .history-image-left {
        float: left;
        width: min(100%, 280px);
        max-height: none;
        margin: 0 28px 16px 0;
    }

    #history .history-texts > article > .history-context {
        margin-top: 0;
    }

    #history .history-content-wrapper {
        margin-top: 0;
    }
}

@media screen and (max-width: 1400px) {
    #history .history-texts > article {
        display: flex;
        flex-direction: column;
    }

    #history .history-texts > article > .history-image-left {
        order: 5;
        float: none;
        width: 100%;
        max-width: 320px;
        margin: 28px auto 0;
    }
}

@media screen and (min-width: 1401px) and (max-width: 1500px) {
    .history {
        max-width: 1160px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #history .history-texts > article > .history-image-left {
        width: min(100%, 250px);
        margin-right: 22px;
    }

    #history .history-main-title {
        font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    }

    #history .history-subtitle {
        font-size: clamp(1.2rem, 1.9vw, 1.8rem);
    }

    #history .history-title > h3 {
        font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    }

    #history .history-paragraph,
    #history .history-cta,
    #history .history-quote p,
    #history .history-quote-large p {
        font-size: clamp(0.95rem, 1.02vw, 1.05rem);
    }
}

@media screen and (min-width: 1001px) and (max-width: 1400px) {
    #history .history-header-group {
        margin-bottom: 0;
    }

    #history .history-hero-title {
        margin-bottom: 10px;
    }

    #history .history-title {
        margin-bottom: 8px;
    }

    #history .history-intro {
        margin-bottom: 4px;
    }

    #history .history-context,
    #history .history-content-wrapper {
        margin-top: 0;
    }
}

/* Header CTA buttons: same sizing on desktop/mobile, different colors only */
.menu-link-ebook,
.menu-link-form,
.menu-link-phone-ebook,
.menu-link-phone-form {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 210px;
    min-height: 42px;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.2px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.menu-link-ebook,
.menu-link-phone-ebook {
    background: #ffffff;
    color: #6a2382;
    border-color: rgba(139, 47, 168, 0.3);
    min-width: 0;
}

.menu-link-form,
.menu-link-phone-form {
    background: var(--pink-color);
    color: #ffffff;
    border-color: var(--pink-color);
}

.menu-link-ebook::before,
.menu-link-form::before,
.menu-link-phone-ebook::before,
.menu-link-phone-form::before {
    display: none;
}

.menu-link-ebook:hover,
.menu-link-phone-ebook:hover {
    background: #f6eef9;
    color: #5f1f75;
    border-color: rgba(139, 47, 168, 0.42);
    box-shadow: 0 4px 12px rgba(139, 47, 168, 0.16);
    transform: translateY(-1px);
}

.menu-link-form:hover,
.menu-link-phone-form:hover {
    background: #7A2A95;
    color: #ffffff;
    border-color: #7A2A95;
    box-shadow: 0 4px 12px rgba(139, 47, 168, 0.28);
    transform: translateY(-1px);
}

@media screen and (max-width: 1000px) {
    .menu-link-phone-form {
        min-width: 220px;
    }

    .menu-link-phone-ebook,
    .menu-link-phone-form {
        margin-bottom: 14px;
    }
}

@media screen and (min-width: 801px) and (max-width: 950px) {
    .header {
        width: 100%;
    }

    .header-logo {
        margin-left: 20px;
    }

    .menu {
        display: none;
    }

    #menu-button {
        padding-right: 40px;
    }

    #menu-button > img {
        display: block;
        cursor: pointer;
    }

    .menu-phones {
        display: none;
        align-items: center;
        flex-direction: column;
        position: fixed;
        top: 150px;
        height: calc(100vh - 150px);
        width: 100%;
        background-color: #000000b6;
        left: 0;
        right: 0;
        opacity: 0;
        transition: 0.3s ease-in-out;
        z-index: 998;
        padding-top: 40px;
        gap: 12px;
        overflow-y: auto;
    }

    .menu-link-phone {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 12px 0;
        font-size: 24px;
        color: #fff;
    }
}

@media screen and (min-width: 804px) and (max-width: 970px) {
    .menu-link-phone.menu-link-phone-ebook,
    .menu-link-phone.menu-link-phone-form {
        display: inline-flex;
        width: auto;
        min-height: 42px;
        padding: 12px 22px;
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.1;
    }

    .menu-link-phone.menu-link-phone-form {
        min-width: 220px;
    }

    .menu-link-phone.menu-link-phone-ebook {
        min-width: 0;
    }
}

/* Keep EBOOK text purple in every breakpoint/state */
.menu-link-ebook,
.menu-link-ebook:hover,
.menu-link-ebook:visited,
.menu-link-phone.menu-link-phone-ebook,
.menu-link-phone.menu-link-phone-ebook:hover,
.menu-link-phone.menu-link-phone-ebook:visited {
    color: #6a2382;
}

/* Opinions desktop carousel: 3 visible cards, step-by-1 loop */
@media screen and (min-width: 761px) {
    #opinions-videos .opinions-gallery-wrapper {
        max-width: 1120px;
        padding: 0 64px;
    }

    #opinions-videos .opinions-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
        will-change: transform;
    }

    #opinions-videos .opinions-photo {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        border-radius: 10px;
    }

    #opinions-videos .opinions-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border: 1px solid rgba(139, 47, 168, 0.32);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        color: #7A2A95;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 8px 18px rgba(139, 47, 168, 0.2);
    }

    #opinions-videos .opinions-nav-prev {
        left: 10px;
    }

    #opinions-videos .opinions-nav-next {
        right: 10px;
    }
}

/* Opinions lightbox arrows */
.opinions-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #3f2b4b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
}

.opinions-lightbox-nav-prev {
    left: 16px;
}

.opinions-lightbox-nav-next {
    right: 16px;
}

@media screen and (max-width: 760px) {
    .opinions-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .opinions-lightbox-nav-prev {
        left: 8px;
    }

    .opinions-lightbox-nav-next {
        right: 8px;
    }
}
@media screen and (min-width: 761px) and (max-width: 1004px) {
    #opinions-videos .opinions-gallery-wrapper {
        max-width: 760px;
        padding: 0 56px;
    }

    #opinions-videos .opinions-photo {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/* Hard edge mask for carousel viewport (prevents right-side slide bleed) */
#opinions-videos .opinions-viewport {
    position: relative;
    overflow: hidden;
}

#opinions-videos .opinions-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    pointer-events: none;
    z-index: 2;
}

.hero-main-image {
    border-radius: 18px;
    transform: scale(0.94);
    transform-origin: center;
}

/* Mini CTA between "Jak to działa?" and quote */
/* Mini CTA at the bottom of "Jak to działa?" */
.work-mini-cta {
    margin: 30px auto 8px;
    padding: clamp(14px, 1.7vw, 20px) clamp(20px, 2.6vw, 32px);
    border: 1px solid rgba(139, 47, 168, 0.35);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.045) 0%, rgba(139, 47, 168, 0.02) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    color: #3f2b4b;
    transition: border-color 0.22s ease, background-color 0.22s ease;
}

.work-mini-cta:hover,
.work-mini-cta:focus-visible {
    color: #3a2945;
    border-color: rgba(139, 47, 168, 0.45);
    background: linear-gradient(135deg, rgba(139, 47, 168, 0.06) 0%, rgba(139, 47, 168, 0.028) 100%);
}

.work-mini-cta-text {
    font-size: clamp(15px, 2vw, 26px);
    line-height: 1.15;
    font-weight: 500;
}

.work-mini-cta-arrow {
    font-size: clamp(16px, 1.9vw, 24px);
    line-height: 1;
    color: #6b5d73;
}

@media screen and (max-width: 760px) {
    .work-mini-cta {
        margin-top: 24px;
        padding: 12px 14px;
        gap: 8px;
    }

    .work-mini-cta-text {
        font-size: clamp(12px, 3.8vw, 16px);
    }

    .work-mini-cta-arrow {
        font-size: clamp(14px, 4vw, 18px);
    }
}

@media screen and (max-width: 463px) {
    .work-mini-cta {
        display: block;
        width: calc(100% - 24px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 12px;
        white-space: normal;
        box-sizing: border-box;
        text-align: center;
    }

    .work-mini-cta-text {
        display: inline;
        white-space: normal;
        overflow-wrap: break-word;
        line-height: 1.2;
        text-align: center;
    }

    .work-mini-cta-arrow {
        display: inline;
        line-height: 1.2;
    }
}




