:root {
    --navy: #1b3a57;
    --navy-light: #234668;
    --navy-dark: #122840;
    --gold: #c9a227;
    --gold-light: #d9b84a;
    --gold-dark: #a8871f;
    --gold-glow: rgba(201, 162, 39, 0.15);
    --slate: #1c2128;
    --steel: #444c56;
    --mist: #768390;
    --cloud: #adbac7;
    --snow: #f0f3f6;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(27, 58, 87, 0.12);
    --heading: 'Fraunces', Georgia, serif;
    --body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--white);
    color: var(--slate);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
}

#content-start {
    scroll-margin-top: 84px;
}

.hp-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
    vertical-align: -0.125em;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: var(--navy-dark);
    border-bottom: 3px solid var(--gold);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1.75rem);
    list-style: none;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

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

.btn-primary:hover {
    background: var(--navy-light);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn.btn-nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid transparent;
}

nav .btn.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

nav .btn.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

nav .btn.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

nav .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.hero {
    padding: 5rem 4rem;
    background: var(--snow);
    position: relative;
    overflow: hidden;
}

.hero-container,
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    max-width: 900px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-page-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-page-icon svg {
    width: 48px;
    height: 48px;
    color: var(--navy);
}

.hero-page-icon::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--steel);
    max-width: 760px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 640px;
}

.hero-actions .btn,
.cta-buttons .btn {
    min-width: 220px;
    text-align: center;
    justify-content: center;
    flex: 1;
}

.hero-review {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8ecf1;
}

.hero-review-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 1rem;
}

.hero-review-score {
    font-weight: 600;
}

.hero-review-divider,
.hero-review-quote {
    color: var(--steel);
}

.pricing,
.services,
.support-services,
.cta-section {
    padding: 7rem 4rem;
}

.pricing,
.support-services {
    background: var(--white);
}

.services {
    background: var(--snow);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--heading);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--steel);
    max-width: 760px;
    margin: 0 auto;
}

.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.billing-toggle {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.4rem;
    background: var(--snow);
    border: 1px solid rgba(27, 58, 87, 0.08);
    border-radius: 999px;
}

.toggle-button {
    min-height: 48px;
    padding: 0.7rem 1.15rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--steel);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.toggle-button[aria-pressed="true"] {
    background: var(--navy);
    color: var(--white);
}

.pricing-intro,
.pricing-note-inline {
    max-width: 900px;
    margin: 0 auto 1rem;
    text-align: center;
    color: var(--steel);
}

.link-underline {
    color: var(--navy);
    font-weight: 600;
}

.link-underline:hover {
    color: var(--gold-dark);
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card,
.detail-card,
.example-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy), inset 0 -2px 0 var(--navy);
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.03);
    box-shadow: inset 2px 0 0 var(--navy-dark), inset -2px 0 0 var(--navy-dark), inset 0 2px 0 var(--navy-dark), inset 0 -2px 0 var(--navy-dark), var(--shadow-md);
}

.pricing-header {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured .pricing-header {
    background: var(--navy-dark);
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.tier-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.tier-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.pricing-tier-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.pricing-price {
    font-family: var(--heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-family: var(--body);
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-tagline {
    font-size: 0.95rem;
    opacity: 0.92;
    margin-bottom: 1rem;
}

.pricing-highlight {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    min-width: 0;
}

.pricing-includes {
    margin-bottom: 0;
}

.pricing-includes h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: var(--white);
    color: var(--steel);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    user-select: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-tag:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    color: var(--navy);
}

.service-tag.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.service-tag::after {
    content: '+';
    margin-left: auto;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.service-tag.active::after {
    content: 'x';
    color: var(--navy-dark);
}

.service-details {
    display: none;
}

.service-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.2s ease;
}

.service-overlay-content {
    position: relative;
    width: min(760px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    padding: 2.35rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-overlay-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--snow);
    color: var(--steel);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.service-overlay-close:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.service-overlay-title {
    margin: 0 2rem 1rem 0;
    color: var(--navy);
    font-family: var(--heading);
    font-size: 1.35rem;
    font-weight: 600;
}

.service-overlay-body p {
    margin-bottom: 0.75rem;
    color: var(--steel);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-overlay-body p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.plan-summary {
    display: grid;
    gap: 0.85rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mist);
}

.summary-value {
    text-align: right;
    color: var(--navy);
    font-weight: 700;
}

.pricing-copy {
    color: var(--steel);
    font-size: 0.95rem;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-cta .btn {
    width: 100%;
}

.status-card {
    grid-column: 1 / -1;
    padding: 1.5rem;
    text-align: center;
    border-radius: 16px;
    background: var(--snow);
    color: var(--steel);
    border: 1px solid rgba(27, 58, 87, 0.08);
}

.pricing-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--snow);
    color: var(--steel);
    box-shadow: inset 2px 0 0 var(--gold), inset -2px 0 0 var(--gold), inset 0 2px 0 var(--gold);
}

.pricing-disclaimer strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.footnotes {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.footnote {
    padding: 1rem 1.15rem;
    border-radius: 12px;
    background: var(--snow);
    color: var(--steel);
    font-size: 0.95rem;
    box-shadow: inset 1px 0 0 rgba(27, 58, 87, 0.08), inset -1px 0 0 rgba(27, 58, 87, 0.08), inset 0 1px 0 rgba(27, 58, 87, 0.08);
}

.detail-grid,
.example-grid,
.steps-grid {
    display: grid;
    gap: 2rem;
}

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

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

.detail-card,
.example-card {
    padding: 2rem;
}

.detail-value {
    display: block;
    margin-bottom: 0.8rem;
    font-family: var(--heading);
    font-size: 2.75rem;
    line-height: 1;
    color: var(--gold);
}

.detail-card h3,
.example-card h3,
.step-card h3,
.cta-content h2 {
    font-family: var(--heading);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.detail-card h3,
.example-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.detail-card p,
.example-card p,
.step-card p {
    color: var(--steel);
}

.example-card {
    display: grid;
    gap: 1rem;
}

.example-step {
    display: grid;
    gap: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.example-step strong {
    color: var(--navy);
}

.cta-section {
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.section-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.section-icon svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.82);
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--navy-light);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow-sm);
}

.step-card h3 {
    color: var(--white);
    margin-bottom: 0.65rem;
    font-size: 1.25rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.74);
}

.step-connector {
    position: absolute;
    top: 24px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.35), rgba(201, 162, 39, 0));
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-content--steps {
    margin-top: 2.5rem;
}

.cta-section .btn.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.cta-section .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-review.hero-review--cta {
    margin-top: 2.5rem;
    background: var(--snow);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-note a {
    color: var(--gold-light);
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 4rem 4rem 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cloud);
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.footer-quote {
    max-width: 1200px;
    margin: 2rem auto 0;
    font-size: 0.85rem;
    color: var(--cloud);
    font-style: italic;
    text-align: center;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--cloud);
}

.footer-bottom a {
    color: var(--cloud);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-privacy-link {
    margin-left: 1.5rem;
}

@media (max-width: 1200px) {
    .pricing-tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 1100px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        order: 3;
    }

    .nav-right {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 992px) {
    .hero,
    .pricing,
    .services,
    .support-services,
    .cta-section,
    footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .billing-toggle {
        justify-content: center;
    }

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

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    #content-start {
        scroll-margin-top: 76px;
    }

    .hero,
    .pricing,
    .services,
    .support-services,
    .cta-section,
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-tiers,
    .detail-grid,
    .example-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .billing-toggle {
        flex-direction: column;
        border-radius: 20px;
    }

    .service-overlay-content {
        width: 95vw;
        padding: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-bottom > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-bottom a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .nav-cta-label {
        display: none;
    }

    .btn.btn-nav-cta {
        padding: 0.5rem;
        gap: 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-review {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}
