:root {
    --ink: #0b1f20;
    --teal: #0f3d3e;
    --teal-deep: #0a2c2d;
    --teal-mid: #1a5557;
    --sand: #e8dfd0;
    --sand-soft: #f3eee6;
    --paper: #faf8f5;
    --accent: #c45c26;
    --accent-soft: #e8a07a;
    --line: rgba(15, 61, 62, 0.12);
    --muted: rgba(11, 31, 32, 0.62);
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(11, 31, 32, 0.14);
    --radius: 18px;
    --font-display: "Syne", sans-serif;
    --font-body: "Figtree", sans-serif;
    --nav-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mkt {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

.mkt-skip {
    position: absolute;
    left: -9999px;
}

.mkt-skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100;
    background: var(--white);
    padding: 0.5rem 1rem;
}

.mkt-container {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.mkt-container--narrow {
    width: min(720px, calc(100% - 2.5rem));
}

/* Header */
.mkt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(250, 248, 245, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.mkt-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(250, 248, 245, 0.94);
}

.mkt-header__inner {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mkt-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.mkt-logo__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--teal) 0%, var(--teal-mid) 100%);
    color: var(--sand);
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 800;
}

.mkt-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mkt-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s ease;
}

.mkt-nav a:hover,
.mkt-nav a.is-active {
    color: var(--ink);
}

.mkt-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 0.5rem;
}

.mkt-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.25rem;
}

.mkt-lang__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mkt-lang__select {
    appearance: none;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 1.7rem 0.45rem 0.85rem;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%),
        linear-gradient(135deg, var(--teal) 50%, transparent 50%);
    background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.mkt-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mkt-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mkt-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mkt-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mkt-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

.mkt-btn:hover {
    transform: translateY(-1px);
}

.mkt-btn--primary {
    background: var(--accent);
    color: var(--white);
}

.mkt-btn--primary:hover {
    background: #b04f1f;
}

.mkt-btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.mkt-btn--ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.mkt-btn--light {
    background: var(--white);
    color: var(--teal);
}

.mkt-btn--light:hover {
    background: var(--sand-soft);
}

.mkt-btn--teal {
    background: var(--teal);
    color: var(--white);
}

.mkt-btn--teal:hover {
    background: var(--teal-deep);
}

.mkt-link {
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.mkt-link:hover {
    color: var(--accent);
}

/* Hero */
.mkt-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--sand-soft);
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 92, 38, 0.28), transparent 55%),
        radial-gradient(ellipse 60% 50% at 15% 80%, rgba(232, 223, 208, 0.12), transparent 50%),
        linear-gradient(160deg, #071617 0%, var(--teal-deep) 42%, var(--teal) 78%, #1a4a4c 100%);
}

.mkt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
    pointer-events: none;
}

.mkt-hero__glow {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -80px;
    top: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 122, 0.22), transparent 65%);
    animation: mkt-float 9s ease-in-out infinite;
    pointer-events: none;
}

.mkt-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 4.5rem 0 5rem;
    display: grid;
    gap: 2.5rem;
}

.mkt-brand-hero {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 9vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.92;
    margin: 0;
    max-width: 12ch;
}

.mkt-brand-hero span {
    display: block;
    color: var(--accent-soft);
}

.mkt-hero__copy {
    max-width: 34rem;
}

.mkt-hero__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    color: var(--sand);
}

.mkt-hero__copy p {
    margin: 0 0 1.75rem;
    color: rgba(243, 238, 230, 0.78);
    font-size: 1.05rem;
    max-width: 32rem;
}

.mkt-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mkt-hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(243, 238, 230, 0.45);
    animation: mkt-pulse 2.4s ease-in-out infinite;
}

@keyframes mkt-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes mkt-pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}

/* Sections */
.mkt-section {
    padding: 5.5rem 0;
}

.mkt-section--sand {
    background: var(--sand-soft);
}

.mkt-section--teal {
    background: var(--teal);
    color: var(--sand-soft);
}

.mkt-section--ink {
    background: var(--ink);
    color: var(--sand-soft);
}

.mkt-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.mkt-section--teal .mkt-kicker,
.mkt-section--ink .mkt-kicker {
    color: var(--accent-soft);
}

.mkt-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 1rem;
    max-width: 16ch;
}

.mkt-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 38rem;
}

.mkt-section--teal .mkt-lead,
.mkt-section--ink .mkt-lead {
    color: rgba(243, 238, 230, 0.72);
}

.mkt-section__head {
    margin-bottom: 3rem;
}

/* Feature bands */
.mkt-band {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.mkt-band--flip {
    direction: rtl;
}

.mkt-band--flip > * {
    direction: ltr;
}

.mkt-band + .mkt-band {
    margin-top: 4.5rem;
}

.mkt-visual {
    position: relative;
    min-height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(15, 61, 62, 0.92), rgba(26, 85, 87, 0.85)),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.03) 18px,
            rgba(255, 255, 255, 0.03) 19px
        );
    box-shadow: var(--shadow);
}

.mkt-visual--warm {
    background:
        linear-gradient(145deg, #8b3a18, #c45c26 55%, #e8a07a);
}

.mkt-visual--sand {
    background:
        linear-gradient(160deg, #d9cfc0, #f3eee6 50%, #e8dfd0);
}

.mkt-visual__panel {
    position: absolute;
    inset: 12% 10% auto;
    background: rgba(250, 248, 245, 0.96);
    color: var(--ink);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    animation: mkt-rise 0.9s ease both;
}

.mkt-visual__panel h4 {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1rem;
}

.mkt-visual__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.mkt-visual__row strong {
    font-weight: 600;
}

.mkt-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
}

.mkt-visual__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2f9e6e;
}

@keyframes mkt-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.mkt-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.mkt-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
}

.mkt-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent);
    transform: rotate(45deg);
}

/* Steps */
.mkt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.mkt-step {
    counter-increment: step;
}

.mkt-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.mkt-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.mkt-step p {
    margin: 0;
    color: var(--muted);
}

/* Feature grid (features page) */
.mkt-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
}

.mkt-feature h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
}

.mkt-feature p {
    margin: 0;
    color: var(--muted);
}

.mkt-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sand-soft);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Pricing */
.mkt-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.mkt-price {
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.mkt-price--featured {
    background: var(--teal);
    color: var(--sand-soft);
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.mkt-price__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.mkt-price__desc {
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.mkt-price--featured .mkt-price__desc {
    color: rgba(243, 238, 230, 0.7);
}

.mkt-price__amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 0 0.25rem;
}

.mkt-price__amount small {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

.mkt-price__period {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.mkt-price--featured .mkt-price__period {
    color: rgba(243, 238, 230, 0.65);
}

.mkt-price ul {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    flex: 1;
}

.mkt-price li {
    font-size: 0.94rem;
    padding-left: 1.25rem;
    position: relative;
}

.mkt-price li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.mkt-price--featured li::before {
    color: var(--accent-soft);
}

.mkt-price .mkt-btn {
    width: 100%;
}

/* Page hero (inner) */
.mkt-page-hero {
    padding: 4.5rem 0 3rem;
    background:
        linear-gradient(180deg, var(--sand-soft), var(--paper));
    border-bottom: 1px solid var(--line);
}

.mkt-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 1rem;
    max-width: 14ch;
}

.mkt-page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 36rem;
}

/* About */
.mkt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mkt-quote {
    margin: 0;
    padding: 2rem;
    background: var(--teal);
    color: var(--sand-soft);
    border-radius: var(--radius);
}

.mkt-quote p {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0 0 1.25rem;
}

.mkt-quote cite {
    font-style: normal;
    font-size: 0.92rem;
    color: rgba(243, 238, 230, 0.7);
}

/* Contact */
.mkt-contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.mkt-form {
    display: grid;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.mkt-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.mkt-form input,
.mkt-form textarea,
.mkt-form select {
    font: inherit;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    color: var(--ink);
}

.mkt-form input:focus,
.mkt-form textarea:focus,
.mkt-form select:focus {
    outline: 2px solid rgba(15, 61, 62, 0.25);
    border-color: var(--teal);
}

.mkt-form textarea {
    min-height: 140px;
    resize: vertical;
}

.mkt-form__error {
    color: #b42318;
    font-size: 0.85rem;
    font-weight: 500;
}

.mkt-alert {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #e8f5ef;
    color: #0f5132;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mkt-contact__meta {
    display: grid;
    gap: 1.5rem;
}

.mkt-contact__meta h3 {
    font-family: var(--font-display);
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.mkt-contact__meta p {
    margin: 0;
    color: var(--muted);
}

/* CTA strip */
.mkt-cta {
    padding: 4.5rem 0;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 80% at 50% 120%, rgba(196, 92, 38, 0.35), transparent 55%),
        var(--ink);
    color: var(--sand-soft);
}

.mkt-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
}

.mkt-cta p {
    margin: 0 auto 1.75rem;
    max-width: 30rem;
    color: rgba(243, 238, 230, 0.7);
}

.mkt-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Footer */
.mkt-footer {
    background: var(--teal-deep);
    color: rgba(243, 238, 230, 0.75);
    padding: 3.5rem 0 2rem;
}

.mkt-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.mkt-footer__brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sand);
    margin: 0 0 0.75rem;
}

.mkt-footer p {
    margin: 0;
    max-width: 28ch;
    font-size: 0.95rem;
}

.mkt-footer h4 {
    color: var(--sand);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.mkt-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

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

.mkt-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
}

/* Reveal */
.mkt-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.mkt-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Flash */
.mkt-flash {
    background: #e8f5ef;
    color: #0f5132;
    padding: 0.85rem 1rem;
    text-align: center;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .mkt-nav-toggle {
        display: inline-flex;
    }

    .mkt-nav {
        position: fixed;
        inset: var(--nav-h) 0 auto;
        background: rgba(250, 248, 245, 0.98);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.25rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mkt-nav.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .mkt-nav a {
        padding: 0.75rem 0.25rem;
    }

    .mkt-nav__actions {
        margin: 0.75rem 0 0;
        flex-direction: column;
    }

    .mkt-nav__actions .mkt-btn {
        width: 100%;
    }

    .mkt-band,
    .mkt-band--flip,
    .mkt-about-grid,
    .mkt-contact,
    .mkt-pricing,
    .mkt-steps,
    .mkt-feature-grid,
    .mkt-footer__grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .mkt-price--featured {
        transform: none;
    }

    .mkt-hero__inner {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .mkt-visual {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .mkt-brand-hero {
        font-size: clamp(2.8rem, 14vw, 3.6rem);
    }

    .mkt-section {
        padding: 4rem 0;
    }
}

/* Contact form honeypot — keep off-screen, not display:none (some bots skip that). */
.mkt-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mkt-form__success {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: color-mix(in srgb, var(--accent, #0f766e) 12%, transparent);
    color: var(--text, #111);
    margin-bottom: 0.75rem;
}
