/* =========================================================
   Optimized CSS (deduplicated + merged where safe)
   Notes:
   - When the same selector appeared multiple times, properties were merged.
   - In case of conflicting values, the FIRST occurrence was kept.
   - Conflicts are listed at the end of this file.
   ========================================================= */

:root {
    --brand-red: hsl(0, 84%, 50%);
    --brand-orange: hsl(25, 95%, 53%);
    --brand-yellow: hsl(45, 93%, 47%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 10%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(220, 10%, 40%);
    --border: hsl(220, 13%, 91%);
    --gradient-brand: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 50%, var(--brand-yellow) 100%);
    --gradient-brand-subtle: linear-gradient(135deg, hsla(0, 84%, 50%, 0.1) 0%, hsla(25, 95%, 53%, 0.1) 50%, hsla(45, 93%, 47%, 0.1) 100%);
    --gradient-hero: linear-gradient(180deg, hsl(220, 20%, 98%) 0%, hsl(0, 0%, 100%) 100%);
    --b2b-gradient: linear-gradient(135deg, hsl(0, 84%, 50%) 0%, hsl(15, 90%, 52%) 100%);
    --b2c-gradient: linear-gradient(135deg, hsl(25, 95%, 53%) 0%, hsl(45, 93%, 47%) 100%);
    --press-gradient: linear-gradient(135deg, hsl(45, 93%, 47%) 0%, hsl(38, 96%, 50%) 100%);
    --press-primary: hsl(45, 93%, 47%);
    --shadow-soft: 0 4px 20px -2px hsla(220, 20%, 10%, 0.08);
    --shadow-brand: 0 8px 30px -4px hsla(0, 84%, 50%, 0.25);
    --shadow-card: 0 2px 8px -2px hsla(220, 20%, 10%, 0.06);
    --shadow-card-hover: 0 12px 40px -8px hsla(220, 20%, 10%, 0.12);
    --radius: 0.75rem;
    --sl-red: #e7393b;
    --sl-orange: #f18420;
    --sl-yellow: #f7b737;
    --sl-dark: #0d0e12;
    --sl-muted: #6b7280;
    --sl-border: #e5e7eb;
    --sl-bg: #fff;
    --sl-muted-bg: #f3f4f6;

}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
}

ul,
.toc ol {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {

    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {

    .container {
        padding: 0 2rem;
    }
}

.section,
.features-section,
.faq-section,
.content-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {

    .section {
        padding: 7rem 0;
    }
}

@media (min-width: 1024px) {

    .section {
        padding: 8rem 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-hero {
    background: var(--gradient-brand);
    color: white;
    box-shadow: var(--shadow-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .625rem 1.5rem;
    font-size: .875rem;
    font-weight: 600;
    border-radius: .75rem;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px -5px hsla(0, 84%, 50%, 0.35);
    color: #fff;
}

.btn-b2b {
    background: var(--b2b-gradient);
    color: white;
    box-shadow: 0 4px 15px -3px hsla(0, 84%, 50%, 0.3);
}

.btn-b2b:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px hsla(0, 84%, 50%, 0.4);
}

.btn-b2c {
    background: var(--b2c-gradient);
    color: white;
    box-shadow: 0 4px 15px -3px hsla(25, 95%, 53%, 0.3);
}

.btn-b2c:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px hsla(25, 95%, 53%, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: .75rem;
    cursor: pointer;
    transition: all .3s;
}

.btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: .75rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn svg {
    transition: transform 0.3s ease;
    width: 1.25rem;
    height: 1.25rem;
}

.btn:hover svg {
    transform: translateX(4px);
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted,
.search-wrapper input::placeholder {
    color: var(--muted-foreground);
}

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

.text-brand-red,
.b2b-card:hover h3,
.popular-item:hover span,
.popular-item:hover svg,
.cat-list a:hover .chevron, .cat-list button:hover .chevron,
.trust-badge-red svg {
    color: var(--brand-red);
}

.text-brand-orange,
.b2c-step:hover h3,
.ai-card:hover h4,
.feature-card:hover h4,
.trust-badge-icon,
.trust-badge-orange svg {
    color: var(--brand-orange);
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8,
.profile-list,
.b2c-benefits {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(20, 24, 31);
}

.badge-red {
    background: hsla(0, 84%, 50%, 0.1);
    border: none;
}

.badge-orange {
    background: hsla(25, 95%, 53%, 0.1);
    border: none;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.icon-lg,
.trust-badge-icon svg,
.free-redaction-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-xl {
    width: 1.75rem;
    height: 1.75rem;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: var(--gradient-brand);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-box-lg {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
}

.icon-box-red,
.profile-card-b2b .profile-card-icon,
.profile-card-b2b .profile-list-dot {
    background: hsla(0, 84%, 50%, 0.1);
}

.icon-box-orange,
.profile-card-b2c .profile-card-icon,
.profile-card-b2c .profile-list-dot {
    background: hsla(25, 95%, 53%, 0.1);
}

.icon-box-subtle {
    background: var(--gradient-brand-subtle);
}

.icon-box svg,
.footer ul a:hover {
    color: white;
}

.icon-box-red svg,
.icon-box-orange svg,
.icon-box-subtle svg {
    color: inherit;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.sl-nav-wrapper {
    background: var(--gradient-hero);
    position: relative;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 20;
}

@media (min-width:640px) {

    .nav {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width:1024px) {

    .nav {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.nav-logo img {
    height: 40px;
}

.nav-links,
.sl-nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width:1024px) {

    .nav-links {
        display: flex;
    }
}

.nav-links a,
.sl-nav-links a {
    color: var(--sl-muted);
    font-size: .875rem;
    transition: color .3s;
}

.nav-links a:hover,
.category-tab:hover:not(.active),
.sl-nav-links a:hover {
    color: var(--sl-dark);
}

.nav-links a.active {
    color: var(--sl-dark);
    font-weight: 600;
}

.nav-cta,
.nav-cta-desktop,
.sl-nav-cta {
    display: none;
}

@media (min-width:640px) {

    .nav-cta {
        display: inline-flex;
    }
}

.nav-hamburger,
.sl-nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: .5rem;
    cursor: pointer;
    color: var(--sl-dark);
    transition: background .2s;
}

.nav-hamburger:hover,
.sl-nav-hamburger:hover {
    background: rgba(0,0,0,.05);
}

@media (min-width:1024px) {

    .nav-hamburger {
        display: none;
    }
}

.mobile-menu,
.sl-mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    z-index: 50;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sl-border);
    box-shadow: 0 8px 30px -4px rgba(0,0,0,.1);
    padding: 1rem;
}

.mobile-menu.open,
.faq-item.open .faq-answer,
.sl-mobile-menu.open {
    display: block;
}

@media (min-width:1024px) {

    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a,
.sl-mobile-menu a {
    display: block;
    padding: .75rem 1rem;
    border-radius: .5rem;
    color: var(--sl-dark);
    font-weight: 500;
    font-size: .875rem;
    transition: background .2s;
}

.mobile-menu a:hover,
.sl-mobile-menu a:hover {
    background: var(--sl-muted-bg);
}

.mobile-menu a.active {
    color: var(--sl-orange);
    background: var(--sl-muted-bg);
}

.btn-hero-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-brand);
    opacity: 0.1;
}

.hero-bg-circle-1 {
    width: 20rem;
    height: 20rem;
    top: -10rem;
    right: -10rem;
}

.hero-bg-circle-2 {
    width: 15rem;
    height: 15rem;
    bottom: -5rem;
    left: -5rem;
}

.nav-logo {
    height: 2.5rem;
}

@media (min-width: 1024px) {

    .nav-links {
        display: flex;
    }
}

@media (min-width: 1024px) {

    .nav-hamburger {
        display: none;
    }
}

@media (min-width: 640px) {

    .nav-cta-desktop {
        display: inline-flex;
    }
}

@media (min-width: 1024px) {

    .mobile-menu {
        display: none !important;
    }
}

.hero-content {
    padding: 5rem 0 8rem;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {

    .hero-content {
        padding: 8rem 0 10rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {

    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {

    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {

    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {

    .profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.profile-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.profile-card:hover,
.ai-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.profile-card-b2b:hover {
    border-color: hsla(0, 84%, 50%, 0.3);
}

.profile-card-b2c:hover {
    border-color: hsla(25, 95%, 53%, 0.3);
}

.profile-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 1rem 1rem 0 0;
    transition: height 0.3s ease;
}

.profile-card:hover .profile-card-accent {
    height: 8px;
}

.profile-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-card-icon,
.b2c-step:hover .b2c-step-number {
    transform: scale(1.1) rotate(3deg);
}

.profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.profile-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.profile-card:hover .profile-list li {
    color: var(--foreground);
}

.profile-list-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-list-dot,
.trust-card:hover .stat {
    transform: scale(1.1);
}

.profile-list-dot-inner {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    transition: transform 0.3s;
}

.profile-card-b2b .profile-list-dot-inner {
    background: var(--brand-red);
}

.profile-card-b2c .profile-list-dot-inner {
    background: var(--brand-orange);
}

.profile-card:hover .profile-list-dot-inner {
    transform: scale(1.25);
}

.section-b2b,
.section-trust {
    background: hsla(220, 14%, 96%, 0.3);
}

.b2b-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {

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

@media (min-width: 1024px) {

    .b2b-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.b2b-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.b2b-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: hsla(0, 84%, 50%, 0.2);
    transform: translateY(-4px);
}

.b2b-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(0, 84%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.b2b-card:hover .b2b-card-icon {
    transform: scale(1.1) rotate(6deg);
    background: hsla(0, 84%, 50%, 0.2);
}

.b2b-card h3,
.ai-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.b2b-card p,
.b2c-step p,
.trust-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.b2c-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {

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

.b2c-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.b2c-benefit:hover {
    transform: translateX(8px);
}

.b2c-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: hsla(25, 95%, 53%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.b2c-benefit:hover .b2c-benefit-icon {
    background: hsla(25, 95%, 53%, 0.2);
    transform: scale(1.1);
}

.b2c-steps {
    position: relative;
}

.b2c-steps-line {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-orange), var(--brand-yellow), transparent);
    display: none;
}

@media (min-width: 768px) {

    .b2c-steps-line {
        display: block;
    }
}

.b2c-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: hsla(220, 14%, 96%, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.b2c-step:hover {
    box-shadow: var(--shadow-card-hover);
    background: hsla(220, 14%, 96%, 0.8);
    transform: translateX(-4px);
}

.b2c-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--b2c-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.b2c-step-number span {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.b2c-step h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.section-ai {
    background: var(--gradient-brand-subtle);
    position: relative;
    overflow: hidden;
}

.ai-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {

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

.ai-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.ai-card:hover .icon-box,
.feature-card:hover .icon-box,
.trust-card:hover .icon-box,
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
}

.features-grid,
.cat-grid,
.seo-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {

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

@media (min-width: 1024px) {

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover,
.trust-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
}

.feature-card .icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.trust-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {

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

@media (min-width: 1024px) {

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.trust-card .icon-box {
    margin: 0 auto 1rem;
}

.trust-card .stat {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: transform 0.3s;
}

.trust-card .label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
}

.section-cta {
    background: var(--gradient-brand);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.cta-bg-circle-1 {
    top: 0;
    left: 25%;
}

.cta-bg-circle-2 {
    bottom: 0;
    right: 25%;
    animation-delay: 1s;
}

@keyframes pulse {
0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {

    .cta-content h2 {
        font-size: 2.25rem;
    }
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 30px;
}

@media (min-width: 640px) {

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-white {
    background: white;
    color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white-outline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer {
    background: var(--foreground);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: .875rem;
}

.footer ul {
    padding-left: 0;
    font-size: .875rem;
}
.toc li {
    margin-bottom: .75rem;
}

.footer ul a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: .875rem;
    justify-content: space-between;
    color: rgba(255,255,255,.6);
}

@media (min-width: 768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

.footer a {
    display: block;
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}

.footer a:hover,
.pro-text strong,
footer li a:hover {
    color: #fff;
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.hero-features,
.hero-faq,
.hero-guide,
.hero-legal {
    padding: 4rem 0 5rem;
    background: var(--gradient-brand-subtle);
    text-align: center;
}

.hero-features h1,
.hero-faq h1,
.hero-guide h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width:768px) {

    .hero-features h1 {
        font-size: 3rem;
    }
}

.hero-features p,
.hero-faq p,
.hero-guide p {
    font-size: 1.125rem;
    color: var(--sl-muted);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width:768px) {

    .features-section {
        padding: 7rem 0;
    }
}

@media (min-width:768px) {

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

@media (min-width:1024px) {

    .features-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all .3s;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.icon-red {
    background: rgba(231,57,59,.1);
    color: var(--sl-red);
}

.icon-orange,
.toc li a:hover .toc-num {
    background: rgba(241,132,32,.1);
    color: var(--sl-orange);
}

.icon-yellow {
    background: rgba(247,183,55,.1);
    color: var(--sl-yellow);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .75rem;
    transition: color .3s;
}

.feature-card:hover h3,
.info-notice a:hover,
.toc li a:hover {
    color: var(--sl-orange);
}

.feature-card p {
    font-size: .875rem;
    color: var(--sl-muted);
    line-height: 1.7;
    flex: 1;
}

.contact-strip {
    padding: 3rem 0;
    background: var(--sl-muted-bg);
    border-top: 1px solid var(--sl-border);
    border-bottom: 1px solid var(--sl-border);
}

.contact-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    font-size: .875rem;
    color: var(--sl-muted);
}

.contact-strip-item,
.info-card h4 {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.contact-strip-item svg {
    width: 20px;
    height: 20px;
    color: var(--sl-orange);
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

@media (min-width:768px) {

    .cta-section {
        padding: 7rem 0;
    }
}

.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width:768px) {

    .cta-section h2 {
        font-size: 2rem;
    }
}

.cta-section > .container > p,
.cta-section > .container-narrow > p {
    color: var(--sl-muted);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width:640px) {

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.page-body {
    display: flex;
    min-height: calc(100vh - 73px);
}

.auth-form-panel {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
    background: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 8px 0 30px rgba(0,0,0,.08);
    overflow-y: auto;
}

.auth-form-inner {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.auth-heading h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sl-dark);
    margin-bottom: .5rem;
}

.auth-heading p {
    color: #6b7280;
    font-size: .875rem;
}

.form-label {
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
}

.form-control, .form-select {
    height: 44px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    font-size: .875rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--sl-orange);
    box-shadow: 0 0 0 3px rgba(241,132,32,.15);
}

textarea.form-control {
    height: auto;
    min-height: 100px;
    resize: none;
}

.btn-primary-sl {
    background: linear-gradient(135deg, var(--sl-red), var(--sl-orange));
    border: none;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: .5rem;
    color: #fff;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.btn-primary-sl:hover {
    opacity: .9;
    color: #fff;
}

.info-notice {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    margin-bottom: 2rem;
}

.info-notice i {
    color: var(--sl-red);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-notice p {
    font-size: .75rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.info-notice a {
    color: var(--sl-red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-brand-panel {
    flex: 1;
    background: linear-gradient(135deg, hsl(0,84%,50%) 0%, hsl(25,95%,53%) 40%, hsl(45,93%,47%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.12) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 60px 60px;
}

.brand-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
    padding: 3rem;
}

.brand-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.brand-content > p {
    color: rgba(255,255,255,.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.advantage-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.advantage-item h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.advantage-item p {
    color: rgba(255,255,255,.75);
    font-size: .875rem;
    line-height: 1.6;
    margin: 0;
}

.social-proof {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.2);
}

.social-proof p {
    color: rgba(255,255,255,.8);
    font-size: .875rem;
    margin: 0;
}

.social-proof strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 991.98px) {

    .auth-brand-panel {
        display: none;
    }

    .auth-form-panel {
        width: 100%;
        padding: 2rem 1.5rem;
    }
}

.category-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f3f4f6;
    border-radius: .5rem;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.category-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .625rem 1rem;
    border: none;
    background: transparent;
    font-size: .875rem;
    font-weight: 500;
    color: #6b7280;
    border-radius: .375rem;
    cursor: pointer;
    transition: all .2s;
}

.category-tab.active {
    background: #fff;
    color: var(--sl-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

@media (max-width: 991.98px) {

    .auth-brand-panel {
        display: none;
    }

    .auth-form-panel {
        width: 100%;
        padding: 2rem 1.5rem;
    }
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width:640px) {

    .container, .container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width:1024px) {

    .container, .container-narrow {
        padding: 0 2rem;
    }
}

@media (min-width:768px) {

    .hero-faq h1 {
        font-size: 3rem;
    }
}

@media (min-width:768px) {

    .faq-section {
        padding: 7rem 0;
    }
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-group {
    border: 1px solid var(--sl-border);
    border-radius: .75rem;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--sl-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 500;
    color: var(--sl-dark);
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}

.faq-question:hover {
    background: rgba(243,244,246,.5);
}

.faq-question svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .2s;
    color: var(--sl-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1rem;
    font-size: .875rem;
    color: var(--sl-muted);
    line-height: 1.7;
}

@media (min-width:768px) {

    .cta-section {
        padding: 7rem 0;
    }
}

@media (min-width:768px) {

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (min-width:640px) {

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width:768px) {

    .hero-guide h1 {
        font-size: 3rem;
    }
}

.guide-layout {
    display: grid;
    gap: 2.5rem;
    padding: 5rem 0;
}

@media (min-width:1024px) {

    .guide-layout {
        grid-template-columns: 280px 1fr;
    }
}

.toc {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: .75rem;
    padding: 1.5rem 2rem;
}

@media (min-width:1024px) {

    .toc {
        position: sticky;
        top: 2rem;
        align-self: start;
    }
}

.toc h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.toc li a {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--sl-muted);
    font-size: .875rem;
    font-weight: 500;
    transition: color .2s;
}

.toc-num {
    width: 32px;
    height: 32px;
    border-radius: .5rem;
    background: var(--sl-muted-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 600;
    color: var(--sl-dark);
    flex-shrink: 0;
    transition: all .2s;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.guide-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width:768px) {

    .guide-section h2 {
        font-size: 1.75rem;
    }
}

.guide-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.guide-section h4 {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.guide-section p,
.content-section p {
    color: var(--sl-muted);
    font-size: .9375rem;
    margin-bottom: 1rem;
}

.guide-section ul,
.content-section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.guide-section ul li,
.content-section ul li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    color: var(--sl-muted);
    margin-bottom: .5rem;
}

.guide-section ul li::before,
.content-section ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sl-orange);
    margin-top: .5rem;
    flex-shrink: 0;
}

.callout {
    background: rgba(241,132,32,.04);
    border: 1px solid var(--sl-border);
    border-radius: .75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.callout h3, .callout h4 {
    margin-bottom: .5rem;
    color: var(--sl-dark);
}

.callout p, .callout li {
    font-size: .875rem;
}

.two-col,
.popular-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width:768px) {

    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    border: 1px solid var(--sl-border);
    border-radius: .75rem;
    padding: 1.25rem;
}

.info-card h4 svg {
    width: 16px;
    height: 16px;
}

.info-card p {
    margin-bottom: 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: .75rem;
    padding: 1rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(241,132,32,.1);
    color: var(--sl-orange);
    font-size: .875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    padding-top: .25rem;
}

.price-table {
    border: 1px solid var(--sl-border);
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.price-table table {
    width: 100%;
    font-size: .875rem;
    border-collapse: collapse;
}

.price-table th {
    background: var(--sl-muted-bg);
    text-align: left;
    padding: .625rem 1rem;
    font-weight: 600;
    color: var(--sl-dark);
}

.price-table th:last-child {
    text-align: right;
}

.price-table td {
    padding: .625rem 1rem;
    color: var(--sl-muted);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--sl-dark);
    white-space: nowrap;
}

.price-table tr:nth-child(even) {
    background: rgba(243,244,246,.3);
}

@media (min-width:768px) {

    .cta-section {
        padding: 7rem 0;
    }
}

@media (min-width:768px) {

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (min-width:640px) {

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width:640px) {

    .container,.container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width:1024px) {

    .container,.container-narrow {
        padding: 0 2rem;
    }
}

.sl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    position: relative;
    z-index: 20;
}

.sl-nav-logo svg {
    height: 40px;
    width: auto;
}

@media (min-width:1024px) {

    .sl-nav-links {
        display: flex;
    }
}

@media (min-width:640px) {

    .sl-nav-cta {
        display: inline-flex;
    }
}

@media (min-width:1024px) {

    .sl-nav-hamburger {
        display: none;
    }
}

@media (min-width:1024px) {

    .sl-mobile-menu {
        display: none !important;
    }
}

.hero-legal h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width:768px) {

    .hero-legal h1 {
        font-size: 3rem;
    }
}

.hero-legal p {
    font-size: 1.125rem;
    color: var(--sl-muted);
}

@media (min-width:768px) {

    .content-section {
        padding: 7rem 0;
    }
}

.content-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section a {
    color: var(--sl-orange);
    font-weight: 600;
}

.content-section a:hover {
    text-decoration: underline;
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width:640px) {

    .container,.container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width:1024px) {

    .container,.container-narrow {
        padding: 0 2rem;
    }
}

@media (min-width:1024px) {

    .sl-nav-links {
        display: flex;
    }
}

@media (min-width:640px) {

    .sl-nav-cta {
        display: inline-flex;
    }
}

@media (min-width:1024px) {

    .sl-nav-hamburger {
        display: none;
    }
}

@media (min-width:1024px) {

    .sl-mobile-menu {
        display: none !important;
    }
}

@media (min-width:768px) {

    .hero-legal h1 {
        font-size: 3rem;
    }
}

@media (min-width:768px) {

    .content-section {
        padding: 7rem 0;
    }
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width:640px) {

    .container,.container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width:1024px) {

    .container,.container-narrow {
        padding: 0 2rem;
    }
}

@media (min-width:1024px) {

    .sl-nav-links {
        display: flex;
    }
}

@media (min-width:640px) {

    .sl-nav-cta {
        display: inline-flex;
    }
}

@media (min-width:1024px) {

    .sl-nav-hamburger {
        display: none;
    }
}

@media (min-width:1024px) {

    .sl-mobile-menu {
        display: none !important;
    }
}

@media (min-width:768px) {

    .hero-legal h1 {
        font-size: 3rem;
    }
}

@media (min-width:768px) {

    .content-section {
        padding: 7rem 0;
    }
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width:1024px) {

    .nav-links {
        display: flex;
    }
}

@media (min-width:1024px) {

    .nav-hamburger {
        display: none;
    }
}

@media (min-width:640px) {

    .nav-cta-desktop {
        display: inline-flex;
    }
}

@media (min-width:1024px) {

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width:768px) {

    .hero-content {
        padding: 6rem 0 7rem;
    }
}

@media (min-width:768px) {

    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width:1024px) {

    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width:640px) {

    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: hsla(220,14%,96%,0.3);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    font-size: .875rem;
    color: var(--muted-foreground);
}

@media (min-width:768px) {

    .trust-badges {
        gap: 3rem;
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
}

.trust-badge-title {
    font-weight: 600;
    font-size: .875rem;
    color: var(--foreground);
}

.trust-badge-sub,
.widget-header-text p:last-child {
    font-size: .75rem;
    color: var(--muted-foreground);
}

@media (min-width:640px) {

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

@media (min-width:1024px) {

    .popular-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.popular-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
    transition: all .3s ease;
}

.popular-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: hsla(0,84%,50%,0.3);
}

.popular-item span,
.widget-header-text p:first-child {
    font-weight: 500;
    font-size: .875rem;
}

.popular-item svg {
    color: var(--muted-foreground);
    transition: color .3s;
    flex-shrink: 0;
    margin-left: .5rem;
}

.free-redaction {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

@media (min-width:768px) {

    .free-redaction {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.5rem;
    }
}

.free-redaction-left {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.free-redaction-icon {
    padding: .75rem;
    border-radius: .75rem;
    background: hsla(25,95%,53%,0.1);
    color: var(--brand-orange);
    flex-shrink: 0;
}

.search-wrapper {
    position: relative;
    max-width: 32rem;
    margin-bottom: 3rem;
}

.search-wrapper input {
    width: 100%;
    padding: .75rem 1rem .75rem 3rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: .875rem;
    font-family: inherit;
    color: var(--foreground);
    outline: none;
    transition: all .3s;
}

.search-wrapper input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px hsla(25,95%,53%,0.15);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    font-size: 1rem;
    display: none;
}

@media (min-width:768px) {

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

@media (min-width:1200px) {

    .cat-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.cat-card {
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: .5rem;
    background: hsla(0,84%,50%,0.1);
    color: var(--brand-red);
}

.cat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cat-title {
    font-weight: 600;
    font-size: .9375rem;
}

.cat-list li {
    margin: 0;
}

.cat-list a, .cat-list button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .625rem .75rem;
    border-radius: .5rem;
    font-size: .8125rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    font-family: inherit;
    transition: background .2s, color .2s;
}

.cat-list a:hover, .cat-list button:hover {
    background: var(--muted);
    color: var(--brand-red);
}

.cat-list .ia-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--brand-orange);
    background: hsla(25,95%,53%,0.1);
    padding: .125rem .375rem;
    border-radius: 9999px;
    flex-shrink: 0;
}

.cat-list .ia-badge svg {
    width: .75rem;
    height: .75rem;
}

.cat-list .chevron {
    color: var(--muted-foreground);
    flex-shrink: 0;
    transition: color .2s;
}

.form-label-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
}

.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-state svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--muted-foreground);
    font-size: .875rem;
}

.empty-state em {
    font-style: italic;
}

.guide-cta {
    background: hsla(220,14%,96%,0.3);
    padding: 4rem 0;
    text-align: center;
}

.guide-cta p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
    }
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid hsla(0,0%,100%,0.3);
}

.btn-outline-white:hover {
    background: hsla(0,0%,100%,0.1);
    transform: translateY(-2px);
}

@media (min-width:768px) {

    .hero-content {
        padding: 5rem 0;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 600;
}

.hero-badge-primary {
    background: hsla(0,84%,50%,0.1);
    color: var(--brand-red);
}

.hero-badge-secondary {
    background: hsla(25,95%,53%,0.1);
    color: var(--brand-orange);
}

.hero-badge svg {
    width: .875rem;
    height: .875rem;
}

@media (min-width:768px) {

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width:1024px) {

    .hero-title {
        font-size: 3rem;
    }
}

.trust-badge svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.form-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width:1024px) {

    .form-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar p,
.tip-box p,
.seo-block p {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.info-box {
    padding: 1.25rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: hsla(220,14%,96%,0.5);
}

.info-box h3 {
    font-size: .875rem;
    margin-bottom: .75rem;
}

.info-box ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.info-box li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    color: var(--muted-foreground);
}

.info-box li svg {
    width: .875rem;
    height: .875rem;
    color: var(--brand-red);
    margin-top: .2rem;
    flex-shrink: 0;
}

.tip-box {
    padding: 1.25rem;
    border-radius: .75rem;
    background: hsla(0,84%,50%,0.05);
    border: 1px solid hsla(0,84%,50%,0.1);
}

.tip-box h3 {
    font-size: .875rem;
    margin-bottom: .5rem;
}

.widget-wrapper {
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: .5rem;
    box-shadow: var(--shadow-soft);
}

.widget-header {
    background: hsla(220,14%,96%,0.3);
    border-radius: .75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.widget-header-icon {
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
    background: hsla(0,84%,50%,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-header-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--brand-red);
}

#widget-container {
    min-height: 600px;
}

.pro-section {
    padding: 4rem 0 5rem;
    background: var(--b2b-gradient);
}

@media (min-width:768px) {

    .pro-section {
        padding: 5rem 0;
    }
}

.pro-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 9999px;
    background: hsla(0,0%,100%,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pro-badge svg {
    width: 1rem;
    height: 1rem;
}

.pro-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width:768px) {

    .pro-title {
        font-size: 2rem;
    }
}

@media (min-width:1024px) {

    .pro-title {
        font-size: 2.5rem;
    }
}

.pro-text {
    color: hsla(0,0%,100%,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pro-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width:640px) {

    .pro-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.seo-section {
    background: hsla(220,14%,96%,0.2);
}

.seo-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width:768px) {

    .seo-title {
        font-size: 2rem;
    }
}

@media (min-width:768px) {

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

.seo-block h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

footer {
    background: var(--foreground);
    color: hsla(0,0%,100%,0.8);
    padding: 4rem 0;
}

@media (min-width:768px) {

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

footer h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

footer li a {
    font-size: .875rem;
    transition: color .3s;
}

@media (min-width:768px) {

    .footer-bottom {
        flex-direction: row;
    }
}

.sl-loader{
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.75);
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.sl-loader__spinner{
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 6px solid rgba(0,0,0,.08);
    border-top-color: #F18420;
    animation: slspin .9s linear infinite;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.sl-loader__text{
    margin-top: 12px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 14px;
    background: linear-gradient(90deg, #F18420, #FFB000, #F18420);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

@keyframes slspin{
    to{ transform: rotate(360deg); }
}

.profile-card-press:hover {
    border-color: hsla(45, 93%, 47%, 0.3);
}
.profile-card-press .profile-card-icon {
    background: hsla(45, 93%, 47%, 0.12);
}
.profile-card-press .profile-list-dot {
    background: hsla(45, 93%, 47%, 0.12);
}
.profile-card-press .profile-list-dot-inner {
    background: var(--brand-yellow);
}
.btn-press {
    background: var(--press-gradient);
    color: #fff;
    box-shadow: 0 4px 15px -3px hsla(45, 93%, 47%, 0.4);
}
.btn-press:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px hsla(45, 93%, 47%, 0.5);
}

/* Press section */
.press-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .press-grid { grid-template-columns: 1fr 1fr; }
}
.press-features-grid {
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .press-features-grid { grid-template-columns: repeat(2, 1fr); }
}
.press-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.press-feature-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: hsla(45, 93%, 47%, 0.3);
    transform: translateY(-2px);
}
.press-feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: var(--press-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.press-feature-item:hover .press-feature-icon {
    transform: scale(1.1);
}
.badge-yellow {
    background: hsla(45, 93%, 47%, 0.12);
    border: none;
    color: hsl(38, 80%, 35%);
}

.profile-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.profile-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.profile-card-b2b:hover {
    border-color: hsla(0, 84%, 50%, 0.3);
}

.profile-card-b2c:hover {
    border-color: hsla(25, 95%, 53%, 0.3);
}

.profile-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 1rem 1rem 0 0;
    transition: height 0.3s ease;
}

.profile-card:hover .profile-card-accent {
    height: 8px;
}

.profile-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-card-icon {
    transform: scale(1.1) rotate(3deg);
}

.profile-card-b2b .profile-card-icon {
    background: hsla(0, 84%, 50%, 0.1);
}

.profile-card-b2c .profile-card-icon {
    background: hsla(25, 95%, 53%, 0.1);
}

.profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.profile-list {
    margin-bottom: 2rem;
}

.profile-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.profile-card:hover .profile-list li {
    color: var(--foreground);
}

.profile-list-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-card-b2b .profile-list-dot {
    background: hsla(0, 84%, 50%, 0.1);
}

.profile-card-b2c .profile-list-dot {
    background: hsla(25, 95%, 53%, 0.1);
}

.profile-card:hover .profile-list-dot {
    transform: scale(1.1);
}

.profile-list-dot-inner {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    transition: transform 0.3s;
}

.profile-card-b2b .profile-list-dot-inner {
    background: var(--brand-red);
}

.profile-card-b2c .profile-list-dot-inner {
    background: var(--brand-orange);
}

.profile-card:hover .profile-list-dot-inner {
    transform: scale(1.25);
}

.btn-press {
    background: var(--press-gradient);
    color: white;
    box-shadow: 0 4px 15px -3px hsla(45, 93%, 47%, 0.3);
}
.btn-press:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px hsla(45, 93%, 47%, 0.4);
}
.btn-press:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
          Hero
          ======================================== */
.press-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}
.press-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--press-gradient);
    opacity: 0.08;
}
.press-hero .hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.press-hero .hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.press-hero .hero h1 span { color: var(--press-primary); }
.press-hero .hero p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .press-hero .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .press-hero .hero h1 { font-size: 3.75rem; } }

.badge-press {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: hsla(45, 93%, 47%, 0.1);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--press-primary);
}

/* ========================================
   Visuals grid
   ======================================== */
.visuals-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) { .visuals-grid { grid-template-columns: 1fr 1fr; } }

.visual-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s ease;
}
.visual-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.visual-card img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}
.visual-card:hover img { transform: scale(1.03); }
.visual-card-body { padding: 1.5rem; }
.visual-card-body h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.visual-card-body p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========================================
   Features grid
   ======================================== */
.features-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }

.press-card .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: left;
    flex-direction: row;
}
.press-card .feature-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: hsla(45, 93%, 47%, 0.3);
    transform: translateY(-2px);
}
.press-card .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--press-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.press-card .feature-card:hover .feature-icon { transform: scale(1.1); }
.press-card .feature-icon svg { width: 20px; height: 20px; color: white; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.press-card .feature-text h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.press-card .feature-text p { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.5; }

/* ========================================
   Advantages
   ======================================== */
.advantages-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: 1fr 1fr; } }

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.advantage-item svg { width: 20px; height: 20px; color: var(--press-primary); stroke: var(--press-primary); fill: none; flex-shrink: 0; margin-top: 2px; }
.advantage-item span { font-weight: 500; }

.advantage-image-wrapper {
    position: relative;
}
.advantage-image-glow {
    position: absolute;
    inset: -1rem;
    border-radius: 1rem;
    background: var(--press-gradient);
    opacity: 0.15;
    filter: blur(24px);
}
.advantage-image-wrapper img {
    position: relative;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px hsla(220, 20%, 10%, 0.2);
    border: 1px solid var(--border);
}

/* ========================================
   Form
   ======================================== */
.form-section { padding: 5rem 0; }
.form-wrapper {
    max-width: 36rem;
    margin: 0 auto;
}
.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.form-group input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--background);
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--press-primary);
    box-shadow: 0 0 0 3px hsla(45, 93%, 47%, 0.15);
}
.form-group input::placeholder { color: var(--muted-foreground); }

.captcha-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--muted);
    margin-bottom: 1.25rem;
    cursor: pointer;
}
.captcha-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--press-primary);
    cursor: pointer;
}
.captcha-box label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}
.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--press-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.form-success-icon svg { width: 32px; height: 32px; color: white; stroke: white; fill: none; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;            /* 8px */
    border-radius: 0.5rem;      /* 8px */
    color: hsl(220 10% 40%);    /* muted-foreground */
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.phone-button:hover {
    color: hsl(220 20% 10%);              /* foreground */
    background-color: hsl(220 20% 10% / 0.1); /* foreground/10 */
}

.phone-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
@media (max-width: 1023px) {
    #editeurs .press-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}
.phone-contact-block {
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid hsl(220 13% 91%);
    background: linear-gradient(
            to bottom right,
            hsl(0 84% 50% / 0.05),
            hsl(220 14% 96% / 0.3),
            hsl(0 84% 50% / 0.1)
    );
    padding: 1.25rem;
}

.phone-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.phone-contact-text {
    min-width: 0;
}

.phone-contact-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(220 20% 10%);
    margin: 0 0 0.125rem 0;
}

.phone-contact-desc {
    font-size: 0.75rem;
    color: hsl(220 10% 40%);
    line-height: 1.6;
    margin: 0;
}

.phone-contact-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background-color: hsl(0 84% 50% / 0.1);
    color: hsl(0 84% 50%);
    padding: 0.625rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-contact-btn span {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.phone-contact-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.phone-contact-btn:hover {
    background-color: hsl(0 84% 50%);
    color: #ffffff;
}

.phone-contact-btn:hover svg {
    transform: scale(1.1);
}
/* =========================================================
   Merge collisions (review & optionally re-apply)
   Format: context | selector | property | kept -> dropped
   ========================================================= */
/*
[root] .btn-hero :: color :: kept 'white' -> dropped '#fff'
[root] .btn-hero :: box-shadow :: kept 'var(--shadow-brand)' -> dropped '0 8px 30px -4px rgba(231,57,59,.25)'
[root] .btn-hero:hover :: transform :: kept 'translateY(-2px) scale(1.02)' -> dropped 'scale(1.02)'
[root] .btn-outline :: border :: kept '2px solid var(--border)' -> dropped '2px solid var(--sl-border)'
[root] .btn-outline :: color :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .btn-outline:hover :: border-color :: kept 'var(--brand-orange)' -> dropped 'var(--sl-orange)'
[root] .btn-outline:hover :: color :: kept 'var(--brand-orange)' -> dropped 'var(--sl-orange)'
[root] .nav :: z-index :: kept '20' -> dropped '10'
[root] .nav-hamburger :: width :: kept '40px' -> dropped '2.5rem'
[root] .nav-hamburger :: height :: kept '40px' -> dropped '2.5rem'
[root] .nav-hamburger :: border-radius :: kept '.5rem' -> dropped '0.5rem'
[root] .nav-hamburger :: color :: kept 'var(--sl-dark)' -> dropped 'var(--foreground)'
[root] .nav-hamburger :: transition :: kept 'background .2s' -> dropped 'background 0.2s'
[root] .nav-hamburger:hover :: background :: kept 'rgba(0,0,0,.05)' -> dropped 'rgba(0,0,0,0.05)'
[root] .mobile-menu :: background :: kept 'rgba(255,255,255,.97)' -> dropped 'rgba(255,255,255,0.97)'
[root] .mobile-menu :: border-bottom :: kept '1px solid var(--sl-border)' -> dropped '1px solid var(--border)'
[root] .mobile-menu :: box-shadow :: kept '0 8px 30px -4px rgba(0,0,0,.1)' -> dropped '0 8px 30px -4px rgba(0,0,0,0.1)'
[root] .mobile-menu a :: padding :: kept '.75rem 1rem' -> dropped '0.75rem 1rem'
[root] .mobile-menu a :: border-radius :: kept '.5rem' -> dropped '0.5rem'
[root] .mobile-menu a :: color :: kept 'var(--sl-dark)' -> dropped 'var(--foreground)'
[root] .mobile-menu a :: font-size :: kept '.875rem' -> dropped '0.875rem'
[root] .mobile-menu a :: transition :: kept 'background .2s' -> dropped 'background 0.2s'
[root] .mobile-menu a:hover :: background :: kept 'var(--sl-muted-bg)' -> dropped 'var(--muted)'
[root] .nav-links a :: color :: kept 'var(--sl-muted)' -> dropped 'var(--muted-foreground)'
[root] .nav-links a :: font-size :: kept '.875rem' -> dropped '0.875rem'
[root] .nav-links a :: transition :: kept 'color .3s' -> dropped 'color 0.3s'
[root] .nav-links a:hover :: color :: kept 'var(--sl-dark)' -> dropped 'var(--foreground)'
[root] .footer :: background :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer :: padding :: kept '4rem 0' -> dropped '4rem 0 2rem'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .feature-card :: border-radius :: kept 'var(--radius)' -> dropped '.75rem'
[root] .feature-card :: border :: kept '1px solid var(--border)' -> dropped '1px solid var(--sl-border)'
[root] .feature-card :: background :: kept 'var(--card)' -> dropped 'var(--sl-bg)'
[root] .feature-card :: transition :: kept 'all 0.3s ease' -> dropped 'all .3s'
[root] .feature-card:hover :: box-shadow :: kept 'var(--shadow-card-hover)' -> dropped '0 12px 40px -8px rgba(13,14,18,.12)'
[root] .feature-card:hover :: transform :: kept 'translateY(-8px)' -> dropped 'translateY(-4px)'
[root] textarea.form-control :: min-height :: kept '100px' -> dropped '120px'
[root] .info-notice :: margin-bottom :: kept '2rem' -> dropped '1.5rem'
[root] .footer :: background :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer :: padding :: kept '4rem 0' -> dropped '4rem 0 2rem'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .reveal :: transition :: kept 'opacity 0.6s ease, transform 0.6s ease' -> dropped 'opacity .6s ease, transform .6s ease'
[root] .footer :: background :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer :: padding :: kept '4rem 0' -> dropped '4rem 0 2rem'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .reveal :: transition :: kept 'opacity 0.6s ease, transform 0.6s ease' -> dropped 'opacity .6s ease, transform .6s ease'
[root] .btn-hero :: color :: kept 'white' -> dropped '#fff'
[root] .btn-hero :: box-shadow :: kept 'var(--shadow-brand)' -> dropped '0 8px 30px -4px rgba(231,57,59,.25)'
[root] .btn-hero:hover :: transform :: kept 'translateY(-2px) scale(1.02)' -> dropped 'scale(1.02)'
[root] .footer :: background :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer :: padding :: kept '4rem 0' -> dropped '4rem 0 2rem'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .btn-hero :: color :: kept 'white' -> dropped '#fff'
[root] .btn-hero :: box-shadow :: kept 'var(--shadow-brand)' -> dropped '0 8px 30px -4px rgba(231,57,59,.25)'
[root] .btn-hero:hover :: transform :: kept 'translateY(-2px) scale(1.02)' -> dropped 'scale(1.02)'
[root] .footer :: background :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer :: padding :: kept '4rem 0' -> dropped '4rem 0 2rem'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .btn-hero :: color :: kept 'white' -> dropped '#fff'
[root] .btn-hero :: box-shadow :: kept 'var(--shadow-brand)' -> dropped '0 8px 30px -4px rgba(231,57,59,.25)'
[root] .btn-hero:hover :: transform :: kept 'translateY(-2px) scale(1.02)' -> dropped 'scale(1.02)'
[root] .footer :: background :: kept 'var(--foreground)' -> dropped 'var(--sl-dark)'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer :: padding :: kept '4rem 0' -> dropped '4rem 0 2rem'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .reveal :: transition :: kept 'opacity 0.6s ease, transform 0.6s ease' -> dropped 'opacity .6s ease, transform .6s ease'
[root] .delay-100 :: transition-delay :: kept '0.1s' -> dropped '.1s'
[root] .delay-200 :: transition-delay :: kept '0.2s' -> dropped '.2s'
[root] .delay-300 :: transition-delay :: kept '0.3s' -> dropped '.3s'
[root] .hero-bg-circle :: opacity :: kept '0.1' -> dropped '.1'
[root] .nav :: z-index :: kept '20' -> dropped '10'
[root] .nav-links a :: color :: kept 'var(--sl-muted)' -> dropped 'var(--muted-foreground)'
[root] .nav-links a:hover :: color :: kept 'var(--sl-dark)' -> dropped 'var(--foreground)'
[root] .nav-hamburger :: width :: kept '40px' -> dropped '2.5rem'
[root] .nav-hamburger :: height :: kept '40px' -> dropped '2.5rem'
[root] .nav-hamburger :: color :: kept 'var(--sl-dark)' -> dropped 'var(--foreground)'
[root] .mobile-menu :: background :: kept 'rgba(255,255,255,.97)' -> dropped 'rgba(255,255,255,0.97)'
[root] .mobile-menu :: border-bottom :: kept '1px solid var(--sl-border)' -> dropped '1px solid var(--border)'
[root] .mobile-menu :: box-shadow :: kept '0 8px 30px -4px rgba(0,0,0,.1)' -> dropped '0 8px 30px -4px rgba(0,0,0,0.1)'
[root] .mobile-menu a :: color :: kept 'var(--sl-dark)' -> dropped 'var(--foreground)'
[root] .mobile-menu a:hover :: background :: kept 'var(--sl-muted-bg)' -> dropped 'var(--muted)'
[root] .hero-content :: padding :: kept '5rem 0 8rem' -> dropped '4rem 0 5rem'
[root] .hero-content :: max-width :: kept '56rem' -> dropped '48rem'
[root] .footer :: color :: kept 'rgba(255, 255, 255, 0.8)' -> dropped 'rgba(255,255,255,.8)'
[root] .footer h4 :: color :: kept 'white' -> dropped '#fff'
[root] .footer-brand p :: font-size :: kept '0.875rem' -> dropped '.875rem'
[root] .footer-brand p :: color :: kept 'rgba(255, 255, 255, 0.6)' -> dropped 'rgba(255,255,255,.6)'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid rgba(255,255,255,.1)'
[root] .btn :: gap :: kept '0.5rem' -> dropped '.5rem'
[root] .btn :: padding :: kept '0.75rem 1.5rem' -> dropped '.75rem 1.5rem'
[root] .btn :: font-size :: kept '0.875rem' -> dropped '.875rem'
[root] .btn :: transition :: kept 'all 0.3s ease' -> dropped 'all .3s ease'
[root] .btn-hero :: color :: kept 'white' -> dropped '#fff'
[root] .btn-hero:hover :: box-shadow :: kept '0 12px 35px -5px hsla(0, 84%, 50%, 0.35)' -> dropped '0 12px 35px -5px hsla(0,84%,50%,0.35)'
[root] .btn-white :: background :: kept 'white' -> dropped '#fff'
[root] .btn-white:hover :: background :: kept 'rgba(255, 255, 255, 0.9)' -> dropped 'hsla(0,0%,100%,0.9)'
[root] .btn-white:hover :: transform :: kept 'translateY(-2px) scale(1.02)' -> dropped 'translateY(-2px)'
[root] .btn svg :: transition :: kept 'transform 0.3s ease' -> dropped 'transform .3s ease'
[root] .hero-content :: padding :: kept '5rem 0 8rem' -> dropped '4rem 0 5rem'
[root] .hero-title :: font-size :: kept '2.25rem' -> dropped '2rem'
[root] .trust-badges :: padding :: kept '2rem 0' -> dropped '1.5rem 0'
[root] .footer-brand p :: font-size :: kept '0.875rem' -> dropped '.875rem'
[root] .footer-brand p :: color :: kept 'rgba(255, 255, 255, 0.6)' -> dropped 'hsla(0,0%,100%,0.6)'
[root] .footer-bottom :: border-top :: kept '1px solid rgba(255, 255, 255, 0.1)' -> dropped '1px solid hsla(0,0%,100%,0.1)'
[root] .footer-bottom :: color :: kept 'rgba(255,255,255,.6)' -> dropped 'hsla(0,0%,100%,0.6)'
[root] .reveal :: transition :: kept 'opacity 0.6s ease, transform 0.6s ease' -> dropped 'opacity .6s ease, transform .6s ease'
*/
