/*==================================================
                RESET
==================================================*/

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #101828;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.consent-open {
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

ul {
    list-style: none;
}

/*==================================================
            VARIABLES
==================================================*/

:root {
    --primary: #2457e6;
    --primary-dark: #173ea8;
    --primary-soft: #eef4ff;
    --accent: #0f9f8f;
    --accent-soft: #e8faf6;
    --warning: #f4a62a;
    --text: #101828;
    --muted: #667085;
    --soft: #f7f9fc;
    --line: #e6eaf0;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(16, 24, 40, .10);
    --shadow-soft: 0 10px 28px rgba(16, 24, 40, .07);
    --shadow-hover: 0 20px 44px rgba(16, 24, 40, .13);
    --radius: 8px;
    --transition: .28s ease;
}

/*==================================================
            GENERAL
==================================================*/

.container {
    width: min(1120px, 92%);
    margin: auto;
}

.section {
    padding: 96px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 9px 13px;
    border-radius: 999px;
}

.section-heading h2,
.about-content h2,
.testimonial-copy h2,
.contact-content h2 {
    color: var(--text);
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-top: 18px;
}

.section-heading p,
.about-content p,
.contact-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 16px;
}

.btn-primary,
.btn-secondary,
.btn-header {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 15px 28px;
    border: 1px solid var(--primary);
    box-shadow: 0 14px 30px rgba(36, 87, 230, .24);
}

.btn-primary:hover,
.btn-header:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(36, 87, 230, .30);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 15px 26px;
    border: 1px solid #b8c7ff;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-2px);
}

/*==================================================
                HEADER
==================================================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
    z-index: 999;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.header.active {
    border-color: rgba(230, 234, 240, .95);
    box-shadow: 0 12px 28px rgba(16, 24, 40, .07);
}

.navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.logo img,
.footer-logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex: 0 0 46px;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-profile {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    border-left: 1px solid var(--line);
    padding-left: 14px;
    transition: color var(--transition), transform var(--transition);
}

.nav-profile:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-profile-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid #d8e2ff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.nav-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-profile-copy small,
.nav-profile-copy strong {
    display: block;
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-profile-copy small {
    color: var(--muted);
    font-size: 9px;
}

.nav-profile-copy strong {
    color: var(--text);
    font-size: 11px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu li a {
    position: relative;
    color: #182033;
    font-size: 15px;
    font-weight: 600;
    transition: color var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.nav-menu li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
}

.nav-cta-mobile {
    display: none;
}

.btn-header {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    padding: 13px 22px;
}

.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

/*==================================================
                HERO
==================================================*/

.hero {
    padding: 118px 0 34px;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f7f9fc 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(410px, .94fr);
    align-items: center;
    gap: 48px;
}

.hero-content {
    animation: left .8s ease both;
}

.hero-content h1 {
    margin-top: 18px;
    color: var(--text);
    font-size: clamp(44px, 4vw, 58px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-content h1 span {
    color: var(--primary);
    display: inline;
}

.hero-content p {
    max-width: 590px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 18px 0 24px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin-top: 22px;
}

.hero-proof div {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
}

.hero-proof strong {
    display: block;
    color: var(--text);
    font-size: 19px;
    line-height: 1.2;
}

.hero-proof span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    animation: right .8s ease both;
}

.hero-image {
    position: relative;
    border: 1px solid rgba(230, 234, 240, .9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-image img {
    aspect-ratio: 601 / 390;
    object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-image img {
        animation: hero-image-drift 8s ease-in-out infinite alternate;
    }
}

.result-card {
    position: absolute;
    left: -28px;
    bottom: 28px;
    width: min(230px, 58%);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-soft);
}

.result-card span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.result-card strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    line-height: 1.35;
    margin-top: 4px;
}

/*==================================================
            TRUST STRIP
==================================================*/

.trust-strip {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

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

.trust-grid span {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #344054;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/*==================================================
            SERVICES
==================================================*/

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.project-card,
.process-step,
.testimonial-card,
.contact-form,
.about-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card {
    padding: 28px 22px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #c8d4ff;
    box-shadow: var(--shadow);
}

.service-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
    font-size: 19px;
}

.service-card h3 {
    color: var(--text);
    font-size: 19px;
    line-height: 1.35;
    margin: 22px 0 10px;
}

.service-card p,
.project-body p,
.process-step p,
.about-item p,
.testimonial-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.service-card-accent {
    border-color: #bce7df;
    background: #f4fcfa;
}

.service-card-accent i {
    color: var(--accent);
    background: var(--accent-soft);
}

/*==================================================
            WORK MODELS
==================================================*/

.work-models {
    background: #101828;
}

.work-models .section-heading h2 {
    color: var(--white);
}

.work-models .section-heading p {
    color: #b7c0d1;
}

.work-models .section-kicker {
    color: #8daaff;
    background: rgba(36, 87, 230, .18);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.model-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 34px;
    border: 1px solid #344054;
    border-radius: var(--radius);
    background: #172033;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
}

.model-featured {
    border-color: #5377eb;
    background: #182544;
}

.model-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.model-heading > span {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius);
    font-size: 21px;
    font-weight: 800;
}

.model-heading small {
    display: block;
    color: #8daaff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.model-heading h3 {
    color: var(--white);
    font-size: 25px;
    line-height: 1.25;
    margin-top: 3px;
}

.model-card > p {
    color: #c5ccda;
    font-size: 15px;
    line-height: 1.75;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #eef2f8;
    font-size: 14px;
    line-height: 1.6;
}

.feature-list i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8de0d4;
    background: rgba(15, 159, 143, .18);
    border-radius: 50%;
    font-size: 10px;
    margin-top: 1px;
}

.model-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding: 16px;
    border: 1px solid rgba(141, 170, 255, .25);
    border-radius: var(--radius);
    background: rgba(10, 16, 29, .34);
}

.model-note i {
    color: #8daaff;
    font-size: 18px;
}

.model-note span {
    color: #c5ccda;
    font-size: 13px;
    line-height: 1.55;
}

/*==================================================
            ABOUT
==================================================*/

.about {
    background: var(--soft);
}

.about-grid,
.contact-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 56px;
}

.about-content p {
    margin-bottom: 26px;
}

.about-content p + p {
    margin-top: -10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.about-panel {
    padding: 14px;
}

.about-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
}

.about-item + .about-item {
    border-top: 1px solid var(--line);
}

.about-item span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: var(--radius);
    font-weight: 800;
}

.about-item h3 {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 6px;
}

/*==================================================
            PORTFOLIO
==================================================*/

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.project-card {
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.project-card:focus-visible {
    outline: 3px solid rgba(36, 87, 230, .28);
    outline-offset: 4px;
}

.project-preview {
    min-height: 210px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.project-preview-real {
    padding: 0;
    background: #dfe4eb;
}

.project-preview-real::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 15px;
    z-index: 3;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff605c;
    box-shadow: 12px 0 #ffbd44, 24px 0 #00ca4e;
}

.project-preview-real::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, .14);
    opacity: 0;
    transition: opacity var(--transition);
}

.project-preview-real img {
    width: 100%;
    min-height: 210px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .75, .25, 1), filter .35s ease;
}

.project-card:hover .project-preview-real img,
.project-card:focus-visible .project-preview-real img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.02);
}

.project-card:hover .project-preview-real::after,
.project-card:focus-visible .project-preview-real::after {
    opacity: 1;
}

.project-open {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: var(--radius);
    padding: 10px 13px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), background var(--transition);
}

.project-card:hover .project-open,
.project-card:focus-visible .project-open {
    transform: translateY(-4px);
    background: var(--white);
}

.preview-blue {
    background: #eaf0ff;
}

.preview-green {
    background: #e8faf6;
}

.preview-amber {
    background: #fff5df;
}

.preview-nav,
.preview-title,
.preview-lines {
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .08);
}

.preview-nav {
    width: 78%;
    height: 20px;
}

.preview-title {
    width: 58%;
    height: 54px;
    margin-top: 34px;
}

.preview-lines {
    width: 82%;
    height: 68px;
    margin: 14px 0 0 auto;
}

.project-body {
    padding: 22px;
}

.project-body span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.project-body h3 {
    color: var(--text);
    font-size: 20px;
    line-height: 1.35;
    margin: 8px 0 10px;
}

.project-card[hidden] {
    display: none;
}

.portfolio-filters {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: -14px 0 34px;
}

.portfolio-filters label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.portfolio-filters select {
    min-width: 180px;
    min-height: 44px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 9px 12px;
}

.portfolio-filters > span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 800;
}

/*==================================================
            INTERACTIVE TOOLS
==================================================*/

.tool-suite {
    background: #f7f9fc;
}

.tool-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.tool-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
}

.tool-tab {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--muted);
    background: var(--white);
    border: 0;
    border-right: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.tool-tab:last-child {
    border-right: 0;
}

.tool-tab.active {
    color: var(--primary);
    background: var(--primary-soft);
    box-shadow: inset 0 -3px var(--primary);
}

.tool-tab i {
    font-size: 15px;
}

.tool-panel {
    min-height: 370px;
    display: grid;
    grid-template-columns: .72fr 1.08fr .8fr;
    align-items: center;
    gap: 34px;
    padding: 38px;
}

.tool-panel[hidden] {
    display: none;
}

.tool-copy h3 {
    color: var(--text);
    font-size: 27px;
    line-height: 1.25;
    margin-top: 13px;
}

.tool-copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
}

.tool-number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 800;
}

.compact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.compact-form label {
    display: grid;
    gap: 6px;
    color: #344054;
    font-size: 11px;
    font-weight: 700;
}

.compact-form input,
.compact-form select {
    width: 100%;
    min-height: 45px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 9px 11px;
    outline: 0;
}

.compact-form input:focus,
.compact-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(36, 87, 230, .1);
}

.compact-form .btn-primary {
    min-height: 45px;
    align-self: end;
    cursor: pointer;
}

.tool-panel[data-tool-panel="booking"] .compact-form {
    grid-column: span 2;
}

.tool-result,
.price-output,
.comparison-output {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.tool-result strong,
.price-output strong,
.comparison-output > strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 7px;
}

.tool-panel[data-tool-panel="quiz"] {
    min-height: 500px;
}

.tool-panel[data-tool-panel="quiz"] .compact-form .btn-primary {
    grid-column: 1 / -1;
}

.quiz-result {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #f7f9ff, #ffffff);
}

.result-placeholder {
    display: grid;
    justify-items: start;
    gap: 12px;
}

.result-placeholder i {
    color: var(--primary);
    font-size: 22px;
}

.quiz-label {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.quiz-result > p {
    margin-bottom: 12px;
}

.quiz-concept {
    display: grid;
    gap: 3px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.quiz-concept b {
    color: var(--text);
    font-size: 11px;
}

.quiz-concept span {
    font-size: 11px;
    line-height: 1.55;
}

.quiz-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    margin-top: 9px;
}

.mode-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.mode-switch button {
    min-height: 48px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.mode-switch button.active {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 5px 16px rgba(16, 24, 40, .08);
}

.comparison-output > p {
    margin-bottom: 15px;
}

.comparison-output > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--line);
}

.comparison-output b {
    color: var(--text);
    text-align: right;
}

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

.range-label output {
    color: var(--primary);
    font-weight: 800;
}

.compact-form input[type="range"] {
    min-height: 24px;
    padding: 0;
    accent-color: var(--primary);
}

.check-label {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 9px !important;
}

.check-label input {
    width: 17px;
    min-height: 17px;
    accent-color: var(--primary);
}

.price-output > span,
.price-output small {
    display: block;
}

.price-output strong {
    color: var(--primary);
    font-size: 27px;
    margin: 6px 0;
}

.price-output small {
    font-size: 11px;
}

.before-after {
    grid-column: span 2;
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #dce2e9;
}

.before-view,
.after-view {
    position: absolute;
    inset: 0;
    padding: 25px;
}

.before-view > span,
.after-view > span {
    position: relative;
    z-index: 3;
    display: inline-flex;
    color: var(--white);
    background: rgba(16, 24, 40, .82);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
}

.before-view {
    background: #d8dde3;
}

.after-view {
    width: 50%;
    overflow: hidden;
    background: #15213a;
    border-right: 3px solid var(--white);
}

.old-site,
.new-site {
    position: absolute;
    inset: 55px 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.old-site {
    align-items: center;
    color: #20252b;
    background: #f3f3f3;
    border: 5px ridge #8b8b8b;
    font-family: Arial, sans-serif;
    text-align: center;
}

.old-site b {
    color: #b42318;
    font-size: 28px;
}

.old-site button {
    color: #0000ee;
    background: #d4d4d4;
    border: 2px outset #fff;
    margin-top: 15px;
    padding: 5px 18px;
}

.new-site {
    min-width: 520px;
    align-items: flex-start;
    color: var(--white);
    background: #2457e6;
    padding: 35px;
}

.new-site small {
    color: #b9fff4;
    font-weight: 800;
}

.new-site b {
    max-width: 430px;
    font-size: 30px;
    line-height: 1.16;
    margin: 11px 0 19px;
}

.new-site i {
    font-style: normal;
    font-weight: 700;
}

.before-after > input {
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 13px;
    z-index: 5;
    width: 92%;
    accent-color: var(--warning);
}

.portal-teaser {
    max-width: 760px;
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    align-items: center;
    gap: 15px;
    margin: 22px auto 0;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition);
}

.portal-teaser:hover {
    transform: translateY(-3px);
    border-color: #b9c8ff;
}

.portal-teaser > i:first-child {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: var(--radius);
}

.portal-teaser strong,
.portal-teaser small {
    display: block;
}

/*==================================================
            COMMUNITY
==================================================*/

.community-reviews {
    margin-top: 24px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.community-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.community-reviews-head h3 {
    color: var(--text);
    font-size: 25px;
    margin-top: 12px;
}

.public-rating {
    min-width: 122px;
    text-align: center;
    padding: 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.public-rating strong,
.public-rating span {
    display: block;
}

.public-rating strong {
    color: var(--text);
    font-size: 26px;
}

.public-rating span {
    color: var(--muted);
    font-size: 9px;
}

.public-rating i,
.public-review-stars {
    color: #f0a500;
}

.public-reviews-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.public-review-card {
    min-width: 0;
    padding: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.public-review-author {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
}

.community-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.community-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-review-author strong,
.public-review-author span {
    display: block;
}

.public-review-author strong {
    overflow: hidden;
    color: var(--text);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-review-stars {
    font-size: 10px;
    letter-spacing: 1px;
}

.public-review-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: #475467;
    font-size: 11px;
    line-height: 1.65;
    margin-top: 13px;
}

.community-empty {
    grid-column: 1 / -1;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--muted);
    background: var(--soft);
    border: 1px dashed #cfd6e2;
    border-radius: var(--radius);
    text-align: center;
    font-size: 12px;
}

.community-empty i {
    color: var(--primary);
    font-size: 22px;
}

.community-empty strong {
    color: var(--text);
}

.reviews-account-link {
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    gap: 12px;
    color: var(--text);
    border-top: 1px solid var(--line);
    margin-top: 20px;
    padding-top: 18px;
}

.reviews-account-link > i:first-child {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
}

.reviews-account-link strong,
.reviews-account-link small {
    display: block;
}

.reviews-account-link strong {
    font-size: 12px;
}

.reviews-account-link small {
    color: var(--muted);
    font-size: 10px;
    margin-top: 2px;
}

.community-pages {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.community-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.community-stats span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #344054;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .05);
}

.community-stats i {
    color: var(--primary);
}

.publish-layout {
    max-width: 900px;
    margin: 0 auto 34px;
}

.publish-access {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.publish-access > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
}

.publish-access strong,
.publish-access span {
    display: block;
}

.publish-access strong {
    color: var(--text);
    font-size: 13px;
}

.publish-access span {
    color: var(--muted);
    font-size: 11px;
    margin-top: 3px;
}

.publish-access a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.publish-form {
    display: grid;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.publish-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.publish-form-head > div:first-child span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.publish-form-head h3 {
    color: var(--text);
    font-size: 24px;
    margin-top: 4px;
}

.publish-form-head p {
    max-width: 520px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 7px;
}

.publisher-mini {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
}

.publish-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.publish-fields label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-size: 11px;
    font-weight: 700;
}

.publish-fields input,
.publish-fields textarea {
    width: 100%;
    color: var(--text);
    background: var(--white);
    border: 1px solid #d6dce6;
    border-radius: var(--radius);
    outline: 0;
    padding: 12px;
}

.publish-fields input {
    min-height: 46px;
}

.publish-fields textarea {
    min-height: 104px;
    resize: vertical;
}

.publish-fields input:focus,
.publish-fields textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(36, 87, 230, .1);
}

.publish-description {
    grid-column: 1 / -1;
}

.banner-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.banner-field > span {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    background: var(--white);
    border: 1px dashed #9cb1f4;
    border-radius: var(--radius);
    cursor: pointer;
}

.banner-preview {
    aspect-ratio: 16 / 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    color: var(--muted);
    background: #e9edf4;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 11px;
}

.banner-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-preview i {
    color: var(--primary);
    font-size: 24px;
}

.publish-form .btn-primary {
    justify-self: start;
    border: 0;
    cursor: pointer;
}

.community-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.community-page-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.community-page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px rgba(255, 255, 255, .8);
}

.community-page-banner {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e9edf4;
}

.community-page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.community-page-card:hover .community-page-banner img {
    transform: scale(1.035);
}

.community-page-body {
    padding: 18px;
}

.community-page-author {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
}

.community-page-author b {
    color: var(--text);
}

.community-page-body h3 {
    color: var(--text);
    font-size: 19px;
    margin: 15px 0 6px;
}

.community-page-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.community-page-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    margin-top: 14px;
}

.community-page-meta {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    margin-top: 12px;
}

.community-empty-pages {
    min-height: 260px;
    align-items: stretch;
    padding: 24px;
    background: linear-gradient(145deg, #ffffff, #f4f7ff);
}

.community-empty-pages > div:first-child {
    display: grid;
    justify-items: center;
    gap: 7px;
    margin-bottom: 18px;
}

.empty-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.empty-showcase span {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    text-align: left;
    box-shadow: 0 14px 28px rgba(16, 24, 40, .12);
}

.empty-showcase b {
    display: block;
    font-size: 12px;
}

.empty-showcase small {
    display: block;
    font-size: 9px;
    opacity: .82;
    margin-top: 2px;
}

.empty-showcase span:nth-child(1) {
    background: linear-gradient(145deg, #2457e6, #0f9f8f);
}

.empty-showcase span:nth-child(2) {
    background: linear-gradient(145deg, #101828, #2457e6);
}

.empty-showcase span:nth-child(3) {
    background: linear-gradient(145deg, #0f9f8f, #f4a62a);
}

.portal-teaser small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

/*==================================================
            PROCESS
==================================================*/

.process {
    background: var(--soft);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-step {
    padding: 24px;
}

.process-step span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--text);
    border-radius: var(--radius);
    font-weight: 800;
}

.process-step h3 {
    color: var(--text);
    font-size: 19px;
    margin: 22px 0 8px;
}

.process-step small {
    display: inline-flex;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 10px;
    font-weight: 800;
    margin-top: 14px;
}

.process-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    margin-top: 24px;
}

.process-facts > div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 18px;
}

.process-facts i {
    color: var(--accent);
}

.process-facts strong {
    display: block;
    color: var(--text);
    font-size: 12px;
}

.process-facts span {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

/*==================================================
            TESTIMONIAL
==================================================*/

.testimonials {
    background: #101828;
    color: var(--white);
}

.testimonial-copy h2,
.testimonial-card p,
.testimonial-card strong {
    color: var(--white);
}

.testimonial-copy .section-kicker {
    color: #064e45;
    background: #c9fff3;
}

.testimonial-card {
    padding: 34px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none;
}

.testimonial-card i {
    color: var(--warning);
    font-size: 28px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.75;
    margin: 20px 0 24px;
}

.testimonial-card span {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    margin-top: 4px;
}

/*==================================================
            CONTACT
==================================================*/

.contact {
    background: var(--white);
}

.contact-grid {
    align-items: start;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #344054;
    font-weight: 600;
}

.contact-points i {
    color: var(--accent);
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact-actions .btn-secondary {
    min-height: 46px;
    cursor: pointer;
}

.icon-action {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--text);
    border-radius: var(--radius);
    font-size: 19px;
}

.requires-config.is-disabled {
    opacity: .42;
    cursor: not-allowed;
}

.contact-form {
    display: grid;
    gap: 17px;
    padding: 28px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7dce5;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    outline: none;
    padding: 14px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form textarea {
    resize: vertical;
    min-height: 118px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(36, 87, 230, .12);
}

.contact-form .btn-primary {
    border: 0;
    cursor: pointer;
}

.contact-form .btn-primary:disabled {
    cursor: default;
    opacity: .82;
    transform: none;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-status {
    min-height: 24px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin-top: 2px;
}

.form-status.success {
    color: #067668;
}

.form-status.error {
    color: #b42318;
}

/*==================================================
            FOOTER
==================================================*/

.footer {
    background: #0b1220;
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    color: var(--white);
}

.footer p {
    max-width: 520px;
    color: rgba(255, 255, 255, .70);
    line-height: 1.75;
    margin-top: 14px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .76);
    font-weight: 600;
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
    padding-top: 24px;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 850;
    display: grid;
    gap: 9px;
}

.floating-cta {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 16px 32px rgba(15, 159, 143, .30);
    transition: transform var(--transition), background var(--transition);
}

.floating-cta:hover {
    background: #087f73;
    transform: translateY(-3px);
}

.floating-whatsapp {
    background: #168a63;
}

.floating-instagram {
    background: #c13584;
}

/*==================================================
            TERMS CONSENT
==================================================*/

.terms-consent[hidden] {
    display: none;
}

.terms-consent {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.terms-consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, .72);
    backdrop-filter: blur(8px);
}

.terms-consent-dialog {
    position: relative;
    width: min(580px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.consent-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: var(--radius);
    font-size: 21px;
    margin-bottom: 18px;
}

.terms-consent-dialog h2 {
    color: var(--text);
    font-size: 30px;
    line-height: 1.22;
    margin-top: 18px;
}

.terms-consent-dialog p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-top: 16px;
}

.consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.consent-actions button {
    cursor: pointer;
}

.terms-consent-dialog small {
    display: block;
    color: #8a94a6;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 18px;
}

/*==================================================
            LEGAL PAGE
==================================================*/

.legal-page {
    background: var(--soft);
}

.legal-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.legal-nav .container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.legal-back {
    min-height: 46px;
    padding: 10px 18px;
}

.legal-hero {
    padding: 82px 0;
    background: #101828;
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    align-items: center;
    gap: 60px;
}

.legal-hero h1 {
    max-width: 740px;
    color: var(--white);
    font-size: clamp(48px, 7vw, 80px);
    line-height: 1.02;
    margin-top: 20px;
}

.legal-hero h1 span {
    color: #6f91ff;
}

.legal-hero p {
    max-width: 720px;
    color: #c5ccda;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 22px;
}

.legal-hero-grid > i {
    color: #6f91ff;
    font-size: 112px;
    text-align: center;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.legal-summary {
    position: sticky;
    top: 28px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.legal-summary strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    line-height: 1.35;
}

.legal-summary p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 12px 0 20px;
}

.legal-accept {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.legal-contact-link {
    margin-top: 18px;
}

.terms-list {
    display: grid;
    gap: 12px;
}

.term-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.term-item > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: var(--radius);
    font-weight: 800;
}

.term-item h2,
.legal-promises h2 {
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 7px;
}

.term-item p,
.legal-promises p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.legal-promises {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.legal-promises article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 28px;
    border: 1px solid #344054;
    border-radius: var(--radius);
    background: #101828;
}

.legal-promises i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8daaff;
    background: rgba(36, 87, 230, .18);
    border-radius: var(--radius);
    font-size: 20px;
}

.legal-promises h2 {
    color: var(--white);
}

.legal-promises p {
    color: #c5ccda;
}

.legal-footer {
    padding-top: 0;
}

.legal-footer a {
    color: #9fb4f6;
    font-weight: 700;
}

/*==================================================
            ANIMACION
==================================================*/

@keyframes left {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes right {
    from {
        opacity: 0;
        transform: translateX(48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-image-drift {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.035);
    }
}
