/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 17px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c2c2c;
    background-color: #FDF5FA;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* === Button Reset === */
button.landCfg {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    -webkit-appearance: none;
    appearance: none;
}

button.sidebar-cta {
    width: 100%;
}

.sidebar .sidebar-cta::before,
.sidebar .sidebar-cta::after {
    display: none;
}

/* === Layout === */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
    margin-left: 220px;
}

.hero-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero .cta-button {
    background: #fff;
    color: #C0549D;
}

.hero .cta-button:hover {
    background: #FAE5F3;
    color: #9A3D7E;
}

.hero-buttons {
    display: none;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-cta {
    width: auto;
    max-width: fit-content;
    padding: 1rem 1.8rem;
    background: #fff !important;
    color: #C0549D !important;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
}

.hero-cta:hover {
    background: #FAE5F3 !important;
    color: #9A3D7E !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* === Bottom Bar (sticky CTA) === */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 220px;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #C0549D, #D477B5);
    padding: 0.7rem 1rem;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.bottom-bar.visible {
    transform: translateY(0);
}

.bottom-bar .bottom-bar-cta {
    margin-top: 0 !important;
    text-align: center;
    flex: 1;
    max-width: 280px;
    background: #fff !important;
    color: #C0549D !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-bar .bottom-bar-cta:hover {
    background: #FAE5F3 !important;
    color: #9A3D7E !important;
}

/* === Sidebar === */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    padding: 2rem 1.2rem;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.04);
}

.sidebar-logo {
    display: block;
    width: calc(100% + 2.4rem);
    margin: -2rem -1.2rem 1.2rem;
    padding: 1rem 2rem;
    border-radius: 0;
}

.sidebar-inner h2 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1.2rem;
}

.sidebar-inner ul {
    list-style: none;
    padding: 0;
}

.sidebar-inner li {
    margin-bottom: 0.4rem;
}

.sidebar-inner a {
    display: block;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sidebar-inner a:hover {
    background: #FDF0F8;
    color: #C0549D;
}

.sidebar-inner a.active {
    border-left-color: #C0549D;
    color: #C0549D;
    background: #FDF0F8;
    font-weight: 700;
}

.sidebar-cta {
    display: block;
    margin-top: 0.5rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: visible;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 10px rgba(192, 84, 157, 0.3);
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(192, 84, 157, 0.45);
}

/* Sparkle particles around the CTA */
.sidebar-cta::before,
.sidebar-cta::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.sidebar-cta::before {
    background: #D477B5;
    box-shadow:
        -18px -12px 0 0 #D477B5,
         20px -8px 0 -1px #C0549D,
        -14px  14px 0 -1px #E8A8D4,
         22px  10px 0 0 #D477B5,
        -8px  -18px 0 -1px #C0549D,
         12px  16px 0 -1px #E8A8D4;
    animation: sparkleA 2.8s ease-in-out infinite;
}

.sidebar-cta::after {
    background: #C0549D;
    box-shadow:
         16px -14px 0 -1px #E8A8D4,
        -20px  8px 0 0 #D477B5,
         10px  18px 0 -1px #C0549D,
        -16px -16px 0 0 #E8A8D4,
         24px  4px 0 -1px #D477B5,
        -6px   20px 0 0 #C0549D;
    animation: sparkleB 2.8s ease-in-out infinite;
    animation-delay: 1.4s;
}

@keyframes sparkleA {
    0% {
        opacity: 0;
        transform: scale(0) translate(0, 0);
    }
    15% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    40% {
        opacity: 1;
        transform: scale(1) translate(-3px, -5px);
    }
    60% {
        opacity: 0.6;
        transform: scale(0.6) translate(-5px, -8px);
    }
    80%, 100% {
        opacity: 0;
        transform: scale(0) translate(-8px, -12px);
    }
}

@keyframes sparkleB {
    0% {
        opacity: 0;
        transform: scale(0) translate(0, 0);
    }
    15% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    40% {
        opacity: 1;
        transform: scale(1) translate(3px, 5px);
    }
    60% {
        opacity: 0.6;
        transform: scale(0.6) translate(5px, 8px);
    }
    80%, 100% {
        opacity: 0;
        transform: scale(0) translate(8px, 12px);
    }
}

main {
    margin-left: 220px;
}

/* === Intro === */
.section-intro {
    padding: 3.5rem 0 2rem;
}

.section-intro .container {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.intro-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-logo img {
    max-width: 180px;
    height: auto;
}

.section-intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 680px;
    margin: 0;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.1rem;
    gap: 0;
}

.scroll-arrows span {
    font-size: 2.5rem;
    line-height: 1;
    color: #C0549D;
    animation: bounceDown 1.5s ease-in-out infinite;
}

.scroll-arrows span:nth-child(2) {
    opacity: 0.6;
    animation-delay: 0.15s;
}

.scroll-arrows span:nth-child(3) {
    opacity: 0.3;
    animation-delay: 0.3s;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* === Screenshot === */
.section-screenshot {
    padding: 1rem 0 3rem;
}

.screenshot-wrapper {
    background: transparent;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
}

.screenshot-wrapper img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.screenshot-caption {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #999;
}

/* === Cards === */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.card {
    border-radius: 16px;
    padding: 2rem 1.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.card h2,
.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-align: center;
}

.card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Card colors */
.card--rose {
    background: #FDF0F8;
    color: #4A1A3A;
}
.card--rose h2, .card--rose h3 { color: #C0549D; }

.card--blue {
    background: #FBEAF5;
    color: #4A1A3A;
}
.card--blue h2, .card--blue h3 { color: #A8488C; }

.card--green {
    background: #FCEEF7;
    color: #4A1A3A;
}
.card--green h2, .card--green h3 { color: #CC66AE; }

.card--orange {
    background: #FAE5F3;
    color: #4A1A3A;
}
.card--orange h2, .card--orange h3 { color: #D477B5; }

/* Negative card colors */
.card--neg-yellow {
    background: #FCEEF7;
    color: #4A1A3A;
}
.card--neg-yellow h2, .card--neg-yellow h3 { color: #CC66AE; }

.card--neg-peach {
    background: #FDF0F8;
    color: #4A1A3A;
}
.card--neg-peach h2, .card--neg-peach h3 { color: #C0549D; }

.card--neg-lavender {
    background: #FDF0F8;
    color: #4A1A3A;
}
.card--neg-lavender h2, .card--neg-lavender h3 { color: #9A3D7E; }

/* Inner cards grid (inside a white block) */
.cards-grid--inner {
    margin: 1.5rem 0;
}

/* === Summary Box === */
.section-summary {
    padding: 0 0 2.5rem;
}

.summary-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #C0549D;
}

.summary-box h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.summary-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #C0549D;
    font-weight: 700;
}

/* === Text Sections === */
.section-text {
    padding: 1.5rem 0;
}

.section-text .container {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.section-text .container > h2 {
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1.1rem 2rem;
    margin: 0;
}

/* Presentation grid (text + image) */
.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 2.5rem;
    align-items: center;
}

.presentation-text p {
    margin: 0;
}

.presentation-image {
    text-align: center;
}

.presentation-image img {
    width: 75%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.section-text .container > p,
.section-text .container > .cards-grid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.section-text .container > p:first-of-type {
    padding-top: 2rem;
}

.section-text .container > p:last-of-type {
    padding-bottom: 2rem;
}

.section-text p {
    color: #444;
    margin-bottom: 1rem;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* === Dual Section (side by side) === */
.section-dual {
    padding: 1.5rem 0;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dual-block {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.dual-block h2 {
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1.1rem 2rem;
    margin: 0;
}

.dual-block p {
    padding: 2rem 2rem;
    color: #444;
    margin: 0;
}

/* === Negative Section === */
.section-negative {
    padding: 2rem 0 2.5rem;
}

.negative-box {
    background: #fff8f0;
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 4px solid #e67e22;
}

.negative-box h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.negative-box > p {
    color: #555;
    margin-bottom: 1.5rem;
}

.negative-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(230, 126, 34, 0.15);
}

.negative-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.negative-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #c96d1e;
    margin-bottom: 0.4rem;
}

.negative-item p {
    color: #555;
    font-size: 0.95rem;
}

/* === Table Section === */
.section-table {
    padding: 2rem 0 2.5rem;
}

.section-table .container {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.section-table h2 {
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1.1rem 2rem;
    margin: 0;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

thead {
    background: transparent;
    color: #1a1a1a;
}

th {
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

td {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

tr:last-child td {
    border-bottom: none;
}

.table-highlight {
    background: #FDF0F8;
}

.table-highlight td {
    font-weight: 700;
    color: #C0549D;
}

/* === FAQ Section === */
.section-faq {
    padding: 2rem 0 3rem;
}

.section-faq .container {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.section-faq h2 {
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1.1rem 2rem;
    margin: 0;
}

.section-faq .faq-item:first-of-type {
    margin-top: 1.5rem;
}

.section-faq .faq-item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.section-faq .faq-item:last-of-type {
    margin-bottom: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #C0549D;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #555;
    font-size: 0.92rem;
}

/* === Verdict === */
.section-verdict {
    background: linear-gradient(135deg, #9A3D7E, #C0549D, #D477B5);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.verdict-content {
    max-width: 680px;
    margin: 0 auto;
}

.section-verdict h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.section-verdict p {
    max-width: 620px;
    margin: 0 auto 2rem;
    opacity: 0.93;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* === CTA Button === */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background-color: #fff;
    color: #C0549D;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(192, 84, 157, 0.2); transform: scale(1); }
    50% { box-shadow: 0 4px 24px rgba(192, 84, 157, 0.45); transform: scale(1.03); }
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(192, 84, 157, 0.4);
    animation: none;
}

.cta-button:active {
    transform: translateY(0);
}

/* Inline CTA (inside white blocks) */
.block-cta {
    text-align: center;
    padding: 1.5rem 2.5rem 2.5rem;
}

.cta-button--inline {
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    box-shadow: 0 3px 14px rgba(192, 84, 157, 0.3);
}

.cta-button--inline:hover {
    background: linear-gradient(135deg, #9A3D7E, #CC66AE);
    box-shadow: 0 5px 20px rgba(192, 84, 157, 0.4);
}

/* === Steps Grid === */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 1.5rem 2.5rem;
}

.step-card {
    background: #FDF0F8;
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #C0549D;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* === Pricing Grid === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2rem;
    padding: 1.5rem 2.5rem 0.5rem;
}

.pricing-card {
    background: #FDF0F8;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card--highlight {
    border-color: #C0549D;
    background: #fff;
    box-shadow: 0 4px 20px rgba(192, 84, 157, 0.15);
    transform: scale(1.04);
}

.pricing-card--highlight:hover {
    transform: scale(1.04) translateY(-3px);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C0549D, #D477B5);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.6rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: #C0549D;
    margin-bottom: 1.2rem;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #999;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: #555;
    border-bottom: 1px solid rgba(192, 84, 157, 0.08);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button--inline {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
}

/* === Testimonials Grid === */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 1.5rem 2.5rem;
}

.testimonial-card {
    background: #FDF0F8;
    border-radius: 14px;
    padding: 1.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #f0a500;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 700;
    color: #C0549D;
}

/* === Stats Grid === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding: 2rem 2.5rem;
}

.stat-card {
    background: #FDF0F8;
    border-radius: 14px;
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #C0549D;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.82rem;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Footer === */
footer {
    padding: 2.5rem 0 5rem;
    text-align: center;
    margin-left: 220px;
}

footer p {
    font-size: 0.78rem;
    color: #bbb;
}

/* === Responsive === */
@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    main,
    .hero,
    footer {
        margin-left: 0;
    }

    .bottom-bar {
        left: 0;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 15px;
    }

    main {
        padding: 0 1rem;
    }

    .hero {
        padding: 3.5rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-logo img {
        max-width: 140px;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
    }

    .dual-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.5rem 0.5rem;
    }

    .pricing-card--highlight {
        transform: scale(1);
    }

    .pricing-card--highlight:hover {
        transform: translateY(-3px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem 1.5rem;
    }

    .verdict-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-button {
        display: block;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
    }

    footer {
        padding-bottom: 5rem;
    }
}
