:root {
    --primary-blue: #0070C9;
    --primary-green: #31AF4E;
    --light-blue: #2491ED;
    --light-green: #74D33D;
    --dark-green: #07954D;
    --deep-green: #017945;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --border-light: #E5E7EB;
    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
    --gradient-primary: linear-gradient(135deg, #0070C9, #31AF4E);
    --gradient-soft: linear-gradient(135deg, #2491ED, #74D33D);
    --font-sans: "Avenir Next", "Segoe UI Variable", "Helvetica Neue", "Segoe UI", sans-serif;
    --container: 1180px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
}

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 999px;
    z-index: 100;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 48px 0;
}

.section-tight {
    padding-top: 20px;
    padding-bottom: 26px;
}

.section-soft {
    background:
        radial-gradient(circle at top left, rgba(36, 145, 237, 0.08), transparent 42%),
        radial-gradient(circle at bottom right, rgba(116, 211, 61, 0.1), transparent 38%),
        var(--white);
}

.stack-xl > * + * {
    margin-top: 20px;
}

.stack-lg > * + * {
    margin-top: 14px;
}

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

.section-heading.align-left {
    margin-inline: 0;
    text-align: start;
}

.section-heading h2,
.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.15rem, 4vw, 4.35rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.section-heading p,
.section-lead,
.hero-note,
.market-note,
.story-copy p,
.info-card p,
.testimonial-card p,
.blog-card p,
.legal-section p,
.form-intro p,
.footer-brand p {
    color: var(--text-muted);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(36, 145, 237, 0.12);
    color: var(--primary-blue);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--deep-green);
    border-color: var(--deep-green);
    color: var(--white);
}

.button-secondary {
    background: var(--primary-green);
    color: var(--white);
}

.button-outline {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--border-light);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

.site-header .container {
    width: 100%;
    max-width: none;
    padding-inline: 12px;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 72px;
}

.brand,
.brand-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand img,
.brand-footer img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong,
.brand-text small {
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1.18rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-word-tru {
    color: var(--primary-blue);
}

.brand-word-vita {
    color: var(--primary-green);
}

.brand-word-health {
    color: var(--deep-green);
}

.brand-text-footer strong {
    color: rgba(255, 255, 255, 0.92);
}

.brand-text-footer .brand-word-tru {
    color: #8fd0ff;
}

.brand-text-footer .brand-word-vita {
    color: #96f06c;
}

.brand-text-footer .brand-word-health {
    color: var(--white);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: var(--white);
    align-items: center;
    justify-content: center;
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 999px;
}

.site-nav {
    position: absolute;
    inset-inline: 16px;
    top: calc(100% + 10px);
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: none;
}

.site-nav.is-open {
    display: block;
}

.site-nav ul,
.footer-links,
.device-family ul,
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav li + li {
    margin-top: 8px;
}

.site-nav a {
    display: block;
    padding: 10px 6px;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-more details {
    position: relative;
}

.nav-more summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 6px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
}

.nav-more summary::-webkit-details-marker {
    display: none;
}

.nav-more summary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-more details[open] summary svg {
    transform: rotate(180deg);
}

.nav-more-menu {
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--white);
    width: min(100%, 100%);
    max-width: min(320px, calc(100vw - 32px));
}

.nav-more-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    white-space: normal;
    word-break: break-word;
}

.site-nav a.is-active,
.site-nav a:hover,
.nav-more summary.is-active,
.nav-more summary:hover,
.inline-link:hover {
    color: var(--deep-green);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
}

.site-nav-actions .language-switcher {
    flex: 0 0 auto;
}

.site-nav-actions .button {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
}

.site-nav-actions .language-switcher summary,
.site-nav-actions .button {
    width: 100%;
    justify-content: center;
}

.button-header-cta {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: none;
}

.site-nav .button-header-cta,
.site-nav .button-header-cta:visited {
    color: var(--white);
}

.button-header-cta:hover {
    background: var(--deep-green);
    border-color: var(--deep-green);
    color: var(--white);
}

.language-switcher {
    position: relative;
}

.language-switcher summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher svg {
    width: 16px;
    height: 16px;
}

.language-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(0, 112, 201, 0.1);
    color: var(--primary-blue);
    font-size: 0.76rem;
    line-height: 1;
}

.language-menu {
    position: absolute;
    inset-inline-end: 0;
    top: calc(100% + 10px);
    width: min(260px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 4px;
    z-index: 40;
}

.language-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text-muted);
    white-space: normal;
    word-break: break-word;
}

.language-menu a:hover,
.language-menu a.is-active {
    background: rgba(1, 121, 69, 0.08);
    color: var(--deep-green);
}

.hero-home {
    position: relative;
    padding: 54px 0 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(36, 145, 237, 0.16), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(116, 211, 61, 0.18), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f5fbff 52%, var(--bg-light) 100%);
}

.hero-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 18px;
}

.hero-note,
.market-note {
    max-width: 620px;
}

.hero-metrics,
.hero-stats,
.card-grid,
.chip-row {
    display: grid;
    gap: 16px;
}

.hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.metric-card,
.mini-card,
.info-card,
.story-card,
.testimonial-card,
.blog-card,
.form-card,
.legal-shell,
.device-frame {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.metric-card,
.mini-card {
    padding: 18px;
}

.metric-card strong,
.device-score strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-card span,
.mini-card span,
.device-family li span,
.blog-meta,
.legal-meta,
.footer-bottom,
.meta-copy {
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.device-frame {
    width: min(100%, 430px);
    padding: 22px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(36, 145, 237, 0.08), rgba(116, 211, 61, 0.04)),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.device-topbar,
.device-score,
.device-family li,
.blog-meta,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.device-topbar {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.device-score {
    align-items: flex-end;
    padding: 24px;
    border-radius: 24px;
    background: var(--gradient-primary);
    color: var(--white);
    margin-bottom: 18px;
}

.device-score small {
    display: block;
    opacity: 0.92;
    margin-bottom: 4px;
}

.device-score strong {
    font-size: 3rem;
    margin-bottom: 0;
}

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

.mini-card strong {
    display: block;
    margin-top: 8px;
}

.device-family {
    margin-top: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(1, 121, 69, 0.04);
}

.device-family li + li {
    margin-top: 12px;
}

.page-hero {
    padding: 38px 0 12px;
}

.page-hero-shell {
    display: grid;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background:
        radial-gradient(circle at top left, rgba(36, 145, 237, 0.14), transparent 36%),
        radial-gradient(circle at bottom right, rgba(116, 211, 61, 0.14), transparent 32%),
        var(--white);
}

.hero-stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card-grid-three {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card-grid-four {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.info-card,
.testimonial-card,
.blog-card {
    padding: 24px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.story-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 112, 201, 0.24);
}

.info-card h2,
.info-card h3,
.story-copy h2,
.cta-banner h2,
.legal-section h2,
.blog-card h2,
.form-intro h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.icon-chip {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 16px;
    background: var(--gradient-soft);
    color: var(--white);
}

.icon-chip svg {
    width: 24px;
    height: 24px;
}

.icon-chip-large {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    margin-bottom: 20px;
}

.story-card {
    padding: 28px;
}

.story-card-large {
    display: grid;
    gap: 24px;
}

.article-shell {
    max-width: 920px;
}

.article-shell p,
.article-card .story-copy p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.03rem;
}

.article-shell p + p,
.article-card .story-copy p + p {
    margin-top: 16px;
}

.article-card {
    gap: 20px;
}

.bullet-list {
    display: grid;
    gap: 10px;
}

.bullet-list li {
    position: relative;
    padding-inline-start: 22px;
    color: var(--text-muted);
}

.bullet-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    inset-inline-start: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-green);
}

.inline-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary-blue);
    font-weight: 700;
}

.testimonial-card strong,
.blog-card .section-badge {
    display: block;
    margin-top: 18px;
}

.faq-shell {
    display: grid;
    gap: 26px;
}

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

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--white);
    padding: 18px 20px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--text-muted);
}

.cta-banner {
    display: grid;
    gap: 20px;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 112, 201, 0.18);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 32%),
        var(--gradient-primary);
    color: var(--white);
}

.cta-banner p,
.cta-banner .section-badge {
    color: rgba(255, 255, 255, 0.92);
}

.cta-banner a {
    color: var(--white);
}

.cta-banner .section-badge {
    background: rgba(255, 255, 255, 0.16);
}

.cta-meta {
    margin-top: 12px;
}

.cta-banner .button-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-section {
    display: grid;
    gap: 28px;
    align-items: start;
}

.form-intro.compact {
    margin-bottom: 20px;
}

.form-card {
    padding: 24px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-grid label span {
    font-size: 0.95rem;
}

.full-span {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: #fbfdff;
    padding: 14px 16px;
    color: var(--text-dark);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0, 112, 201, 0.45);
    box-shadow: 0 0 0 4px rgba(36, 145, 237, 0.08);
}

.field-error {
    color: #dc2626;
    font-size: 0.9rem;
}

.disclaimer-copy {
    font-size: 0.96rem;
}

.chip-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
    margin-bottom: 24px;
}

.soft-chip {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-muted);
    font-weight: 600;
}

.blog-meta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.contact-direct-card h2 {
    margin-bottom: 12px;
    word-break: break-word;
}

.contact-direct-card .button {
    margin-top: 18px;
}

.legal-shell {
    padding: 28px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.legal-section + .legal-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.site-footer {
    padding: 44px 0 18px;
    background: var(--deep-green);
    color: rgba(255, 255, 255, 0.95);
}

.site-footer .container {
    width: 100%;
    max-width: none;
    padding-inline: 12px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-contact-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a,
.footer-bottom a,
.footer-brand p {
    color: var(--white);
}

.footer-links a,
.footer-bottom a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 4px 8px;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--white);
    background: rgba(1, 121, 69, 0.7);
}

.footer-disclaimer {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    flex-wrap: wrap;
    color: var(--white);
}

.footer-bottom-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

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

.flash-wrap {
    padding-top: 18px;
}

.flash-card {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    background: var(--white);
}

.flash-card + .flash-card {
    margin-top: 12px;
}

.flash-success {
    border-color: rgba(49, 175, 78, 0.22);
    background: rgba(116, 211, 61, 0.08);
}

.flash-error {
    border-color: rgba(220, 38, 38, 0.18);
    background: rgba(220, 38, 38, 0.05);
}

body.rtl {
    direction: rtl;
}

body.rtl .bullet-list li::before {
    inset-inline-start: auto;
    inset-inline-end: 0;
}

body.rtl .bullet-list li {
    padding-inline-start: 0;
    padding-inline-end: 22px;
}

@media (min-width: 768px) {
    .hero-metrics,
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .form-section,
    .contact-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .cta-banner {
        grid-template-columns: 1.3fr auto;
        align-items: center;
    }

    .story-card-large {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }

    .page-hero-shell {
        grid-template-columns: 1.25fr 0.75fr;
        align-items: end;
    }
}

@media (max-width: 420px) {
    .hero-metrics {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (min-width: 1180px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        inset: auto;
        width: auto;
        flex: 0 1 auto;
        margin-inline-start: auto;
    }

    .site-nav ul {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 4px;
    }

    .site-nav li + li {
        margin-top: 0;
    }

    .site-nav a {
        padding: 10px 12px;
        font-size: 0.92rem;
        white-space: nowrap;
        border-radius: 999px;
    }

    .nav-more summary {
        padding: 10px 12px;
        font-size: 0.92rem;
        white-space: nowrap;
        border-radius: 999px;
    }

    .nav-more-menu {
        position: absolute;
        inset-inline-end: 0;
        top: calc(100% + 10px);
        min-width: 230px;
        box-shadow: var(--shadow-soft);
        z-index: 30;
    }

    .site-nav-actions {
        margin-top: 0;
        justify-content: flex-end;
        margin-inline-start: 0;
        gap: 8px;
        padding-inline-start: 14px;
        border-inline-start: 1px solid var(--border-light);
    }

    .site-nav-actions .language-switcher,
    .site-nav-actions .button {
        flex: 0 0 auto;
    }

    .site-nav-actions .language-switcher summary,
    .site-nav-actions .button {
        width: auto;
    }

    .site-nav-actions .button {
        padding: 10px 16px;
        font-size: 0.92rem;
    }

    .site-nav-actions .language-switcher summary {
        padding: 9px 10px;
        font-size: 0.9rem;
    }

    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }

    .card-grid-three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid-four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.45fr 0.8fr 0.8fr 0.8fr;
    }
}
