/* =========================================================
   InternetSites-Management – Design im Stil von Emil Kowalski
   Ruhig, präzise, viel Weißraum, ein Akzent, sanfte Motion.
   ========================================================= */

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

:root {
    --ink:        #0b0b12;   /* Fast-Schwarz */
    --ink-soft:   #14141f;
    --text:       #1a1a22;
    --muted:      #6b6b78;
    --line:       #ecebf1;
    --bg:         #ffffff;
    --bg-alt:     #f7f7fb;   /* leicht getönt */
    --accent:     #6c5ce7;   /* Veilchen-Indigo */
    --accent-2:   #8e7bff;
    --accent-ink: #4b3fce;
    --ok:         #16a34a;
    --radius:     18px;
    --radius-sm:  12px;
    --shadow:     0 1px 2px rgba(16,16,32,.04), 0 12px 40px rgba(16,16,32,.06);
    --shadow-lg:  0 2px 6px rgba(16,16,32,.06), 0 30px 70px rgba(16,16,32,.12);
    --maxw:       1120px;
    --ease:       cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container { width: min(var(--maxw), 90%); margin-inline: auto; }

a { color: var(--accent-ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; }
img, svg { max-width: 100%; display: block; }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
    padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============== Header =============== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: .85rem 0; flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
    display: inline-flex; align-items: center; gap: 1px;
    font-weight: 800; letter-spacing: -0.04em; font-size: 1.05rem;
    background: var(--ink); color: #fff; padding: .34rem .6rem; border-radius: 10px;
}
.brand-mark .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-2); margin-right: 5px; box-shadow: 0 0 0 3px rgba(140,123,255,.25);
}
.brand-accent { color: var(--accent-2); }
.brand-text { font-size: 1.02rem; letter-spacing: -0.02em; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.main-nav a { color: var(--muted); font-weight: 500; font-size: .95rem; }
.main-nav a:hover { color: var(--ink); }
.nav-cta {
    background: var(--ink); color: #fff !important; padding: .55rem 1rem;
    border-radius: 999px; font-weight: 600 !important;
    transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav-cta:hover { background: var(--accent-ink); transform: translateY(-1px); }

/* Sprachumschalter */
.lang-switch {
    display: inline-flex; align-items: center; gap: 1px;
    border: 1px solid var(--line); border-radius: 999px; padding: 2px; background: #fff;
}
.lang-switch a {
    font-size: .76rem; font-weight: 700; letter-spacing: .02em; color: var(--muted);
    padding: .26rem .5rem; border-radius: 999px; line-height: 1;
}
.lang-switch a:hover { color: var(--ink); text-decoration: none; }
.lang-switch a.active { background: var(--ink); color: #fff; }

/* =============== Buttons =============== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    background: var(--accent); color: #fff; font-weight: 600; font-size: 1rem;
    padding: .95rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(108,92,231,.32);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-ink); color: #fff; box-shadow: 0 12px 32px rgba(108,92,231,.4); }
.btn-ghost {
    background: transparent; color: var(--ink); border-color: var(--line);
    box-shadow: none;
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #d8d6e6; box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
.btn-light:hover { background: #fff; color: var(--accent-ink); }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; box-shadow: none; }

/* =============== Reveal-Animation =============== */
[data-reveal] {
    opacity: 0; transform: translateY(18px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
    html { scroll-behavior: auto; }
}

/* =============== Hero =============== */
.hero {
    position: relative; overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: 6.5rem 0 6rem;
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(60% 55% at 78% 8%, rgba(108,92,231,.55), transparent 60%),
        radial-gradient(50% 50% at 8% 92%, rgba(60,60,160,.35), transparent 60%);
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
            mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 1; max-width: 860px; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    color: #e7e5ff; font-size: .82rem; font-weight: 600; letter-spacing: .01em;
    padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.6rem;
    backdrop-filter: blur(6px);
}
.eyebrow .pulse {
    width: 8px; height: 8px; border-radius: 50%; background: #7bffb0;
    box-shadow: 0 0 0 0 rgba(123,255,176,.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(123,255,176,.5); }
    70% { box-shadow: 0 0 0 10px rgba(123,255,176,0); }
    100% { box-shadow: 0 0 0 0 rgba(123,255,176,0); }
}
.hero h1 {
    color: #fff; font-size: clamp(2.3rem, 6vw, 4rem); font-weight: 800;
    letter-spacing: -0.035em; margin-bottom: 1.2rem;
}
.hero h1 .grad {
    background: linear-gradient(100deg, #b9aaff, #7bffdf);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
    font-size: clamp(1.05rem, 2.2vw, 1.32rem); color: #c9c8d6;
    max-width: 640px; margin: 0 auto 2.2rem; letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero-trust {
    margin-top: 2.4rem; display: flex; gap: 1.6rem 2.4rem; justify-content: center;
    flex-wrap: wrap; color: #a7a6b8; font-size: .92rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust svg { flex: none; }

/* =============== Logos / Authority band =============== */
.authority {
    background: var(--ink-soft); color: #cfcede; padding: 1.4rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.authority .container {
    display: flex; align-items: center; justify-content: center; gap: 1rem 2.4rem;
    flex-wrap: wrap; text-align: center;
}
.authority strong { color: #fff; }
.authority .sep { color: #4a4a5c; }

/* =============== Sektionen =============== */
section.block { padding: 5.5rem 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.tag {
    display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--accent-ink); margin-bottom: .8rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: .8rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* Value / Erzählung */
.value-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.value-copy p { color: #3a3a46; margin-bottom: 1rem; font-size: 1.06rem; }
.value-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 1.2rem; }
.value-copy .btn { margin-top: .8rem; }
.value-card {
    background: linear-gradient(160deg, var(--ink) 0%, #1b1b2e 100%);
    color: #fff; border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.value-card::after {
    content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(108,92,231,.5), transparent 70%);
}
.value-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1.2rem; position: relative; }
.risk-list { list-style: none; display: grid; gap: .9rem; position: relative; }
.risk-list li { display: flex; gap: .7rem; align-items: flex-start; color: #d9d8e6; }
.risk-list .check {
    flex: none; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(123,255,176,.15); color: #7bffb0;
    display: grid; place-items: center; font-size: .8rem; margin-top: .12rem;
}
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Leistungen (Features) */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.feature {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #e2e0ee; }
.feature .ico {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(140deg, #efeafd, #e6f6ff); color: var(--accent-ink);
    margin-bottom: 1.1rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .97rem; }

/* Pakete / Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; align-items: stretch; }
.price-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem 1.7rem; box-shadow: var(--shadow);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured {
    border-color: transparent;
    box-shadow: 0 2px 6px rgba(16,16,32,.06), 0 30px 70px rgba(108,92,231,.22);
    outline: 2px solid var(--accent);
}
.price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px;
    white-space: nowrap; box-shadow: 0 6px 18px rgba(108,92,231,.4);
}
.price-name { font-size: 1.12rem; font-weight: 700; margin-bottom: .3rem; }
.price-sub { color: var(--muted); font-size: .9rem; min-height: 2.6em; margin-bottom: 1rem; }
.price-amount { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .3rem; }
.price-amount .num { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.price-amount .cur { font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.price-unit { color: var(--muted); font-size: .9rem; margin-bottom: 1.3rem; }
.price-feats { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.6rem; flex: 1; }
.price-feats li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: #3a3a46; }
.price-feats .check {
    flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: .12rem;
    background: #e9f7ef; color: var(--ok); display: grid; place-items: center; font-size: .72rem;
}
.price-card .btn { width: 100%; }
.price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.8rem; }

/* Ablauf / Prozess */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; counter-reset: step; }
.step {
    position: relative; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow);
}
.step .num {
    width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
    background: var(--ink); color: #fff; font-weight: 800; margin-bottom: 1rem; font-size: 1.05rem;
}
.step.is-free .num { background: var(--accent); }
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* Warum wir / Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-bottom: 3rem; }
.stat {
    text-align: center; background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.8rem 1.2rem; box-shadow: var(--shadow);
}
.stat .big {
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(120deg, var(--accent-ink), var(--accent-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .small { color: var(--muted); font-size: .95rem; margin-top: .3rem; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.why { display: flex; gap: .9rem; align-items: flex-start; }
.why .ic {
    flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: #efeafd; color: var(--accent-ink);
}
.why h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.why p { color: var(--muted); font-size: .95rem; }

/* CTA-Band */
.cta-band {
    position: relative; overflow: hidden;
    background: var(--ink); color: #fff; text-align: center; padding: 4.5rem 0;
}
.cta-band::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 120% at 50% 0%, rgba(108,92,231,.5), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; max-width: 680px; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .9rem; }
.cta-band p { color: #c9c8d6; font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { color: #b9aaff; font-weight: 600; }
.cta-phone:hover { color: #d9d0ff; }

/* Copyright-Hinweis */
.copyright-note {
    background: var(--bg-alt); border-top: 1px solid var(--line);
    padding: 1.4rem 0; color: var(--muted); font-size: .86rem; text-align: center;
}
.copyright-note strong { color: var(--text); }

/* =============== Portfolio / Entwürfe-Galerie =============== */
.portfolio { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.7rem; }
.demo-card {
    display: flex; flex-direction: column; background: var(--bg);
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #e2e0ee; }
.demo-thumb {
    position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
}
.demo-thumb img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform .6s var(--ease);
}
.demo-card:hover .demo-thumb img { transform: scale(1.035); }
.demo-cat {
    position: absolute; top: .8rem; left: .8rem; z-index: 2;
    background: rgba(11,11,18,.82); color: #fff; font-size: .72rem; font-weight: 600;
    letter-spacing: .04em; padding: .3rem .7rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.demo-overlay {
    position: absolute; inset: 0; z-index: 1; display: grid; place-items: center;
    background: linear-gradient(180deg, rgba(11,11,18,0) 40%, rgba(11,11,18,.55));
    opacity: 0; transition: opacity .3s var(--ease);
}
.demo-card:hover .demo-overlay { opacity: 1; }
.demo-overlay .peek {
    background: #fff; color: var(--ink); font-weight: 600; font-size: .9rem;
    padding: .6rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-lg);
    display: inline-flex; align-items: center; gap: .5rem; transform: translateY(8px);
    transition: transform .3s var(--ease);
}
.demo-card:hover .demo-overlay .peek { transform: translateY(0); }
.demo-body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.5rem; }
.demo-body h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.demo-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; flex: 1; }
.demo-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.demo-actions .btn { flex: 1; min-width: 130px; }
.demo-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .9rem; }
.demo-tags span {
    font-size: .74rem; color: var(--accent-ink); background: #efeafd;
    padding: .2rem .6rem; border-radius: 999px; font-weight: 600;
}
.portfolio-cta {
    margin-top: 3rem; text-align: center; background: var(--bg-alt);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 1.6rem;
}
.portfolio-disclaimer {
    max-width: 840px; margin: 2.4rem auto 0; text-align: center;
    color: var(--muted); font-size: .85rem; line-height: 1.6;
}
.portfolio-cta h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.portfolio-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 1.5rem; }

/* Sub-Hero (schmaler Kopf für Unterseiten) */
.subhero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 4.5rem 0 3.8rem; text-align: center; }
.subhero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 90% at 50% 0%, rgba(108,92,231,.5), transparent 62%);
}
.subhero .container { position: relative; z-index: 1; max-width: 760px; }
.subhero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.subhero .grad { background: linear-gradient(100deg, #b9aaff, #7bffdf); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subhero p { color: #c9c8d6; font-size: 1.12rem; max-width: 620px; margin: 0 auto; }

/* =============== Rechtstexte =============== */
.legal { padding: 4rem 0 4.5rem; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.28rem; margin: 2.2rem 0 .7rem; }
.legal h3 { font-size: 1.06rem; margin: 1.4rem 0 .5rem; color: #2a2a34; }
.legal p, .legal li { color: #33333f; margin-bottom: .7rem; }
.legal ul { margin: 0 0 1rem 1.3rem; }
.legal .muted { color: var(--muted); font-size: .9rem; }
.legal code { background: var(--bg-alt); padding: .12rem .4rem; border-radius: 6px; font-size: .9em; }
.legal .lead-note {
    background: var(--bg-alt); border: 1px solid var(--line); border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.6rem; color: #3a3a46;
}

/* =============== Footer =============== */
.site-footer { background: var(--ink); color: #a7a6b8; }
.footer-inner {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem;
    padding: 3.4rem 0 2.6rem;
}
.footer-mark { display: inline-flex; margin-bottom: 1rem; }
.footer-firma { color: #e7e6f0; font-weight: 600; margin-bottom: .4rem; }
.footer-since { margin-top: .8rem; font-size: .85rem; color: #6f6e82; }
.footer-col h3 { color: #fff; font-size: .98rem; margin-bottom: 1rem; }
.footer-col p, .footer-col a { color: #a7a6b8; }
.footer-col a:hover { color: #fff; }
.footer-nav { display: grid; gap: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: .8rem; padding: 1.3rem 0; font-size: .88rem;
}
.footer-bottom p { color: #6f6e82; }
.legal-nav { display: flex; gap: 1.4rem; }
.legal-nav a { color: #a7a6b8; }
.legal-nav a:hover { color: #fff; }

@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
    .main-nav { gap: 1rem; font-size: .9rem; width: 100%; justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    section.block { padding: 4rem 0; }
    .hero { padding: 4.5rem 0 4rem; }
}
