:root {
    --wryt-yellow: #f5c116;
    --wryt-yellow-soft: #ffd85a;
    --wryt-black: #111111;
    --wryt-charcoal: #1d1d1d;
    --wryt-ink: #262626;
    --wryt-cream: #f6f1e5;
    --wryt-cream-strong: #eee4c5;
    --wryt-white: #ffffff;
    --wryt-muted: #726b5b;
    --wryt-border: rgba(17, 17, 17, 0.1);
    --wryt-shadow: 0 28px 70px rgba(17, 17, 17, 0.1);
    --wryt-shadow-soft: 0 18px 40px rgba(17, 17, 17, 0.08);
    --wryt-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.wryt-landing-page {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--wryt-ink);
    background:
        radial-gradient(circle at top left, rgba(245, 193, 22, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.08), transparent 32%),
        var(--wryt-cream);
    overflow-x: hidden;
}

body.wryt-landing-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

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

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

img {
    max-width: 100%;
}

.brand-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 241, 229, 0.94);
    backdrop-filter: blur(8px);
    z-index: 2000;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.brand-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.brand-preloader__mark,
.brand-wordmark__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--wryt-yellow), var(--wryt-yellow-soft));
    color: var(--wryt-black);
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 36px rgba(245, 193, 22, 0.25);
}

.brand-preloader__mark {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    animation: pulseMark 1.4s ease-in-out infinite;
}

.brand-preloader__logo,
.brand-wordmark__logo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
}

.brand-preloader__logo {
    max-height: 42px;
}

@keyframes pulseMark {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.brand-alert-bar {
    background: var(--wryt-black);
    color: var(--wryt-white);
    font-size: 14px;
    padding: 10px 0;
}

.brand-alert-bar i {
    color: var(--wryt-yellow);
    margin-right: 10px;
}

.brand-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 18px 0;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-header.is-sticky {
    padding: 10px 0;
    background: rgba(246, 241, 229, 0.92);
    box-shadow: 0 16px 28px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(14px);
}

.brand-header__shell {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--wryt-shadow-soft);
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-wordmark__copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-wordmark__copy strong {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--wryt-black);
}

.brand-wordmark__copy small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #72683e;
}

.brand-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1 1 auto;
}

.brand-nav-links a {
    position: relative;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.74);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.brand-nav-links a:not(.brand-button):hover,
.brand-nav-links a:not(.brand-button).is-active {
    background: rgba(17, 17, 17, 0.06);
    color: var(--wryt-black);
}

.brand-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--wryt-yellow) 0%, var(--wryt-yellow-soft) 100%);
    color: var(--wryt-black);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 30px rgba(245, 193, 22, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.brand-button:hover,
.brand-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(17, 17, 17, 0.12);
    color: var(--wryt-black);
}

.brand-button--ghost {
    background: transparent;
    border-color: rgba(17, 17, 17, 0.12);
    color: var(--wryt-black);
    box-shadow: none;
}

.brand-button--ghost:hover,
.brand-button--ghost:focus {
    background: var(--wryt-black);
    border-color: var(--wryt-black);
    color: var(--wryt-white);
}

.brand-nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.06);
}

.brand-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto 5px;
    background: var(--wryt-black);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-nav-toggle span:last-child {
    margin-bottom: 0;
}

.brand-hero {
    position: relative;
    padding: 96px 0 70px;
}

.brand-hero::before {
    content: "";
    position: absolute;
    inset: auto auto 0 -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 193, 22, 0.24), transparent 70%);
    filter: blur(8px);
}

.brand-hero__copy {
    max-width: 600px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.06);
    color: #7b6520;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.brand-hero h1,
.section-heading h2,
.editorial-card h3,
.module-card h3,
.feature-card h3,
.workflow-card h3,
.pricing-card h3,
.contact-shell h2,
.brand-form-panel h3,
.cta-ribbon h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--wryt-black);
}

.brand-hero h1 {
    font-size: clamp(2.8rem, 4vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.brand-hero p {
    max-width: 560px;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--wryt-muted);
}

.brand-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.brand-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.brand-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--wryt-ink);
    font-size: 13px;
    font-weight: 700;
}

.hero-stage {
    position: relative;
    perspective: 1400px;
}

.hero-stage__frame {
    position: relative;
    padding: 24px;
    border-radius: 32px;
    background:
        linear-gradient(160deg, rgba(17, 17, 17, 0.98), rgba(31, 31, 31, 0.88)),
        var(--wryt-black);
    box-shadow: 0 40px 80px rgba(17, 17, 17, 0.22);
    transform-style: preserve-3d;
}

.hero-stage__topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-stage__topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hero-stage__topbar span:first-child {
    background: var(--wryt-yellow);
}

.hero-stage__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.hero-stage__panel {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage__panel--primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-stage__panel--secondary {
    align-self: end;
    background: linear-gradient(180deg, rgba(245, 193, 22, 0.24), rgba(255, 255, 255, 0.06));
}

.hero-stage__panel-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.hero-stage__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.hero-stage__stats article {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-stage__stats strong {
    display: block;
    color: var(--wryt-white);
    font-family: "Sora", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.hero-stage__stats span,
.hero-stage__panel--secondary li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.hero-stage__bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 170px;
    margin-top: 26px;
}

.hero-stage__bars span {
    display: block;
    width: 100%;
    max-width: 54px;
    height: var(--bar-size);
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(180deg, var(--wryt-yellow-soft) 0%, rgba(245, 193, 22, 0.44) 100%);
}

.hero-stage__panel--secondary ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hero-stage__panel--secondary li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.hero-stage__panel--secondary i {
    color: var(--wryt-black);
}

.floating-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--wryt-shadow-soft);
    color: var(--wryt-black);
    font-size: 13px;
    font-weight: 800;
    animation: floatNote 5.5s ease-in-out infinite;
}

.floating-note i {
    color: var(--wryt-yellow);
}

.floating-note--one {
    top: -18px;
    right: 34px;
}

.floating-note--two {
    left: -18px;
    bottom: 24px;
    animation-delay: 1.8s;
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.impact-strip {
    padding: 0 0 50px;
}

.impact-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.impact-strip__grid article,
.editorial-card,
.module-card,
.feature-card,
.workflow-card,
.pricing-card,
.brand-form-panel,
.brand-panel,
.faq-shell,
.contact-highlights article {
    border-radius: var(--wryt-radius);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--wryt-shadow-soft);
}

.impact-strip__grid article {
    padding: 26px 28px;
}

.impact-strip__grid span,
.contact-highlights span,
.pricing-card__meta span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #8a7a4a;
}

.impact-strip__grid strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: var(--wryt-black);
}

.brand-section {
    position: relative;
    padding: 96px 0;
}

.brand-section--dark {
    background: linear-gradient(180deg, var(--wryt-black) 0%, #1c1c1c 100%);
}

.brand-section--muted {
    background: rgba(255, 255, 255, 0.32);
}

.brand-section--workflow {
    background:
        radial-gradient(circle at top left, rgba(245, 193, 22, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 100%);
}

.brand-section--pricing {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(255, 255, 255, 0.4));
}

.brand-section--contact {
    padding-top: 80px;
}

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

.section-heading--light h2,
.section-heading--light p {
    color: var(--wryt-white);
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--wryt-muted);
}

.platform-editorial {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.editorial-stack {
    display: grid;
    gap: 24px;
}

.editorial-card {
    padding: 34px;
}

.editorial-card--highlight {
    background: linear-gradient(180deg, rgba(245, 193, 22, 0.18), rgba(255, 255, 255, 0.08));
}

.editorial-card__tag {
    display: inline-flex;
    padding: 8px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #826a1d;
}

.editorial-card h3 {
    font-size: 30px;
    line-height: 1.18;
}

.editorial-card p,
.module-card p,
.feature-card p,
.workflow-card p,
.pricing-card p,
.contact-shell__intro p {
    margin-top: 16px;
    color: var(--wryt-muted);
    font-size: 16px;
    line-height: 1.8;
}

.module-grid,
.feature-grid,
.workflow-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.module-card,
.feature-card,
.workflow-card {
    padding: 30px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.module-card:hover,
.feature-card:hover,
.workflow-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(17, 17, 17, 0.12);
}

.module-card__icon,
.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(245, 193, 22, 0.18);
    color: var(--wryt-black);
    font-size: 24px;
}

.module-card h3,
.feature-card h3,
.workflow-card h3 {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.2;
}

.workflow-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--wryt-black);
    color: var(--wryt-yellow);
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.cta-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding: 28px 30px;
    border-radius: 28px;
    background: var(--wryt-black);
    color: var(--wryt-white);
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.18);
}

.cta-ribbon h3 {
    color: var(--wryt-white);
    font-size: 28px;
}

.cta-ribbon__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-ribbon .brand-button--ghost {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--wryt-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pricing-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wryt-yellow), transparent);
}

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(245, 193, 22, 0.18), rgba(255, 255, 255, 0.88));
    border-color: rgba(245, 193, 22, 0.32);
}

.pricing-card__badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--wryt-black);
    color: var(--wryt-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-card__top p {
    min-height: 84px;
}

.pricing-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-top: 18px;
}

.pricing-card__price strong {
    font-family: "Sora", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--wryt-black);
}

.pricing-card__price small,
.pricing-card__price-old {
    color: var(--wryt-muted);
    font-size: 15px;
    font-weight: 700;
}

.pricing-card__price-old {
    text-decoration: line-through;
}

.pricing-card__meta,
.pricing-card__feature-list,
.sp-summary {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-card__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.pricing-card__meta li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.04);
}

.pricing-card__meta strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    color: var(--wryt-black);
}

.pricing-card__feature-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.pricing-card__feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--wryt-ink);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-card__feature-list i {
    margin-top: 3px;
    color: var(--wryt-yellow);
}

.pricing-card__feature-list .fa-circle {
    color: rgba(17, 17, 17, 0.18);
}

.pricing-card__actions {
    margin-top: 24px;
}

.pricing-card--empty {
    grid-column: 1 / -1;
    text-align: center;
}

.faq-shell {
    padding: 18px;
}

.brand-accordion .accordion-item {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.64);
    margin-bottom: 16px;
}

.brand-accordion .accordion-button {
    padding: 22px 24px;
    background: transparent;
    box-shadow: none;
    font-family: "Sora", sans-serif;
    font-size: 18px;
    color: var(--wryt-black);
}

.brand-accordion .accordion-button:not(.collapsed) {
    background: rgba(245, 193, 22, 0.12);
    color: var(--wryt-black);
}

.brand-accordion .accordion-button::after {
    filter: grayscale(1);
}

.brand-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--wryt-muted);
    line-height: 1.8;
}

.contact-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.contact-shell__intro {
    padding: 16px 10px 16px 0;
}

.contact-highlights {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-highlights article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
}

.contact-highlights i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(245, 193, 22, 0.18);
    color: var(--wryt-black);
    font-size: 18px;
}

.contact-highlights strong {
    display: block;
    font-size: 16px;
    color: var(--wryt-black);
}

.brand-form-panel,
.brand-panel {
    padding: 30px;
}

.brand-form-panel h3,
.brand-panel__header h6 {
    font-size: 28px;
}

.brand-form-panel label,
.brand-modal label {
    display: block;
    margin-bottom: 8px;
    color: var(--wryt-black);
    font-size: 14px;
    font-weight: 700;
}

.brand-form-panel .form-control,
.brand-form-panel .form-select,
.brand-modal .form-control,
.brand-modal .form-select {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    color: var(--wryt-black);
}

.brand-form-panel textarea.form-control,
.brand-modal textarea.form-control {
    min-height: 140px;
    padding-top: 16px;
}

.brand-form-panel .form-control:focus,
.brand-form-panel .form-select:focus,
.brand-modal .form-control:focus,
.brand-modal .form-select:focus {
    border-color: rgba(245, 193, 22, 0.8);
    box-shadow: 0 0 0 4px rgba(245, 193, 22, 0.16);
}

.brand-form-panel__actions,
.brand-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.error {
    display: block;
    margin-top: 8px;
    color: #cb3a2f;
    font-size: 13px;
}

.brand-footer {
    position: relative;
    padding: 28px 0 40px;
    background: var(--wryt-black);
    color: rgba(255, 255, 255, 0.72);
}

.brand-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    padding: 32px 0;
}

.brand-wordmark--footer .brand-wordmark__copy strong,
.brand-footer h4 {
    color: var(--wryt-white);
}

.brand-footer__brand {
    max-width: 440px;
}

.brand-footer__brand p {
    margin-top: 18px;
    line-height: 1.85;
}

.brand-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 30px;
    flex: 1 1 auto;
}

.brand-footer__links h4 {
    margin-bottom: 16px;
    font-family: "Sora", sans-serif;
    font-size: 16px;
}

.brand-footer__links a,
.brand-footer__links span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.brand-footer__links a:hover {
    color: var(--wryt-yellow);
}

.brand-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.brand-footer__bottom a {
    color: var(--wryt-yellow);
    font-weight: 700;
}

.brand-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--wryt-black);
    color: var(--wryt-yellow);
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.brand-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    min-width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #27c467 0%, #0f8f47 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 18px 34px rgba(15, 143, 71, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-whatsapp-float:hover,
.brand-whatsapp-float:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(15, 143, 71, 0.4);
}

.brand-whatsapp-float i {
    font-size: 24px;
}

.brand-modal .modal-content,
.brand-modal {
    border: 0;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(245, 193, 22, 0.14), transparent 28%),
        var(--wryt-cream);
}

.brand-modal .modal-header,
.brand-modal .modal-footer {
    padding: 24px 28px;
    border-color: rgba(17, 17, 17, 0.08);
}

.brand-modal .modal-body {
    padding: 12px 28px 28px;
}

.brand-modal__layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 22px;
}

.sp-summary li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--wryt-ink);
    font-size: 14px;
}

.sp-summary li span {
    color: var(--wryt-black);
    font-weight: 800;
    text-align: right;
}

.sp-summary .total-costs span {
    color: #a76400;
}

.brand-checkbox {
    display: inline-flex !important;
    gap: 10px;
    align-items: center;
}

.brand-checkbox input {
    margin-top: 2px;
}

.brand-terms-body {
    color: var(--wryt-black);
    line-height: 1.8;
}

.select2-container--default .select2-selection--single {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
    color: var(--wryt-black);
    padding-left: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
    right: 12px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
    transform: translateX(-34px);
}

[data-reveal="right"] {
    transform: translateX(34px);
}

[data-reveal="scale"] {
    transform: scale(0.94);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1199px) {
    .hero-stage__content,
    .platform-editorial,
    .contact-shell,
    .brand-modal__layout {
        grid-template-columns: 1fr;
    }

    .module-grid,
    .feature-grid,
    .pricing-grid,
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-strip__grid {
        grid-template-columns: 1fr;
    }

    .brand-footer__top {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .brand-header__shell {
        border-radius: 28px;
    }

    .brand-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-shrink: 0;
    }

    .brand-nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 12px;
        left: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--wryt-shadow);
    }

    .brand-header.is-open .brand-nav-links {
        display: flex;
    }

    .brand-nav-links a {
        width: 100%;
    }

    .brand-hero {
        padding-top: 72px;
    }

    .module-grid,
    .feature-grid,
    .pricing-grid,
    .workflow-grid,
    .brand-footer__links {
        grid-template-columns: 1fr;
    }

    .cta-ribbon {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stage__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .brand-header {
        padding-top: 12px;
    }

    .brand-header__shell {
        padding: 14px;
    }

    .brand-wordmark__mark {
        width: 48px;
        height: 48px;
    }

    .brand-hero h1 {
        font-size: 2.35rem;
    }

    .brand-hero p,
    .section-heading p {
        font-size: 16px;
    }

    .floating-note {
        position: static;
        margin-top: 14px;
        width: fit-content;
    }

    .hero-stage {
        margin-top: 16px;
    }

    .hero-stage__frame,
    .editorial-card,
    .module-card,
    .feature-card,
    .workflow-card,
    .pricing-card,
    .brand-form-panel,
    .brand-panel,
    .faq-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .brand-modal .modal-header,
    .brand-modal .modal-body,
    .brand-modal .modal-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand-footer__bottom {
        flex-direction: column;
    }

    .brand-scroll-top {
        right: 16px;
        bottom: 86px;
    }

    .brand-whatsapp-float {
        left: 16px;
        bottom: 16px;
        padding: 0 16px;
    }
}
