/* e-conomic-bogføring — neutral UI + logo blue as accent only */
:root {
    /* Logo-adjacent cyan (accents, links, icons — not large backgrounds) */
    --eb-brand: #0ea5e9;
    --eb-brand-dark: #0284c7;
    /* UI structure — slate/neutral (contrasts with logo) */
    --eb-accent: #0f172a;
    --eb-accent-hover: #1e293b;
    --eb-border: #e2e8f0;
    --eb-surface: #f8fafc;
    --eb-surface-2: #f1f5f9;
    --eb-text: #0f172a;
    --eb-muted: #64748b;
    --eb-bg-muted: #f9fafb;
    --eb-white: #ffffff;
    --eb-max: 1440px;
    --eb-radius: 12px;
    --eb-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    --eb-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* Legacy aliases (calculator / older refs) */
    --eb-blue-700: var(--eb-brand-dark);
    --eb-blue-900: var(--eb-accent);
    --eb-blue-100: var(--eb-border);
    --eb-blue-50: var(--eb-surface);
}

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

body {
    margin: 0;
    font-family: var(--eb-font);
    color: var(--eb-text);
    background: var(--eb-white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--eb-brand-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.eb-container {
    width: min(100% - 2rem, var(--eb-max));
    margin-inline: auto;
}

/* Header */
.eb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--eb-border);
    backdrop-filter: blur(8px);
}

.eb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.eb-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--eb-text);
}

.eb-brand:hover {
    text-decoration: none;
}

.eb-brand-logo,
.custom-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.eb-brand-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--eb-text);
}

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

.eb-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-menu a {
    color: var(--eb-muted);
    font-weight: 500;
    text-decoration: none;
}

.eb-menu a:hover {
    color: var(--eb-brand-dark);
}

.eb-header-cta {
    margin-left: 0.5rem;
    white-space: nowrap;
}

.eb-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
}

.eb-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--eb-accent);
}

/* Buttons */
.eb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--eb-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.eb-btn:hover {
    text-decoration: none;
}

.eb-btn-primary {
    background: var(--eb-accent);
    color: var(--eb-white);
    box-shadow: var(--eb-shadow);
}

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

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

.eb-btn-outline:hover {
    background: var(--eb-surface);
    color: var(--eb-brand-dark);
    border-color: var(--eb-brand);
}

.eb-btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.eb-btn-block {
    width: 100%;
}

/* Hero */
.eb-hero {
    background: linear-gradient(180deg, #eff6ff 0%, var(--eb-white) 72%);
    padding: 4.5rem 0 3rem;
    overflow: hidden;
}

.eb-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: center;
}

.eb-hero-kicker {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--eb-brand-dark);
    margin: 0 0 1rem;
}

.eb-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    color: var(--eb-text);
    margin: 0 0 1.25rem;
}

.eb-hero-text {
    font-size: 1.15rem;
    color: var(--eb-muted);
    margin: 0 0 1.75rem;
    max-width: 36rem;
    line-height: 1.65;
}

.eb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.eb-hero-badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.eb-hero-badges li {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eb-brand-dark);
    background: var(--eb-white);
    border: 1px solid var(--eb-border);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
}

.eb-hero-media {
    position: relative;
}

.eb-hero-photo {
    width: 100%;
    height: auto;
    min-height: 320px;
    max-height: 520px;
    object-fit: cover;
    border-radius: calc(var(--eb-radius) + 4px);
    box-shadow: var(--eb-shadow);
    display: block;
}

.eb-hero-float {
    position: absolute;
    background: var(--eb-white);
    border-radius: var(--eb-radius);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--eb-border);
}

.eb-hero-float--logo {
    bottom: 1.25rem;
    left: -0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eb-hero-float--logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.eb-hero-float--stat {
    top: 1.25rem;
    right: -0.5rem;
    padding: 0.85rem 1.1rem;
    text-align: center;
    min-width: 7rem;
}

.eb-hero-float-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eb-brand-dark);
    line-height: 1.2;
}

.eb-hero-float-label {
    display: block;
    font-size: 0.7rem;
    color: var(--eb-muted);
    line-height: 1.3;
    margin-top: 0.15rem;
}

/* Homepage stats bar */
.eb-home-stats {
    background: var(--eb-accent);
    color: var(--eb-white);
    padding: 2rem 0;
    margin-top: -0.5rem;
}

.eb-home-stats-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.eb-home-stat-value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.eb-home-stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0.25rem;
}

/* Sections */
.eb-section {
    padding: 5rem 0;
}

.eb-section-muted {
    background: var(--eb-bg-muted);
}

.eb-section-blue {
    background: var(--eb-surface);
}

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

.eb-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--eb-text);
    margin: 0 0 0.75rem;
}

.eb-section-head p {
    color: var(--eb-muted);
    font-size: 1.15rem;
    margin: 0;
    max-width: 40rem;
    margin-inline: auto;
}

.eb-section-head--left {
    text-align: left;
    margin-bottom: 1.5rem;
}

.eb-section-head--left p {
    margin-inline: 0;
}

/* Inner page hero (with optional image) */
.eb-page-hero {
    padding: 3.5rem 0 2.5rem;
    background: linear-gradient(180deg, #eff6ff 0%, var(--eb-white) 100%);
}

.eb-page-hero--media {
    padding: 3rem 0;
}

.eb-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: center;
}

.eb-page-hero-copy h1 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    margin: 0 0 1rem;
    color: var(--eb-text);
    line-height: 1.15;
}

.eb-page-hero-intro {
    font-size: 1.1rem;
    color: var(--eb-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    max-width: 36rem;
}

.eb-page-hero .eb-hero-kicker a {
    color: var(--eb-brand-dark);
    text-decoration: none;
    font-weight: 600;
}

.eb-page-hero .eb-hero-kicker a:hover {
    text-decoration: underline;
}

.eb-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.eb-page-hero-media img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: calc(var(--eb-radius) + 2px);
    box-shadow: var(--eb-shadow);
    display: block;
}

.eb-section--compact-top {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.eb-services-intro {
    max-width: 48rem;
    margin: 0 auto 1rem;
    text-align: center;
    color: var(--eb-muted);
}

/* Service detail page */
.eb-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 3rem;
    align-items: start;
}

.eb-service-body {
    max-width: none;
}

.eb-service-placeholder {
    color: var(--eb-muted);
    font-style: italic;
}

.eb-service-aside-card {
    background: var(--eb-surface);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    padding: 1.5rem;
    position: sticky;
    top: 5.5rem;
}

.eb-service-aside-card h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.eb-service-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-service-aside-list li {
    margin-bottom: 0.5rem;
}

.eb-service-aside-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    color: var(--eb-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.eb-service-aside-list a:hover {
    background: var(--eb-white);
    text-decoration: none;
    color: var(--eb-brand-dark);
}

.eb-service-aside-list img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.eb-service-cta-text {
    color: var(--eb-muted);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-inline: auto;
}

.eb-card--pricing {
    padding: 2rem 2.5rem;
}

.eb-pricing-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--eb-border);
}

/* Page header (fallback) */
.eb-page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, var(--eb-surface) 0%, var(--eb-white) 100%);
    text-align: center;
}

.eb-page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1rem;
    color: var(--eb-text);
}

.eb-page-header p {
    font-size: 1.2rem;
    color: var(--eb-muted);
    max-width: 42rem;
    margin: 0 auto;
}

/* Services grid */
.eb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.eb-service-card {
    background: var(--eb-white);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    overflow: hidden;
    box-shadow: var(--eb-shadow);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.eb-service-card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
    text-decoration: none;
}

.eb-service-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--eb-surface-2);
}

.eb-service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.eb-service-card:hover .eb-service-card-media img {
    transform: scale(1.05);
}

.eb-service-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eb-service-card h3 {
    margin: 0 0 0.5rem;
    color: var(--eb-text);
    font-size: 1.2rem;
}

.eb-service-card p {
    margin: 0 0 1rem;
    color: var(--eb-muted);
    font-size: 0.95rem;
    flex: 1;
}

.eb-service-card .eb-link {
    color: var(--eb-brand-dark);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.eb-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eb-surface-2);
    border-radius: var(--eb-radius);
    color: var(--eb-brand-dark);
    margin-bottom: 1rem;
}

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

/* Calculator homepage section */
.eb-calculator-section-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.eb-calculator-photo {
    width: 100%;
    border-radius: var(--eb-radius);
    box-shadow: var(--eb-shadow);
    display: block;
    margin-bottom: 1.25rem;
}

.eb-calculator-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-calculator-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--eb-text);
    font-weight: 500;
}

.eb-calculator-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--eb-brand-dark);
    font-weight: 700;
}

.eb-card--calculator {
    margin: 0;
}

/* About — image + copy */
.eb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.eb-about-photo {
    width: 100%;
    border-radius: calc(var(--eb-radius) + 4px);
    box-shadow: var(--eb-shadow);
    display: block;
    object-fit: cover;
    min-height: 280px;
    max-height: 440px;
}

.eb-about-copy h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 1rem;
    color: var(--eb-text);
}

.eb-about-intro {
    font-size: 1.1rem;
    color: var(--eb-muted);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.eb-about-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.eb-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
    color: var(--eb-text);
}

.eb-about-check {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--eb-brand-dark);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Homepage CTA band */
.eb-home-cta {
    background: linear-gradient(135deg, var(--eb-accent) 0%, #1e3a5f 100%);
    color: var(--eb-white);
    padding: 4rem 0;
}

.eb-home-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.eb-home-cta-content h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--eb-white);
}

.eb-home-cta-content p {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.eb-home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.eb-btn-outline-light {
    background: transparent;
    color: var(--eb-white);
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.eb-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--eb-white);
    text-decoration: none;
}

/* Testimonials */
.eb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.eb-testimonial-card {
    background: var(--eb-white);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    padding: 2rem;
    box-shadow: var(--eb-shadow);
    position: relative;
}

.eb-testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--eb-brand) 0%, var(--eb-brand-dark) 100%);
    color: var(--eb-white);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.eb-stars {
    color: #facc15;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.eb-testimonial-quote {
    margin: 0 0 1.5rem;
    color: var(--eb-text);
}

.eb-testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--eb-border);
}

.eb-testimonial-author strong {
    display: block;
    color: var(--eb-text);
}

.eb-testimonial-author span {
    font-size: 0.9rem;
    color: var(--eb-muted);
}

/* Cards */
.eb-card {
    background: var(--eb-white);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    padding: 2rem;
    box-shadow: var(--eb-shadow);
}

.eb-card-blue {
    background: var(--eb-surface);
    border-color: var(--eb-border);
}

/* Two column layouts */
.eb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.eb-content {
    line-height: 1.7;
}

.eb-content h2,
.eb-content h3 {
    color: var(--eb-text);
}

.eb-contact-form input,
.eb-contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    font-size: 1rem;
    font-family: inherit;
}

.eb-contact-form textarea {
    resize: vertical;
}

/* Contact */
.eb-contact-icon-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.eb-contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eb-surface-2);
    border-radius: var(--eb-radius);
    color: var(--eb-brand-dark);
}

.eb-booking-card {
    background: var(--eb-accent);
    color: var(--eb-white);
    border-radius: var(--eb-radius);
    padding: 2rem;
    box-shadow: var(--eb-shadow);
}

.eb-booking-card p {
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.eb-booking-card .eb-btn {
    background: var(--eb-brand-dark);
    border: 2px solid var(--eb-white);
    color: var(--eb-white);
    width: 100%;
}

.eb-map-placeholder {
    height: 450px;
    background: var(--eb-surface);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--eb-muted);
    text-align: center;
    padding: 2rem;
}

/* FAQ */
.eb-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.eb-faq-item {
    background: var(--eb-white);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.eb-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--eb-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--eb-text);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.eb-faq-question:hover {
    background: var(--eb-surface);
}

.eb-faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--eb-muted);
}

.eb-faq-item.is-open .eb-faq-chevron {
    transform: rotate(180deg);
}

.eb-faq-chevron {
    color: var(--eb-brand-dark);
    transition: transform 0.2s;
    flex-shrink: 0;
}

/* Footer */
.eb-footer {
    background: var(--eb-accent);
    color: var(--eb-white);
    padding: 4rem 0 0;
    margin-top: 2rem;
}

.eb-footer a {
    color: #94a3b8;
    text-decoration: none;
}

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

.eb-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.eb-footer-col h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.eb-footer-col p,
.eb-footer-links,
.eb-footer-contact {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.eb-footer-links,
.eb-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-footer-links li,
.eb-footer-contact li {
    margin-bottom: 0.5rem;
}

.eb-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.eb-footer-logo {
    border-radius: 8px;
}

.eb-footer-copy {
    border-top: 1px solid #334155;
    padding: 1.5rem 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Service page */
.eb-service-hero {
    padding: 3rem 0;
    background: var(--eb-surface);
}

/* Responsive */
@media (max-width: 1024px) {
    .eb-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eb-home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eb-calculator-section-grid,
    .eb-about-grid {
        grid-template-columns: 1fr;
    }

    .eb-calculator-section-visual {
        order: 2;
    }

    .eb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eb-nav-toggle {
        display: flex;
    }

    .eb-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--eb-white);
        border-bottom: 1px solid var(--eb-border);
        padding: 1rem;
        gap: 0;
    }

    .eb-nav.is-open {
        display: flex;
    }

    .eb-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .eb-header-cta {
        margin: 0.5rem 0 0;
        text-align: center;
    }

    .eb-hero-grid,
    .eb-page-hero-grid,
    .eb-service-layout,
    .eb-two-col,
    .eb-services-grid,
    .eb-testimonials-grid,
    .eb-footer-grid {
        grid-template-columns: 1fr;
    }

    .eb-page-hero-media {
        order: -1;
    }

    .eb-service-aside-card {
        position: static;
    }

    .eb-hero {
        padding: 3rem 0 2rem;
    }

    .eb-hero-media {
        order: -1;
    }

    .eb-hero-float--logo {
        left: 0.5rem;
        bottom: 0.75rem;
    }

    .eb-hero-float--stat {
        right: 0.5rem;
        top: 0.75rem;
    }

    .eb-home-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .eb-home-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .eb-home-cta-actions .eb-btn {
        flex: 1;
        min-width: 10rem;
    }

    .eb-brand-text {
        font-size: 0.85rem;
        max-width: 140px;
        line-height: 1.2;
    }
}
