@import url('./contactform.css');

:root {
    --bga: rgba(29, 33, 32, 0.606);
    ;
    --bg: #1d2120;
    --blur: 12px;
    --blur-hard: 10rem;
    --surface: #242826;
    --surface-2: #2a2f2d;
    --text: #ebdbb2;
    --muted: #c6b899;
    --accent: #8ec07c;
    --accent-strong: #76a965;
    --border: #3a423f;
    --fontsize-default: 2rem;

     /* ==========================================================================
      COOKIE BANNER CONFIGURATION (Anpassungen für jede Webseite hier vornehmen)
      ========================================================================== */

  /* SCHRIFTGRÖSSEN-SKALIERUNG (WICHTIG):
      * Wenn die Webseite 62.5% nutzt (1rem = 10px) -> Wert auf 1 lassen.
      * Wenn die Webseite 100% nutzt (1rem = 16px)  -> Wert auf 0.625 setzen.
      * Damit bleibt das Banner auf JEDER Seite exakt gleich groß! */
  --cb-font-scale: 1;

  /* FARBEN & DESIGN (Mit integrierten Standard-Fallbacks, falls var(--...) fehlt) */
  --cb-bg: var(--bga, #ffffff) !important;
  --cb-border-color: var(--border, #e2e8f0);
  --cb-text-color: var(--text, #2c241a);
  --cb-accent-color: var(--accent, #3182ce);
  --cb-blur: var(--blur-hard, 1rem);
  --cb-overlay-bg: rgba(0, 0, 0, 0.6);
  --cb-radius-main: 1.6rem;
  --cb-radius-btn: 0.8rem;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: var(--fontsize-default);
    font-family: 'Lora', serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.theme-light {
    --bga: rgba(255, 252, 241, 0.72);
    --bg: #f4f0e6;
    --surface: #fffaf0;
    --surface-2: #eee6d2;
    --text: #050505;
    --muted: #181818;
    --accent: #256f7a;
    --accent-strong: #174f5a;
    --border: rgba(62, 86, 61, 0.28);
    --cb-bg: rgba(255, 252, 241, 0.94) !important;
    --cb-overlay-bg: rgba(244, 240, 230, 0.72);
    --cb-text-color: #050505;
    --cb-border-color: rgba(38, 48, 42, 0.58);
    --cb-accent-color: #256f7a;
}

body.theme-light canvas {
    opacity: 0.84;
}

body.theme-light .tagline,
body.theme-light .section-eyebrow,
body.theme-light .copy-panel .eyebrow,
body.theme-light .page-hero .eyebrow,
body.theme-light .seo-page .eyebrow,
body.theme-light .service-card .eyebrow,
body.theme-light .module-card .eyebrow,
body.theme-light .benefit-card .eyebrow,
body.theme-light .process-step .eyebrow,
body.theme-light .timeline-step .eyebrow,
body.theme-light .footer-column h3,
body.theme-light .footer-brand-title {
    color: var(--text);
}

body.theme-light .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

body.theme-light .btn-primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

body.theme-light .btn-secondary {
    border-color: var(--accent);
    color: var(--accent);
}

body.theme-light .btn-secondary:hover {
    border-color: var(--accent-strong);
    color: var(--accent-strong);
}

body.theme-light .sticky-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

main {
    width: 100%;
}

.page-shell {
    width: 100%;
}



canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    animation: fadeIn 3s ease forwards;
}

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

a {
    cursor: pointer;
    user-select: none;
}

.readmode canvas {
    display: none !important;
}

#readmode-btn {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.readmode .readmode-active {
    display: inline !important;
    user-select: none;
}

.readmode .readmode-deactive {
    display: none !important;
    user-select: none;
}


.container {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#settings-btn-open {
    cursor: pointer;
    filter: invert(10%);
    transition: transform 0.2s ease-in;
}

#settings-btn-open:hover {
    transform: rotateZ(10deg);
    filter: drop-shadow(0 0 1rem rgb(0, 208, 255)) invert(0%);
}

#settings-btn-open[aria-pressed="false"] {
    filter: none;
    transform: rotateZ(0deg);
}

#settings-btn-close:hover {
    text-decoration: underline;
    cursor: pointer;
}

#settings-window {
    position: fixed;
    display: none;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 60%;
    border-radius: 1rem;
    background-color: var(--bga);
    z-index: 1001;
    border: 1px solid var(--border);
    backdrop-filter: blur(var(--blur-hard));

}

.settings-row {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
}

.settings-row p {
    margin: 0;
}

#settings-grid {
    display: flex;

    grid-template-areas:
        "header"
        "body"
        "footer";

    grid-template-rows: auto 2fr;
}

.settings-header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    border-bottom: 1px solid var(--text);
    padding: 1rem;
}

.settings-header h3 {
    margin-bottom: 0;
}


.settings-btn-open {
    border: 1px solid var(--border);
    padding: 0 1rem;
    border-radius: 1rem;
}

.settings-body {
    grid-area: body;
    padding: 1rem;
}

.settings-footer {
    grid-area: footer;
}

/* --- Navigation --- */
nav {
    margin-top: 1rem;
    width: 100%;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    z-index: 1000;
    border-radius: 2rem;
    border: 1px solid var(--border);
}

body:has(header#start) nav {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
    border-radius: 0;
}

body:has(header#start) nav.is-scrolled,
nav.is-scrolled {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border-color: var(--border);
    border-radius: 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}


.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    order: 1;
    text-decoration: none;
    font-weight: 600;
    color: var(--accent);
    margin-left: 1rem;
}

.logo img {
    display: block;
    width: clamp(16rem, 18vw, 24rem);
    height: 5.2rem;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    gap: 25px;
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-links a.active {
    color: var(--accent);
}

.nav-readmode-button {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 4.4rem;
    border: 1px solid transparent;
    border-radius: 0.8rem;
    background: transparent;
    color: var(--muted);
    padding: 0.8rem 1rem;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    filter: none;
}

.nav-readmode-button svg {
    width: 2.1rem;
    height: 2.1rem;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.nav-theme-button {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 4.4rem;
    border: 1px solid transparent;
    border-radius: 0.8rem;
    background: transparent;
    color: var(--muted);
    padding: 0.8rem 1rem;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-theme-button svg {
    width: 2.1rem;
    height: 2.1rem;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.nav-theme-button:hover,
.nav-theme-button[aria-pressed="true"] {
    color: var(--accent);
}

.nav-theme-button[aria-pressed="true"] {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.nav-readmode-button:hover,
.nav-readmode-button[aria-pressed="true"] {
    color: var(--accent);
    filter: none;
    transform: none;
}

.nav-readmode-button[aria-pressed="true"] {
    border-color: var(--accent);
    background: rgba(142, 192, 124, 0.12);
}

@media (hover: none) {
  #settings-btn-open:hover {
    transform: rotateZ(0deg);
  }
}

.nav-toggle-button {
    display: none;
    order: 4;
    width: 4.4rem;
    height: 4.4rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.45rem;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: var(--bga);
    color: var(--accent);
    cursor: pointer;
}

.nav-toggle-button span {
    width: 2.1rem;
    height: 0.2rem;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

nav:has(.nav-links.is-open) {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border-color: var(--border);
    border-radius: 2rem;
}

@media (max-width: 600px) {
    nav {
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        width: 13rem;
        height: 4rem;
    }
}

/* --- Global Typography --- */
header#hero,
header#start {
    display: grid;
    grid-template-columns: minmax(34rem, 0.92fr) minmax(32rem, 1.08fr);
    gap: clamp(3rem, 5vw, 7rem);
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 7rem 2rem 4rem;
    margin: 1rem auto;
    width: min(1320px, calc(100% - 2rem));
    max-width: none;
    min-height: 72vh;
}

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

header#start .tagline {
    text-align: left;
}

header#start .hero-actions {
    justify-content: flex-start;
}

header#start .trust-rotator {
    justify-content: flex-start;
}

.hero-proof {
    position: relative;
    width: min(100%, 68rem);
    min-height: clamp(34rem, 38vw, 52rem);
    justify-self: end;
}

.hero-proof-screen {
    position: absolute;
    margin: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 2.2rem 3.8rem rgba(0, 0, 0, 0.34));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-light .hero-proof-screen {
    filter: drop-shadow(0 2rem 3.6rem rgba(31, 95, 115, 0.2));
}

.hero-proof-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-proof-website {
    inset: 3rem 0 auto auto;
    width: min(92%, 66rem);
    aspect-ratio: 1080 / 596;
    transform: rotate(3deg);
    --hero-proof-hover-transform: translateY(-1.2rem) scale(1.015) rotate(3deg);
}

.hero-proof-dashboard {
    left: 0;
    bottom: 2.5rem;
    width: min(52%, 34rem);
    aspect-ratio: 1013 / 650;
    transform: rotate(-5deg);
    --hero-proof-hover-transform: translateY(-1.4rem) scale(1.025) rotate(-5deg);
    z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
    .hero-proof-screen:hover {
        transform: var(--hero-proof-hover-transform);
        filter: drop-shadow(0 2.8rem 5rem rgba(0, 0, 0, 0.42));
    }

    body.theme-light .hero-proof-screen:hover {
        filter: drop-shadow(0 2.6rem 4.8rem rgba(31, 95, 115, 0.26));
    }
}

.hero-proof-label {
    position: absolute;
    right: 4rem;
    bottom: 0.5rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 3.8rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

body.theme-light .hero-proof-label {
    background: rgba(255, 255, 255, 0.72);
}

section {
    /* background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border-radius: 1rem; */
    width: 100%;
    padding: 10rem 2rem;
    border-bottom: 1px solid var(--accent);
    margin: 1rem 0;
}

section.contact-section {
    padding-left: 0;
    padding-right: 0;
}

section:hover {

    transition: 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 1rem var(--border);
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
}
section.contact-module, section.contact-module:hover {
    border: none;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

.tagline {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
    text-align: center;
    animation: flicker 2s infinite;
    font-size: 1.3rem;
}

.tagline::before {
    content: "[ ";
    animation: cursor 1.2s infinite;
}

.tagline::after {
    content: " ]";
    animation: cursor 1.2s infinite;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-copy {
    text-align: left;
    max-width: 780px;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.55;
}

.page-hero {
    width: min(980px, 100%);
    padding: 9rem 2rem 5rem;
    text-align: center;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--text);
}

.page-hero p {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 35px;
    text-align: center;
    font-weight: 400;
}

h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: var(--muted);
    margin-bottom: 25px;
    ;
    text-align: left;
}

.center-p {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
    margin: 1rem 0 2.4rem;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
    width: 100%;
    margin: 4rem 0 0;
}

.teaser-card {
    min-height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.teaser-card .link-btn {
    align-self: flex-start;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.8rem;
    padding: 1.2rem 2rem;
    border-radius: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--accent);
    width: 25rem;
}

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

.btn-primary:hover {
    background: var(--accent-strong);
}

.btn-secondary {
    color: var(--accent);
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
}

.btn-secondary:hover {
    color: var(--text);
    border-color: var(--text);
}

.benefit-list {
    width: min(900px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
}

.benefit-list span {
    min-height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
}

.trust-rotator {
    display: inline-grid;
    grid-template-columns: auto minmax(13rem, auto);
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--muted);
    border: 1px solid transparent;
    border-radius: 0.8rem;
    background: transparent;
    backdrop-filter: none;
    padding: 0.8rem 1.2rem;
}

.trust-rotator span {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.1rem;
    color: var(--accent);
}

.trust-rotator strong {
    min-width: 13rem;
    color: var(--text);
    font-weight: 600;
    text-align: left;
}

.trust-rotator strong::after {
    content: "|";
    color: var(--accent);
    animation: cursor 1.2s infinite;
}

.expanded-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 3rem auto 0;
}

.sticky-cta {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.2rem);
}

.sticky-cta.is-hero-hidden,
.sticky-cta.is-menu-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.2rem);
}

.home-contrast {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    width: min(1100px, 100%);
    margin: 0 auto;
}

body:has(header#start) .home-contrast {
    align-items: start;
}

.performance-card,
.compare-card,
.dashboard-preview {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    padding: 3rem;
}

body:has(header#start) .home-contrast .performance-card,
body:has(header#start) .home-contrast .compare-card,
body:has(header#start) .home-contrast .compare-card > div {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

body:has(header#start) .home-contrast .performance-card p,
body:has(header#start) .home-contrast .compare-card p {
    color: var(--text);
}

body:has(header#start) .home-contrast .compare-card h3 {
    color: var(--accent);
}

.performance-card strong {
    display: block;
    color: var(--accent);
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.compare-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.compare-card > div {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    background: rgba(29, 33, 32, 0.34);
}

.home-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
}

.benefit-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    width: min(1120px, 100%);
    margin: 0 auto;
}

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

.benefit-card {
    position: relative;
    min-height: 25rem;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    padding: 2.4rem;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.benefit-card:hover {
    transform: translateY(-0.4rem);
    border-color: var(--accent);
    box-shadow: 0 0 2.6rem rgba(142, 192, 124, 0.14);
}

.benefit-icon {
    width: 4.4rem;
    height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    color: var(--accent);
    background: rgba(29, 33, 32, 0.42);
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    margin-bottom: 1.8rem;
}

.benefit-card strong {
    display: block;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.45;

    position: absolute;
    left: 2.6rem;
    width: 85%;
    bottom: 1rem;
}

.home-benefits {
    display: grid;
    grid-template-columns: minmax(28rem, 0.72fr) minmax(48rem, 1.28fr);
    align-items: start;
    gap: clamp(3rem, 6vw, 8rem);
}

.home-benefits-intro {
    position: sticky;
    top: 12rem;
    align-self: start;
    max-width: 52rem;
    text-align: left;
}

.home-benefits-intro .tagline {
    justify-content: flex-start;
}

.home-benefits-intro h2 {
    margin: 1.8rem 0 2rem;
    text-align: left;
    font-size: clamp(3.4rem, 4.6vw, 6.4rem);
    line-height: 1.02;
}

.home-benefits-intro p {
    max-width: 48rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.45vw, 2rem);
}

.home-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
}

.home-benefit-item {
    display: grid;
    grid-template-columns: 5.6rem minmax(0, 1fr);
    gap: 1.8rem;
    min-height: 18rem;
    padding: clamp(2.4rem, 3.4vw, 3.8rem) clamp(0rem, 2vw, 2.4rem);
    border-bottom: 1px solid var(--border);
}

.home-benefit-item:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.home-benefit-item > span {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    text-stroke: 1px var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 3.2vw, 4.8rem);
    font-weight: 800;
    line-height: 0.95;
}

.home-benefit-item small {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-benefit-item h3 {
    margin: 0 0 0.9rem;
    font-size: clamp(2rem, 1.75vw, 2.8rem);
    line-height: 1.15;
}

.home-benefit-item p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.45rem, 1.12vw, 1.7rem);
    line-height: 1.55;
}

body.theme-light .home-benefit-item :where(h3, p, span) {
    color: var(--text);
}

body.theme-light .home-benefit-item > span {
    color: transparent;
    -webkit-text-stroke-color: var(--accent);
    text-stroke-color: var(--accent);
}

.home-references {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(3rem, 5vw, 6rem);
}

.home-references-intro {
    max-width: 92rem;
    margin: 0 auto;
    text-align: center;
}

.home-references-intro .tagline {
    justify-content: center;
}

.home-references-intro h2 {
    margin: 1.8rem 0 2rem;
    text-align: center;
    font-size: clamp(3.4rem, 4.6vw, 6.4rem);
    line-height: 1.02;
}

.home-references-intro p {
    max-width: 68rem;
    margin: 0 auto 2.4rem;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.45vw, 2rem);
}

.home-reference-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 3vw, 3.2rem);
}

.home-reference-list.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.home-reference-list.is-single .home-reference-card {
    display: flex;
    flex-direction: column-reverse;
    gap: clamp(2.4rem, 4vw, 4.8rem);
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.home-reference-list.is-single .home-reference-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.home-reference-list.is-single .home-reference-media {
    width: 100%;
    min-height: clamp(56rem, 52vw, 88rem);
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
}

.home-reference-list.is-single .home-reference-media::before {
    content: none;
}

.home-reference-list.is-single .home-reference-media img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    padding: 0;
    filter: drop-shadow(0 2rem 3.5rem rgba(0, 0, 0, 0.34));
}

.reference-device-stage {
    position: relative;
    z-index: 1;
    width: min(100%, 136rem);
    min-height: clamp(56rem, 52vw, 88rem);
    margin: 0 auto;
    perspective: 120rem;
}

.reference-device {
    position: absolute;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform-origin: center center;
    transition:
        left 520ms cubic-bezier(0.22, 1, 0.36, 1),
        right 520ms cubic-bezier(0.22, 1, 0.36, 1),
        top 520ms cubic-bezier(0.22, 1, 0.36, 1),
        width 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 360ms ease,
        filter 360ms ease,
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reference-device:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 0.7rem;
    border-radius: 2rem;
}

.reference-device img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.reference-device-laptop {
    width: 72%;
    left: 15%;
    top: 18%;
}

.reference-device-tablet {
    width: 33%;
    left: 0;
    top: 28%;
}

.reference-device-tablet img {
    object-fit: contain;
}

.reference-device-mobile {
    width: 18%;
    right: 3%;
    top: 34%;
}

.reference-device-mobile::before {
    content: none;
}

.reference-device-mobile img {
    object-fit: contain;
}

.reference-device-stage[data-focus="laptop"] .reference-device-laptop,
.reference-device-stage[data-focus="tablet"] .reference-device-tablet,
.reference-device-stage[data-focus="mobile"] .reference-device-mobile {
    z-index: 5;
    opacity: 1;
    filter: drop-shadow(0 2.2rem 3.8rem rgba(0, 0, 0, 0.42));
}

.reference-device-stage[data-focus="laptop"] .reference-device-laptop {
    left: 50%;
    top: 6%;
    width: 70%;
    transform: translate3d(-50%, 0, 4rem) rotateX(0deg) rotateY(0deg);
}

.reference-device-stage[data-focus="laptop"] .reference-device-tablet {
    z-index: 4;
    left: 1%;
    top: 35%;
    width: 28%;
    opacity: 0.76;
    filter: saturate(0.85) brightness(0.82) drop-shadow(0 1.4rem 2.2rem rgba(0, 0, 0, 0.32));
    transform: translate3d(0, 0, 0) rotateY(7deg) scale(0.94);
}

.reference-device-stage[data-focus="laptop"] .reference-device-mobile {
    z-index: 4;
    right: 1%;
    top: 34%;
    width: 15%;
    opacity: 0.78;
    filter: saturate(0.85) brightness(0.82) drop-shadow(0 1.4rem 2.2rem rgba(0, 0, 0, 0.32));
    transform: translate3d(0, 0, 0) rotateY(-8deg) scale(0.94);
}

.reference-device-stage[data-focus="tablet"] .reference-device-tablet {
    left: 50%;
    top: 4%;
    width: 58%;
    transform: translate3d(-50%, 0, 4rem) rotateY(0deg);
}

.reference-device-stage[data-focus="tablet"] .reference-device-laptop {
    z-index: 3;
    left: 57%;
    top: 20%;
    width: 42%;
    opacity: 0.58;
    filter: saturate(0.82) brightness(0.74) drop-shadow(0 1.2rem 2rem rgba(0, 0, 0, 0.3));
    transform: rotateY(-8deg) scale(0.9);
}

.reference-device-stage[data-focus="tablet"] .reference-device-mobile {
    z-index: 4;
    right: 3%;
    top: 38%;
    width: 14%;
    opacity: 0.72;
    filter: saturate(0.84) brightness(0.8) drop-shadow(0 1.2rem 2rem rgba(0, 0, 0, 0.3));
    transform: rotateY(-9deg) scale(0.9);
}

.reference-device-stage[data-focus="mobile"] .reference-device-mobile {
    right: auto;
    left: 50%;
    top: 1%;
    width: 27%;
    transform: translate3d(-50%, 0, 4rem) rotateY(0deg);
}

.reference-device-stage[data-focus="mobile"] .reference-device-laptop {
    z-index: 3;
    left: 3%;
    top: 28%;
    width: 44%;
    opacity: 0.55;
    filter: saturate(0.82) brightness(0.72) drop-shadow(0 1.2rem 2rem rgba(0, 0, 0, 0.3));
    transform: rotateY(8deg) scale(0.9);
}

.reference-device-stage[data-focus="mobile"] .reference-device-tablet {
    z-index: 4;
    left: 66%;
    top: 40%;
    width: 22%;
    opacity: 0.68;
    filter: saturate(0.84) brightness(0.78) drop-shadow(0 1.2rem 2rem rgba(0, 0, 0, 0.3));
    transform: rotateY(-8deg) scale(0.9);
}

.home-reference-list.is-single .home-reference-body {
    align-items: center;
    justify-content: center;
    max-width: 78rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.home-reference-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 2.4rem;
    overflow: hidden;
    background: rgba(12, 18, 15, 0.52);
    box-shadow: 0 1.8rem 5.5rem rgba(0, 0, 0, 0.22);
    transform: translateY(0);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.home-reference-card:hover,
.home-reference-card:focus-visible {
    transform: translateY(-0.6rem);
    border-color: rgba(142, 192, 124, 0.62);
    box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.32);
}

.home-reference-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 0.4rem;
}

.home-reference-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(142, 192, 124, 0.08);
}

.home-reference-media img,
.home-reference-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 360ms ease;
}

.home-reference-list.is-single .home-reference-main-image {
    width: min(108%, 86rem);
    height: auto;
    transform: translateY(0) rotate(-1.5deg);
}

.home-reference-card:hover .home-reference-media img,
.home-reference-card:focus-visible .home-reference-media img {
    transform: scale(1.055);
}

.home-reference-card:hover .reference-device img,
.home-reference-card:focus-visible .reference-device img {
    transform: none;
}

.home-reference-list.is-single .home-reference-card:hover .home-reference-main-image,
.home-reference-list.is-single .home-reference-card:focus-visible .home-reference-main-image {
    transform: translateY(-0.8rem) rotate(-1deg) scale(1.03);
}

.home-reference-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1.4rem;
    padding: clamp(2.2rem, 3vw, 3.2rem);
}

.home-reference-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-reference-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    margin-left: 0.8rem;
    border-radius: 999px;
    background: currentColor;
    vertical-align: middle;
}

.home-reference-card h3 {
    margin: 0;
    font-size: clamp(2.4rem, 2.2vw, 3.4rem);
    line-height: 1.1;
}

.home-reference-card p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.55rem, 1.22vw, 1.8rem);
    line-height: 1.58;
    text-align: inherit;
}

.home-reference-tags {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
}

.home-reference-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(142, 192, 124, 0.34);
    border-radius: 999px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}

.home-reference-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.6rem;
    margin-top: 0.8rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.home-reference-link::after {
    content: "→";
    transition: transform 180ms ease;
}

.home-reference-link:hover::after,
.home-reference-link:focus-visible::after {
    transform: translateX(0.35rem);
}

.home-reference-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 0.5rem;
    border-radius: 0.8rem;
}

body.theme-light .home-reference-card {
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 2rem 6rem rgba(27, 57, 62, 0.09);
}

body.theme-light .home-reference-card:hover,
body.theme-light .home-reference-card:focus-visible {
    box-shadow: 0 2.6rem 7rem rgba(27, 57, 62, 0.14);
}

body.theme-light .home-benefit-item small {
    color: var(--accent);
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr);
    gap: 2rem;
    width: min(980px, 100%);
    margin: 0 auto;
}

.dashboard-tab-slider {
    min-width: 0;
}

.dashboard-slider-arrow {
    display: none;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.dashboard-group-label {
    margin: 0.8rem 0 0.1rem;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.dashboard-group-label:first-child {
    margin-top: 0;
}

.dashboard-sidebar button {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    color: var(--muted);
    background: rgba(29, 33, 32, 0.38);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-sidebar button span {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    color: rgba(255, 255, 255, 0);
    background: rgba(142, 192, 124, 0.12);
    rotate: 45deg;border: 1px solid var(--accent);
    margin-right: 1rem;
    transition: transform 0.9s ease-in-out;
}

.dashboard-sidebar button:hover,
.dashboard-sidebar button.is-active {
    color: var(--text);
    border-color: var(--accent);
    transform: translateX(0.2rem);
}

.dashboard-sidebar button:hover span {

    box-shadow:inset 0 0 1rem var(--accent-strong), 0 0 1rem var(--accent);
}

.dashboard-sidebar button.is-active span {
    background-color: var(--accent);
    box-shadow:inset 0 0 1rem var(--accent), 0 0 1rem var(--accent);
}

.dashboard-sidebar button.is-active {
    box-shadow: 0 0 1.8rem rgba(142, 192, 124, 0.12);
}

.dashboard-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-panel p {
    max-width: 620px;
}

.dashboard-current-module {
    display: none;
}

.module-page .career-wireframe-title .is-accent {
    color: var(--accent);
}

.module-page .career-wireframe-card {
    background: rgba(29, 33, 32, 0.68);
    border: 1px solid rgba(142, 192, 124, 0.18);
}

.module-page .career-wireframe-card-type {
    color: var(--accent);
}

.dashboard-intro {
    margin-bottom: 1rem;
}

.micasa-teaser {
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.micasa-teaser p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.micasa-teaser .link-btn {
    display: inline-flex;
}

.micasa-mini-window {
    position: relative;
    overflow: hidden;
    max-width: 62rem;
    margin: 1rem 0 1.8rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2.4rem 5rem rgba(0, 0, 0, 0.22);
}

.micasa-mini-window::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: grayscale(0.35) saturate(0.7);
}

.micasa-demo-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: 0.8rem;
    background: rgba(15, 23, 42, 0.86);
    color: #f8fafc;
    padding: 0.75rem 1.6rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.1vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 1.2rem 3rem rgba(15, 23, 42, 0.28);
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-12deg);
    white-space: nowrap;
}

.micasa-mini-topbar {
    min-height: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.9);
}

.micasa-mini-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.micasa-mini-brand > span {
    width: 3.6rem;
    height: 3.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.1rem;
    background: #2563eb;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.micasa-mini-brand strong {
    display: block;
    color: #2563eb;
    font-size: 1.4rem;
    line-height: 1;
}

.micasa-mini-brand small,
.micasa-mini-head small,
.micasa-mini-metrics small {
    display: block;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.micasa-mini-actions {
    display: flex;
    gap: 0.45rem;
}

.micasa-mini-actions span {
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: #cbd5e1;
}

.micasa-mini-body {
    display: grid;
    grid-template-columns: 14.2rem minmax(0, 1fr);
    min-height: 30rem;
}

.micasa-mini-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 36rem;
    overflow: hidden;
    padding: 1.2rem 0.9rem;
    border-right: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.68);
}

.micasa-mini-nav span {
    display: block;
    border-radius: 1rem;
    padding: 0.75rem 0.9rem;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 700;
}

.micasa-mini-nav span.is-active {
    background: #f4e6b2;
    color: #0f172a;
    box-shadow: inset 0.35rem 0 0 #2563eb;
}

.micasa-mini-content {
    padding: 1.4rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.micasa-mini-content:not(.is-visible) {
    opacity: 0.72;
    transform: translateY(0.4rem);
}

.micasa-mini-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.micasa-mini-head strong {
    display: block;
    margin-top: 0.35rem;
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    line-height: 1.1;
    font-weight: 900;
}

.micasa-mini-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #2563eb;
    padding: 0.55rem 0.85rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.micasa-mini-status::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 0.35rem currentColor;
    opacity: 0.85;
}

.micasa-mini-status[data-status-tone="success"] {
    background: #dcfce7;
    color: #15803d;
}

.micasa-mini-status[data-status-tone="warning"] {
    background: #fef3c7;
    color: #b45309;
}

.micasa-mini-status[data-status-tone="info"] {
    background: #eef2ff;
    color: #2563eb;
}

.micasa-mini-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.micasa-mini-metrics article {
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 0.6rem 1.4rem rgba(15, 23, 42, 0.04);
}

.micasa-mini-metrics strong {
    display: block;
    margin-top: 0.35rem;
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 900;
}

.micasa-mini-table {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    background: #fff;
}

.micasa-mini-table div {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(7rem, 0.8fr) auto;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #f1f5f9;
}

.micasa-mini-table div:last-child {
    border-bottom: 0;
}

.micasa-mini-table strong {
    min-width: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.micasa-mini-table span {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 700;
}

.micasa-mini-table em {
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    padding: 0.35rem 0.65rem;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.micasa-mini-table em[data-tone="success"] {
    background: #dcfce7;
    color: #15803d;
}

.micasa-mini-table em[data-tone="warning"] {
    background: #fef3c7;
    color: #b45309;
}

.micasa-mini-table em[data-tone="info"] {
    background: #dbeafe;
    color: #2563eb;
}

.micasa-mini-table[data-view-mode="analytics"] div {
    position: relative;
    grid-template-columns: minmax(0, 1.2fr) minmax(7rem, 0.9fr) auto;
}

.micasa-mini-table[data-view-mode="analytics"] div::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0.45rem;
    height: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb 0 68%, #e2e8f0 68% 100%);
}

.micasa-mini-table[data-view-mode="booking"] strong::before,
.micasa-mini-table[data-view-mode="tickets"] strong::before,
.micasa-mini-table[data-view-mode="people"] strong::before {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.7rem;
    border-radius: 999px;
    background: #2563eb;
}

.micasa-mini-table[data-view-mode="booking"] strong::before {
    background: #b45309;
}

.micasa-mini-table[data-view-mode="tickets"] strong::before {
    background: #64748b;
}

.micasa-mini-table[data-view-mode="people"] strong::before {
    background: #2563eb;
}

.micasa-mini-table[data-view-mode="progress"] div {
    position: relative;
    padding-bottom: 1.45rem;
}

.micasa-mini-table[data-view-mode="progress"] div::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0.55rem;
    height: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #16a34a 0 82%, #e2e8f0 82% 100%);
}

.module-slider-wrap {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding-top: 1rem;
}

.module-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.module-overview-grid .card {
    min-height: 21rem;
}

.module-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.module-slider-controls button {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    color: var(--accent);
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
}

.module-slider-controls button:hover {
    border-color: var(--accent);
    color: var(--text);
}

.module-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(26rem, 32%);
    gap: 1.8rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding: 1rem 0 1.4rem;
}

.module-slide {
    min-height: 23rem;
    scroll-snap-align: start;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    width: min(1050px, 100%);
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 2.4rem;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 0;
}

.process-timeline article {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 0;
}

.process-timeline article > span {
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    color: var(--accent);
    box-shadow: 0 0 1rem rgba(142, 192, 124, 0.25);
}

.process-timeline h3 {
    margin: 0;
}

.process-timeline p {
    margin: 0;
    text-align: center;
    font-size: 1.35rem;
}

.home-process-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(2rem, calc((100vw - 140rem) / 2 + 2rem));
    padding-right: max(2rem, calc((100vw - 140rem) / 2 + 2rem));
    background: rgba(15, 18, 17, 0.56);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-process-band:hover {
    background: rgba(15, 18, 17, 0.56);
    backdrop-filter: none;
    border-radius: 0;
}

.home-process-band h2 {
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--accent);
    font-size: clamp(3.8rem, 5vw, 6.8rem);
    line-height: 1.02;
}

.home-process-band .process-timeline {
    width: 100%;
    gap: clamp(1.8rem, 2.4vw, 3.2rem);
    margin-top: clamp(4rem, 6vw, 7rem);
}

.home-process-band .process-timeline::before {
    top: 5.5rem;
    left: 8%;
    right: 8%;
}

.home-process-band .process-timeline article {
    gap: 1.4rem;
}

.home-process-band .process-timeline article > span {
    width: clamp(8rem, 9vw, 12rem);
    height: clamp(8rem, 9vw, 12rem);
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    text-stroke: 1px var(--accent);
    border-color: var(--accent);
    background: var(--bg);
    font-size: clamp(3rem, 4vw, 5.4rem);
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 0 3rem rgba(142, 192, 124, 0.18);
}

.home-process-band .process-timeline h3 {
    color: var(--accent);
    font-size: clamp(2rem, 1.8vw, 2.8rem);
    line-height: 1.15;
}

.home-process-band .process-timeline p {
    max-width: 23rem;
    font-size: clamp(1.45rem, 1.1vw, 1.65rem);
    line-height: 1.5;
}

.home-process-band .process-timeline.is-sequence-ready::before {
    opacity: 0.42;
    transform: scaleX(0.12);
    transform-origin: left center;
}

.home-process-band .process-timeline.is-sequence-visible::before {
    animation: processLineReveal 2.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-process-band .process-timeline.is-sequence-ready article:nth-child(n+2) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.4rem) scale(0.96);
}

.home-process-band .process-timeline.is-sequence-visible article {
    pointer-events: auto;
}

.home-process-band .process-timeline.is-sequence-visible article:nth-child(2) {
    animation: processStepReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 620ms forwards;
}

.home-process-band .process-timeline.is-sequence-visible article:nth-child(3) {
    animation: processStepReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 1240ms forwards;
}

.home-process-band .process-timeline.is-sequence-visible article:nth-child(4) {
    animation: processStepReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 1860ms forwards;
}

@keyframes processStepReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes processLineReveal {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes processLineRevealVertical {
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-process-band .process-timeline.is-sequence-ready::before,
    .home-process-band .process-timeline.is-sequence-visible::before,
    .home-process-band .process-timeline.is-sequence-ready article:nth-child(n+2),
    .home-process-band .process-timeline.is-sequence-visible article,
    .home-process-band .process-timeline.is-sequence-visible + .home-process-cta .process-cta-link,
    .home-process-band .process-timeline.is-sequence-visible + .home-process-cta .process-cta-link::before {
        animation: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

.home-process-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: clamp(4rem, 5vw, 6rem) auto 0;
    padding-top: clamp(2.8rem, 4vw, 4rem);
    border-top: 1px solid var(--border);
}

.home-process-cta p {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.8rem, 1.5vw, 2.3rem);
    font-weight: 600;
}

.process-cta-link {
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.4rem;
    padding: 0.9rem 1.6rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.process-cta-link span {
    position: relative;
    z-index: 2;
}

.process-cta-link::after {
    content: "→";
    position: relative;
    z-index: 2;
    margin-left: 0.7rem;
    transition: transform 0.22s ease;
}

.process-cta-link::before {
    content: "";
    position: absolute;
    inset: -1.8rem -2.2rem;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle, var(--accent) 0 0.24rem, transparent 0.28rem) 8% 42% / 2.2rem 2.2rem,
        radial-gradient(circle, #f4d35e 0 0.2rem, transparent 0.24rem) 26% 12% / 2.6rem 2.6rem,
        radial-gradient(circle, var(--text) 0 0.16rem, transparent 0.2rem) 48% 4% / 2.4rem 2.4rem,
        radial-gradient(circle, var(--accent) 0 0.22rem, transparent 0.26rem) 72% 16% / 2.8rem 2.8rem,
        radial-gradient(circle, #f4d35e 0 0.18rem, transparent 0.22rem) 92% 46% / 2.2rem 2.2rem,
        radial-gradient(circle, var(--accent) 0 0.18rem, transparent 0.22rem) 68% 88% / 2.5rem 2.5rem,
        radial-gradient(circle, var(--text) 0 0.14rem, transparent 0.18rem) 24% 84% / 2rem 2rem;
    background-repeat: no-repeat;
    transform: scale(0.62);
}

.home-process-band .process-timeline.is-sequence-visible + .home-process-cta .process-cta-link {
    animation: processCtaPop 1640ms cubic-bezier(0.18, 1.08, 0.34, 1) 2450ms both;
}

.home-process-band .process-timeline.is-sequence-visible + .home-process-cta .process-cta-link::before {
    animation: processCtaStars 2400ms ease-out 2520ms both;
}

.process-cta-link:hover {
    color: var(--text);
    border-color: var(--text);
    background: rgba(142, 192, 124, 0.08);
    transform: translateY(-0.2rem);
}

.process-cta-link:hover::after {
    transform: translateX(0.3rem);
}

body.theme-light .home-process-band {
    background: rgba(255, 250, 240, 0.76);
}

body.theme-light .home-process-band:hover {
    background: rgba(255, 250, 240, 0.76);
}

body.theme-light .process-cta-link {
    color: var(--accent);
}

body.theme-light .process-cta-link:hover {
    color: var(--text);
    border-color: var(--text);
}

@keyframes processCtaPop {
    0% {
        opacity: 0;
        transform: translateY(-1.2rem) scale(10);
        box-shadow: 0 0 0 rgba(142, 192, 124, 0);
    }

    8% {
        opacity: 0.98;
        transform: translateY(-0.8rem) scale(2.4);
        box-shadow: 0 0 5rem rgba(142, 192, 124, 0.5);
    }

    34% {
        opacity: 1;
        transform: translateY(-0.35rem) scale(1.18);
        box-shadow: 0 0 3.2rem rgba(142, 192, 124, 0.42);
    }

    64% {
        transform: translateY(0.08rem) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 0 1.4rem rgba(142, 192, 124, 0.2);
    }
}

@keyframes processCtaStars {
    0% {
        opacity: 0;
        transform: scale(0.45) rotate(-8deg);
        filter: blur(0);
    }

    18% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.45) rotate(14deg);
        filter: blur(0.08rem);
    }
}

/* --- Content Layouts --- */
.content-block {
    margin-bottom: 60px;
}

#themos {}

.link-btn {
    color: var(--accent);
    font-family: 'Inter';
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
}

.footer-link-btn {
    color: inherit;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin: 50px 0;
}

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

.services-grid .card {
    padding: 3rem 2rem;
}

.package-card.is-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(142, 192, 124, 0.25), 0 18px 50px rgba(0, 0, 0, 0.2);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: stretch;
    width: min(1000px, 100%);
    margin: 0 auto;
}

.card {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.card .small-tag {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

/* --- Admin Highlight --- */
.admin-highlight {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.split-layout .admin-highlight {
    margin-top: 0;
}

.admin-highlight h3 {
    text-align: center;
    color: var(--accent);
}

.admin-highlight p {
    margin-bottom: 0;
    text-align: center;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    padding: 3rem;
    font-family: 'Inter', sans-serif;
    color: var(--muted);
}

.feature-list li {
    position: relative;
    padding-left: 2.8rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: .9rem;
    height: .9rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 1rem rgba(142, 192, 124, 0.45);
}

.about-page {
    display: flex;
    flex-direction: column;
    gap: clamp(5rem, 8vw, 10rem);
}

.about-hero {
    width: 100%;
    margin: 0;
}

.about-hero-visual {
    position: relative;
    align-self: end;
    margin: 0;
}

.about-hero-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    border-radius: 1.8rem;
    background: rgba(0, 0, 0, 0.18);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.22);
}

.about-hero-visual figcaption {
    margin-top: 1.2rem;
    padding: 0 0.2rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
}

.about-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.about-copy-grid p {
    margin: 0;
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-copy-grid p:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.about-work-list {
    width: 100%;
    margin: 1.4rem 0 2rem;
}

.team-grid {
    display: flex;
    align-items: stretch;
    gap: clamp(1.6rem, 2.4vw, 2.8rem);
    width: 100%;
    margin: 0 auto;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 0;
    min-height: 22rem;
    background: rgba(12, 18, 15, 0.28);
    backdrop-filter: none;
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    padding: clamp(2.2rem, 2.6vw, 3.2rem);
    overflow: hidden;
    transition: flex-basis 520ms cubic-bezier(0.22, 1, 0.36, 1),
        flex-grow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms ease,
        transform 420ms ease,
        filter 420ms ease,
        box-shadow 420ms ease,
        border-color 420ms ease;
}

.team-focus-grid.has-active .team-focus-card.is-active {
    flex: 1 1 74%;
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
    box-shadow: none;
}

.team-focus-grid.has-active .team-focus-card.is-inactive {
    flex: 0.35 1 26%;
    opacity: 0.64;
    filter: brightness(0.82);
    cursor: pointer;
}

.team-focus-card:not(.is-active):hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
    box-shadow: none;
}

.team-focus-card:hover .team-portrait {
    transform: scale(1.025);
}

.team-portrait {
    width: 100%;
    height: 24rem;
    object-fit: contain;
    object-position: center;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    margin-bottom: 2.4rem;
    padding: 1.2rem;
    box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.16);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease;
}

.team-portrait-photo {
    width: min(30rem, 100%);
    height: min(30rem, 70vw);
    align-self: center;
    object-fit: cover;
    object-position: 53% 34%;
    border-radius: 999px;
    padding: 0;
}

.team-card h3 {
    margin: 0 0 0.7rem;
    color: var(--text);
    font-size: clamp(2.6rem, 2.3vw, 3.6rem);
    line-height: 1.08;
}

.team-card > p,
.team-extra p {
    margin: 0 0 1.2rem;
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.team-card .feature-list {
    width: 100%;
    margin: 1.4rem 0 2rem;
    padding: 1.8rem;
    gap: 0.8rem;
    font-size: 1.45rem;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    background: rgba(142, 192, 124, 0.05);
}

.team-extra {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    opacity: 0;
    transform: translateY(1.2rem);
    transition: grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 360ms ease 80ms,
        transform 360ms ease 80ms;
}

.team-extra-inner {
    min-height: 0;
    overflow: hidden;
}

.team-focus-card.is-active .team-extra {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.team-toggle,
.team-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 4rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: transparent;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    text-align: center;
    transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.team-toggle:hover,
.team-close:hover {
    color: var(--bg);
    border-color: var(--accent);
    background: var(--accent);
}

.team-toggle {
    margin-top: auto;
}

.team-close {
    margin-top: 1.2rem;
}

.team-focus-card.is-active .team-toggle {
    display: none;
}

.team-mail {
    display: inline-flex;
    margin: 0.2rem 0 1.6rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    line-height: 1.4;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.team-mail:hover {
    color: var(--accent-strong);
}

.team-dog-card {
    display: grid;
    grid-template-columns: 16rem minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.6rem, 2.4vw, 2.8rem);
    width: min(82rem, 100%);
    margin: clamp(1.6rem, 2.4vw, 2.8rem) auto 0;
    padding: clamp(1.6rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-dog-card:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.team-dog-card img {
    display: block;
    width: 16rem;
    height: 16rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.16);
}

.team-dog-card h3 {
    margin: 0.2rem 0 0.3rem;
    color: var(--text);
    font-size: clamp(2.4rem, 2.2vw, 3.4rem);
    line-height: 1.08;
}

.team-dog-card strong {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    line-height: 1.25;
}

.team-dog-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.52;
}

.lab-panel {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-accordion {
    width: min(92rem, 100%);
    margin: 0 auto;
}

.about-accordion summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: clamp(2.2rem, 3vw, 3.4rem);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
    list-style: none;
    text-align: center;
}

.about-accordion summary::-webkit-details-marker {
    display: none;
}

.about-accordion-title {
    display: block;
    color: var(--text);
    font-size: clamp(2.8rem, 4.5vw, 5.4rem);
    line-height: 1.02;
    text-align: center;
}

.about-accordion-title::after {
    content: "+";
    display: inline-flex;
    margin-left: 1rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.72em;
    vertical-align: middle;
}

.about-accordion[open] .about-accordion-title::after {
    content: "-";
}

.about-accordion-body {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.about-accordion-body p {
    margin: 0;
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.values-carousel {
    width: 100%;
    margin: 0 auto;
}

.values-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.values-carousel-controls button {
    width: 4.2rem;
    height: 4.2rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: rgba(12, 18, 15, 0.28);
    color: var(--accent);
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease, background 220ms ease;
}

.values-carousel-controls button:hover:not(:disabled) {
    transform: translateY(-0.2rem);
    border-color: var(--accent-strong);
    background: rgba(142, 192, 124, 0.1);
}

.values-carousel-controls button:disabled {
    opacity: 0.35;
    cursor: default;
}

.values-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 1.6rem) / 2);
    gap: 1.6rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 1.2rem 1.2rem 2.4rem;
    margin: -1.2rem;
}

.values-track::-webkit-scrollbar {
    display: none;
}

.values-card {
    scroll-snap-align: start;
    min-height: 24rem;
    border-radius: 1.6rem;
}

body.theme-light .about-copy-grid p,
body.theme-light .team-card,
body.theme-light .about-accordion-body p {
    background: rgba(255, 255, 255, 0.62);
}

body.theme-light .about-copy-grid p:hover,
body.theme-light .team-focus-grid.has-active .team-focus-card.is-active,
body.theme-light .team-focus-card:not(.is-active):hover,
body.theme-light .about-accordion-body p:hover {
    background: rgba(255, 255, 255, 0.78);
}

.lab-panel .link-btn {
    align-self: flex-start;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    width: min(1000px, 100%);
    margin: 0 auto;
}

.faq-list article,
.faq-list details {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    padding: 2.4rem;
}

.faq-list details {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
    border-color: var(--accent);
    box-shadow: 0 0 2rem rgba(142, 192, 124, 0.12);
}

.faq-list h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    background: rgba(29, 33, 32, 0.38);
    font-size: 1.8rem;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list details p {
    margin-top: 1.4rem;
}

.faq-list p {
    margin-bottom: 0;
}

.copy-panel {
    width: min(980px, 100%);
    margin: 0 auto;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    padding: 4rem;
}

.copy-panel p:last-child {
    margin-bottom: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    width: min(1100px, 100%);
    margin: 4rem auto 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
    width: 100%;
    margin-top: 4rem;
}

.process-card {
    min-height: 22rem;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.final-cta p {
    text-align: center;
    max-width: 720px;
}

.final-cta.final-cta-personal {
    display: grid;
    grid-template-columns: minmax(28rem, 1fr) minmax(26rem, 38rem);
    align-items: center;
    gap: clamp(3rem, 5vw, 7rem);
    width: min(108rem, 100%);
    margin: 0 auto;
    text-align: left;
}

.final-cta-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
}

.final-cta-copy p {
    max-width: 64rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.8rem, 1.7vw, 2.4rem);
    line-height: 1.62;
    text-align: left;
}

.final-cta-contact {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    align-items: center;
    gap: 2.2rem;
    padding: 1.4rem 0;
}

.final-cta-contact img {
    width: 15rem;
    height: 15rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    object-fit: cover;
    object-position: 53% 34%;
    box-shadow: 0 0 2rem rgba(142, 192, 124, 0.18);
}

.final-cta-contact span,
.final-cta-contact strong,
.final-cta-contact a {
    display: block;
    font-family: 'Inter', sans-serif;
}

.final-cta-contact span {
    color: var(--muted);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.final-cta-contact strong {
    margin-top: 0.3rem;
    color: var(--text);
    font-size: 2rem;
    line-height: 1.2;
}

.final-cta-contact a {
    margin-top: 0.5rem;
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.final-cta-contact a:hover {
    color: var(--accent-strong);
}

.seo-landing {
    gap: clamp(8rem, 10vw, 14rem);
}

.seo-landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(34rem, 0.78fr);
    align-items: center;
    gap: clamp(4rem, 7vw, 10rem);
    width: min(118rem, 100%);
    margin: 0 auto;
    padding: clamp(8rem, 10vw, 13rem) 0 clamp(3rem, 5vw, 6rem);
}

.seo-landing-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.seo-landing-hero h1 {
    max-width: 76rem;
    margin: 0 0 2.8rem;
    color: var(--text);
    font-size: clamp(5rem, 6.6vw, 9.4rem);
    line-height: 0.96;
    text-align: left;
}

.seo-landing-hero p {
    max-width: 66rem;
    color: var(--muted);
    font-size: clamp(1.9rem, 2vw, 2.55rem);
    line-height: 1.55;
}

.seo-landing-hero .hero-actions {
    justify-content: flex-start;
}

.seo-landing-hero-media {
    position: relative;
    margin: 0;
    min-height: 38rem;
}

.seo-landing-hero-media img {
    width: 100%;
    max-width: 54rem;
    border-radius: 2.4rem;
    object-fit: cover;
    filter: drop-shadow(0 2.8rem 4.8rem rgba(0, 0, 0, 0.28));
    transform: rotate(1.5deg);
}

.seo-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: clamp(4rem, 5vw, 6.8rem) max(2.4rem, calc((100vw - 118rem) / 2));
    background: rgba(142, 192, 124, 0.92);
    color: #07100a;
}

.seo-proof-strip article {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
    padding: 1.8rem;
    text-align: center;
}

.seo-proof-strip strong {
    color: #07100a;
    font-family: 'Inter', sans-serif;
    font-size: clamp(4.2rem, 6vw, 8.4rem);
    line-height: 0.9;
    -webkit-text-stroke: 1px rgba(7, 16, 10, 0.36);
}

.seo-proof-strip span {
    max-width: 18rem;
    color: #07100a;
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
}

.seo-split-section {
    display: grid;
    grid-template-columns: minmax(28rem, 0.72fr) minmax(42rem, 1fr);
    gap: clamp(3rem, 6vw, 8rem);
    align-items: start;
    width: min(112rem, 100%);
    margin: 0 auto;
}

.seo-split-section h2 {
    max-width: 48rem;
    margin-bottom: 0;
    text-align: left;
}

.seo-copy-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.seo-copy-stack p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.75rem, 1.7vw, 2.25rem);
    line-height: 1.65;
}

.seo-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
    width: min(118rem, 100%);
    margin: 0 auto;
}

.seo-feature-grid article {
    min-height: 23rem;
    padding: 2.6rem;
    border-top: 1px solid var(--border);
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.seo-feature-grid article:hover {
    transform: translateY(-0.4rem);
    border-color: var(--accent);
}

.seo-feature-grid span {
    display: block;
    margin-bottom: 2.4rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.seo-feature-grid h3 {
    margin-bottom: 1.4rem;
    font-size: clamp(2rem, 1.9vw, 2.6rem);
}

.seo-feature-grid p {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.55;
}

.seo-feature-grid-compact article {
    min-height: 19rem;
}

.seo-reference-panel {
    display: grid;
    grid-template-columns: minmax(28rem, 0.62fr) minmax(48rem, 1fr);
    gap: clamp(4rem, 6vw, 8rem);
    align-items: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: clamp(6rem, 8vw, 10rem) max(2.4rem, calc((100vw - 118rem) / 2));
    background: rgba(11, 15, 13, 0.54);
}

.seo-reference-copy h2 {
    text-align: left;
}

.seo-reference-copy p {
    max-width: 54rem;
    color: var(--muted);
    font-size: clamp(1.8rem, 1.7vw, 2.3rem);
    line-height: 1.62;
}

.seo-device-preview {
    position: relative;
    min-height: clamp(32rem, 38vw, 48rem);
}

.seo-device-preview img {
    position: absolute;
    display: block;
    height: auto;
    filter: drop-shadow(0 2.8rem 4.8rem rgba(0, 0, 0, 0.32));
}

.seo-device-laptop {
    right: 2rem;
    bottom: 0;
    width: min(78%, 64rem);
}

.seo-device-phone {
    left: 0;
    bottom: 2rem;
    width: min(25%, 16rem);
    z-index: 2;
}

.seo-pricing-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    width: min(108rem, 100%);
    margin: 0 auto;
    padding: clamp(4rem, 5vw, 6rem) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seo-pricing-cta h2 {
    margin-bottom: 1.6rem;
    text-align: left;
}

.seo-pricing-cta p {
    max-width: 68rem;
    margin: 0;
    font-size: clamp(1.75rem, 1.65vw, 2.2rem);
    line-height: 1.6;
}

.seo-content-details {
    width: min(98rem, 100%);
    margin: 0 auto;
}

.seo-content-details details {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.seo-content-details summary {
    cursor: pointer;
    padding: 2.2rem 0;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.seo-content-details div {
    padding: 0 0 2.6rem;
}

.seo-content-details p {
    max-width: 86rem;
    font-size: 1.7rem;
    line-height: 1.65;
}

.module-page {
    padding-top: 4rem;
}

.module-page .services-module,
.module-page .career-wireframe,
.module-page .shell {
    color: var(--text);
}

.module-page .services-module,
.module-page #careerListingApp,
.module-page #careerDetailApp,
.module-page #careerApplyApp,
.module-page #careerThankYouApp {
    backdrop-filter: blur(var(--blur));
}

.pricing-promo-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.pricing-promo-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.pricing-promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.pricing-promo-leaves {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.pricing-promo-leaves span {
    position: absolute;
    top: -4rem;
    left: var(--leaf-left, 50%);
    width: 1.8rem;
    height: 1.2rem;
    border-radius: 90% 0 90% 0;
    background: linear-gradient(135deg, #f59e0b, #9a3412);
    opacity: 0.78;
    transform: rotate(var(--leaf-rotate, 18deg));
    animation: promoLeafFall var(--leaf-duration, 7s) linear infinite;
    animation-delay: var(--leaf-delay, 0s);
}

.pricing-promo-leaves span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.05rem;
    width: 1px;
    height: 1.1rem;
    background: rgba(87, 36, 12, 0.58);
    transform: rotate(42deg);
    transform-origin: top;
}

.pricing-promo-leaves span:nth-child(1) {
    --leaf-left: 10%;
    --leaf-duration: 7.4s;
    --leaf-delay: -1.6s;
    --leaf-rotate: 14deg;
}

.pricing-promo-leaves span:nth-child(2) {
    --leaf-left: 26%;
    --leaf-duration: 8.2s;
    --leaf-delay: -4.2s;
    --leaf-rotate: -28deg;
}

.pricing-promo-leaves span:nth-child(3) {
    --leaf-left: 43%;
    --leaf-duration: 6.8s;
    --leaf-delay: -2.7s;
    --leaf-rotate: 34deg;
}

.pricing-promo-leaves span:nth-child(4) {
    --leaf-left: 62%;
    --leaf-duration: 7.8s;
    --leaf-delay: -5.1s;
    --leaf-rotate: -16deg;
}

.pricing-promo-leaves span:nth-child(5) {
    --leaf-left: 78%;
    --leaf-duration: 8.8s;
    --leaf-delay: -3.3s;
    --leaf-rotate: 24deg;
}

.pricing-promo-leaves span:nth-child(6) {
    --leaf-left: 91%;
    --leaf-duration: 7.1s;
    --leaf-delay: -0.8s;
    --leaf-rotate: -36deg;
}

.pricing-promo-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 54rem);
    padding: clamp(3rem, 5vw, 5rem);
    border: 1px solid rgba(245, 158, 11, 0.46);
    border-radius: 2.4rem;
    background:
        linear-gradient(145deg, rgba(245, 158, 11, 0.16), rgba(12, 18, 15, 0.94) 42%),
        rgba(12, 18, 15, 0.96);
    box-shadow: 0 3rem 9rem rgba(0, 0, 0, 0.42);
    text-align: center;
    transform: translateY(1.4rem) scale(0.98);
    transition: transform 0.26s ease;
}

.pricing-promo-popup.is-visible .pricing-promo-dialog {
    transform: translateY(0) scale(1);
}

.pricing-promo-close {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    display: grid;
    width: 3.8rem;
    height: 3.8rem;
    place-items: center;
    border: 1px solid rgba(235, 219, 178, 0.22);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 2.4rem;
    line-height: 1;
}

.pricing-promo-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid rgba(245, 158, 11, 0.46);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-promo-time {
    display: inline-flex;
    margin-top: 1.3rem;
    margin-bottom: 0;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.12);
    color: #f87171;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.pricing-promo-dialog h2 {
    margin: 0;
    font-size: clamp(3.8rem, 6vw, 6.4rem);
    line-height: 0.98;
}

.pricing-promo-dialog p {
    max-width: 38rem;
    margin: 1.6rem auto 0;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.6vw, 2.1rem);
    line-height: 1.5;
}

.pricing-promo-valid {
    display: block;
    margin-top: 1.1rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-promo-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.8rem;
}

.pricing-promo-actions button {
    min-height: 4.8rem;
    padding: 1rem 1.8rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
}

body.theme-light .pricing-promo-backdrop {
    background: rgba(15, 23, 42, 0.34);
}

body.theme-light .pricing-promo-dialog {
    background:
        linear-gradient(145deg, rgba(245, 158, 11, 0.18), rgba(255, 255, 255, 0.96) 42%),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 3rem 9rem rgba(27, 57, 62, 0.18);
}

@keyframes promoLeafFall {
    0% {
        transform: translate3d(0, -4rem, 0) rotate(var(--leaf-rotate, 0deg));
    }

    45% {
        transform: translate3d(2.8rem, 46vh, 0) rotate(calc(var(--leaf-rotate, 0deg) + 130deg));
    }

    100% {
        transform: translate3d(-2.2rem, 104vh, 0) rotate(calc(var(--leaf-rotate, 0deg) + 310deg));
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-promo-leaves span {
        animation: none;
        opacity: 0.24;
    }
}

.muchachos-pricing-page {
    display: flex;
    flex-direction: column;
    gap: clamp(5rem, 8vw, 10rem);
    background: transparent;
    backdrop-filter: none;
}

.module-page .muchachos-pricing-page {
    backdrop-filter: none;
}

.pricing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 42rem);
    align-items: end;
    gap: clamp(3rem, 6vw, 8rem);
    padding: clamp(4rem, 7vw, 8rem) 0 clamp(2rem, 4vw, 4rem);
}

.pricing-hero-copy {
    max-width: 86rem;
}

.pricing-hero-copy .tagline {
    justify-content: flex-start;
}

.pricing-hero h1 {
    margin: 1.8rem 0 2rem;
    font-size: clamp(4.4rem, 7vw, 9rem);
    line-height: 0.96;
    text-align: left;
}

.pricing-hero p {
    max-width: 72rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.8rem, 1.7vw, 2.4rem);
    line-height: 1.58;
    text-align: left;
}

.pricing-hero .hero-actions {
    justify-content: flex-start;
    margin-top: 3.2rem;
}

.pricing-hero-note {
    padding: clamp(2.4rem, 3vw, 3.4rem);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--border);
}

.pricing-hero-note strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-hero-note p {
    margin: 0;
    color: var(--muted);
    font-size: 1.7rem;
    line-height: 1.55;
}

.pricing-section {
    padding: 0;
    border-bottom: 0;
    margin: 0;
}

.pricing-section-head {
    max-width: 78rem;
    margin: 0 auto clamp(3rem, 5vw, 5rem);
    text-align: center;
}

.pricing-section-head .tagline {
    justify-content: center;
}

.pricing-section-head h2 {
    margin: 1.4rem 0 1.6rem;
    font-size: clamp(3.2rem, 5vw, 6.2rem);
    line-height: 1.02;
}

.pricing-section-head p {
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.45vw, 2rem);
    line-height: 1.58;
}

.pricing-package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.6rem, 2vw, 2.4rem);
    align-items: stretch;
}

.pricing-package {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 2rem;
    padding: clamp(2.2rem, 2.5vw, 3.2rem);
    border: 1px solid var(--border);
    border-radius: 2rem;
    background: rgba(12, 18, 15, 0.42);
    box-shadow: 0 1.4rem 4.4rem rgba(0, 0, 0, 0.18);
}

.pricing-package.is-featured {
    border-color: rgba(142, 192, 124, 0.72);
    background:
        linear-gradient(180deg, rgba(142, 192, 124, 0.13), rgba(12, 18, 15, 0.42) 34%),
        rgba(12, 18, 15, 0.48);
    box-shadow: 0 2.4rem 7rem rgba(142, 192, 124, 0.16);
    transform: translateY(-1.2rem) scale(1.035);
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    padding: 0.7rem 1.05rem;
    border: 1px solid rgba(142, 192, 124, 0.7);
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-package-head span {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-package h3 {
    margin: 0 0 1rem;
    font-size: clamp(2.6rem, 2.3vw, 3.6rem);
    line-height: 1.08;
}

.pricing-package p {
    margin: 0;
    color: var(--muted);
    font-size: 1.45rem;
    line-height: 1.52;
}

.pricing-price {
    display: grid;
    gap: 0.25rem;
    padding: 1.8rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-action-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-bottom: 0.45rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(245, 158, 11, 0.46);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.pricing-time-label {
    display: inline-flex;
    width: fit-content;
    margin-top: 0.7rem;
    padding: 0.38rem 0.65rem;
    border: 1px solid rgba(220, 38, 38, 0.48);
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.1);
    color: #f87171;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.pricing-valid-until {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
}

.pricing-price del {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
    opacity: 0.78;
}

.pricing-price strong {
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 3vw, 4.6rem);
    font-weight: 900;
    line-height: 1;
}

.pricing-price small,
.pricing-price em {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
}

.pricing-package ul {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-package li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text);
    font-size: 1.45rem;
    line-height: 1.42;
}

.pricing-package li::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: var(--accent);
}

.pricing-package details {
    border: 1px solid rgba(142, 192, 124, 0.2);
    border-radius: 1.2rem;
    background: rgba(142, 192, 124, 0.05);
}

.pricing-package summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.2rem;
    padding: 1.1rem 1.2rem;
    color: var(--accent);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.2;
    list-style: none;
}

.pricing-package summary::-webkit-details-marker {
    display: none;
}

.pricing-package summary::after {
    content: "+";
    font-size: 1.7rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.pricing-package details[open] summary::after {
    transform: rotate(45deg);
}

.pricing-package-details ul {
    padding: 0 1.2rem 1.3rem;
}

.pricing-running details {
    margin-top: 0.5rem;
}

.pricing-running details p {
    padding: 0 1.2rem 1.2rem;
}

.pricing-running details p + p {
    padding-top: 0;
}

.pricing-running {
    display: grid;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border);
}

.pricing-running span {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-running strong {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
}

.pricing-package > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.6rem;
    margin-top: 0.6rem;
    padding: 1rem 1.4rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pricing-package > a:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-0.2rem);
}

.pricing-tax-note {
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 1.3rem;
    text-align: center;
}

.pricing-module-list {
    display: grid;
    gap: 1.2rem;
    border-top: 0;
}

.pricing-module-list article {
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr) minmax(13rem, auto);
    gap: clamp(1.4rem, 2vw, 2.4rem);
    align-items: center;
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pricing-module-list article:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.pricing-module-list article > strong {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    text-stroke: 1px var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1;
}

.pricing-module-list h3,
.pricing-extra-grid h3 {
    margin: 0 0 0.7rem;
    font-size: clamp(2rem, 1.8vw, 2.8rem);
    line-height: 1.18;
}

.pricing-module-list p,
.pricing-extra-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.pricing-module-actions span,
.pricing-extra-grid strong {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    text-align: right;
}

.pricing-module-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.pricing-module-actions span {
    justify-self: end;
    min-width: 12rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(142, 192, 124, 0.36);
    border-radius: 999px;
    background: rgba(142, 192, 124, 0.08);
    text-align: center;
}

.pricing-module-actions span.is-upgrade {
    border-color: rgba(245, 158, 11, 0.46);
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

.pricing-module-actions a,
.pricing-extra-grid a {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.pricing-module-actions a::after,
.pricing-extra-grid a::after {
    content: " →";
}

.pricing-module-actions a:hover,
.pricing-extra-grid a:hover {
    color: var(--accent-strong);
}

.pricing-extra-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.6rem;
}

.pricing-extra-grid article {
    display: flex;
    min-height: 22rem;
    flex-direction: column;
    gap: 1rem;
    padding: 2.2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-extra-grid strong {
    margin-top: auto;
    text-align: left;
}

.pricing-extra-grid a {
    align-self: flex-start;
    margin-top: 0.2rem;
}

.pricing-cta {
    max-width: 84rem;
    margin: 0 auto;
    padding: clamp(5rem, 7vw, 8rem) 0;
    border-bottom: 0;
    text-align: center;
}

.pricing-cta .tagline {
    justify-content: center;
}

.pricing-cta h2 {
    margin: 1.4rem 0 1.6rem;
    font-size: clamp(3.4rem, 5vw, 6.4rem);
    line-height: 1.02;
}

.pricing-cta p {
    max-width: 68rem;
    margin: 0 auto 2.6rem;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.45vw, 2rem);
}

body.theme-light .pricing-package {
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 1.8rem 5rem rgba(27, 57, 62, 0.08);
}

body.theme-light .pricing-package.is-featured {
    background:
        linear-gradient(180deg, rgba(78, 143, 66, 0.12), rgba(255, 255, 255, 0.74) 34%),
        rgba(255, 255, 255, 0.78);
}

body.theme-light .pricing-module-list article {
    background: rgba(255, 255, 255, 0.62);
}

body.theme-light .pricing-module-list article:hover {
    background: rgba(255, 255, 255, 0.78);
}

body.theme-light .pricing-package > a:hover {
    color: var(--bg);
}

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

    .pricing-package.is-featured {
        transform: translateY(-0.6rem);
    }

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

@media (max-width: 850px) {
    .pricing-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-hero-copy,
    .pricing-hero p {
        max-width: none;
    }

    .pricing-hero-copy .tagline,
    .pricing-hero .hero-actions {
        justify-content: center;
    }

    .pricing-hero h1,
    .pricing-hero p {
        text-align: center;
    }

    .pricing-hero-note {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .muchachos-pricing-page {
        gap: 5rem;
    }

    .pricing-package-grid,
    .pricing-extra-grid {
        grid-template-columns: 1fr;
    }

    .pricing-package.is-featured {
        transform: none;
    }

    .pricing-module-list article {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .pricing-module-list article > strong {
        justify-self: center;
    }

    .pricing-module-actions {
        align-items: center;
    }

    .pricing-module-actions span {
        justify-self: center;
        text-align: center;
    }

    .pricing-extra-grid article {
        min-height: auto;
        text-align: center;
    }

    .pricing-extra-grid strong {
        text-align: center;
    }

    .pricing-extra-grid a {
        align-self: center;
    }
}

/* --- Contact Form --- */
.contact-form {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    width: 100%;
    max-width: 550px;
    margin: 40px auto 0;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.btn {
    width: 100%;
    background: var(--accent);
    color: var(--bg);
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.6rem;
    transition: background 0.2s;
}

.btn:hover {
    background: var(--accent-strong);
}

/* --- Glossary Tags --- */
.glossary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.g-item {
    background: var(--surface-2);
    padding: 8px 20px;
    border-radius: 8px;
    color: var(--muted);
    border: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
}

.g-item:hover {
    border: 1px solid var(--accent);
}

@media (max-width: 850px) {
    body {
        line-height: 1.65;
    }

    header#hero,
    header#start {
        grid-template-columns: 1fr;
        text-align: center;
        width: min(100%, calc(100% - 2rem));
        min-height: auto;
        gap: 3rem;
    }

    .hero-content {
        align-items: center;
    }

    header#start .tagline,
    header#start .hero-copy {
        text-align: center;
    }

    header#start .hero-actions,
    header#start .trust-rotator {
        justify-content: center;
    }

    .hero-proof {
        justify-self: center;
        width: min(100%, 58rem);
        min-height: clamp(30rem, 72vw, 43rem);
    }

    .hero-proof-website {
        width: min(94%, 54rem);
        right: 0;
        top: 1rem;
    }

    .hero-proof-dashboard {
        width: min(54%, 28rem);
        bottom: 1.2rem;
    }

    .hero-proof-label {
        right: 1.2rem;
        bottom: 0;
    }

    .grid,
    .services-grid,
    .module-overview-grid,
    .about-copy-grid,
    .team-grid,
    .split-layout,
    .teaser-grid,
    .detail-grid,
    .process-grid,
    .expanded-list,
    .home-contrast,
    .compare-card,
    .home-benefits,
    .benefit-card-grid,
    .dashboard-preview,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        gap: 1.4rem;
        padding: 0;
        border: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .team-grid {
        flex-direction: column;
    }

    .team-focus-grid.has-active .team-focus-card.is-active,
    .team-focus-grid.has-active .team-focus-card.is-inactive {
        flex: 1 1 auto;
        opacity: 1;
        filter: none;
    }

    .team-focus-card:not(.is-active):hover {
        transform: none;
        box-shadow: none;
    }

    .team-dog-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .values-carousel-controls {
        justify-content: center;
    }

    .values-track {
        grid-auto-columns: 100%;
    }

    .dashboard-tab-slider {
        display: grid;
        grid-template-columns: 3.6rem minmax(0, 1fr) 3.6rem;
        align-items: center;
        gap: 0.7rem;
        min-width: 0;
    }

    .dashboard-slider-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3.6rem;
        height: 3.6rem;
        border: 1px solid var(--border);
        border-radius: 999px;
        color: var(--text);
        background: rgba(29, 33, 32, 0.56);
        box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.18);
        font: 700 2.4rem/1 'Inter', sans-serif;
        cursor: pointer;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .dashboard-slider-arrow:hover,
    .dashboard-slider-arrow:focus-visible {
        color: var(--accent);
        border-color: var(--accent);
        box-shadow: 0 0 1.6rem rgba(142, 192, 124, 0.18);
        outline: none;
    }

    .dashboard-sidebar {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(15.5rem, 46%);
        gap: 1rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
        padding: 0.4rem 0.2rem 1.2rem;
    }

    .dashboard-group-label {
        display: none;
    }

    .dashboard-sidebar button {
        scroll-snap-align: start;
        min-height: 6rem;
        justify-content: center;
        white-space: nowrap;
        background: rgba(29, 33, 32, 0.38);
        border-color: var(--border);
        box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.12);
    }

    .dashboard-sidebar button:hover,
    .dashboard-sidebar button.is-active {
        transform: none;
    }

    .dashboard-panel {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .dashboard-panel .small-tag {
        display: none;
    }

    .dashboard-current-module {
        order: 2;
        display: inline-flex;
        width: fit-content;
        align-items: center;
        margin-bottom: 1rem;
        border: 1px solid rgba(142, 192, 124, 0.32);
        border-radius: 999px;
        background: rgba(142, 192, 124, 0.12);
        color: var(--accent);
        padding: 0.55rem 0.9rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .dashboard-panel h3 {
        display: none;
    }

    .dashboard-panel .dashboard-intro {
        display: none;
    }

    .dashboard-panel [data-dashboard-copy] {
        display: none;
    }

    .dashboard-panel .micasa-mini-window {
        order: 3;
        margin-top: 0;
    }

    .dashboard-panel .link-btn {
        order: 7;
        align-self: flex-start;
    }

    .copy-panel p,
    .micasa-teaser p,
    .dashboard-panel p,
    .team-card p,
    .about-accordion p,
    .values-card p,
    .benefit-card p,
    .performance-card p,
    .compare-card p,
    .page-hero p,
    .hero-copy {
        font-size: 1.65rem;
        line-height: 1.68;
    }

    .copy-panel p,
    .micasa-teaser p,
    .dashboard-panel p,
    .team-card p,
    .about-accordion p,
    .values-card p {
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card {
        min-height: auto;
        padding: 2rem;
    }

    .benefit-card strong {
        position: static;
        width: auto;
        margin-top: 1.2rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-timeline::before {
        top: 2rem;
        bottom: 2rem;
        left: 2.4rem;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, var(--accent), transparent);
    }

    .process-timeline article {
        min-height: 8rem;
        display: grid;
        grid-template-columns: 4.8rem minmax(0, 1fr);
        text-align: left;
        align-items: center;
        column-gap: 1.4rem;
    }

    .process-timeline article > span {
        grid-row: span 2;
    }

    .process-timeline p {
        text-align: left;
    }

    .module-slider {
        grid-auto-columns: 100%;
    }

    .micasa-mini-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .micasa-mini-nav {
        display: none;
    }

    .micasa-mini-head {
        flex-direction: column;
    }

    .micasa-demo-badge {
        position: absolute;
        width: max-content;
        max-width: calc(100% - 2rem);
        white-space: normal;
        text-align: center;
    }

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

    .micasa-mini-table div {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.4rem 0.8rem;
    }

    .micasa-mini-table em {
        justify-self: start;
        grid-column: 1 / -1;
    }

    .sticky-cta {
        right: 1rem;
        bottom: 0.8rem;
        left: auto;
        width: auto;
        min-height: 4.4rem;
        padding: 1rem 1.5rem;
        font-size: 1.35rem;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2.4rem;
        line-height: 1.22;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-card,
    .team-portrait,
    .team-extra,
    .team-toggle,
    .team-close {
        transition-duration: 1ms !important;
        transition-delay: 0ms !important;
    }
}

@media (max-width: 700px) {
    header#start {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 3.5rem;
    }

    .home-process-band {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    section {
        padding: 5.2rem 1rem;
    }

    .page-hero {
        padding: 6rem 1rem 3.5rem;
    }

    .page-hero h1,
    header#start h1 {
        font-size: clamp(2.7rem, 8vw, 3.5rem);
        line-height: 1.12;
        letter-spacing: 0;
    }

    .hero-copy,
    .page-hero p {
        font-size: 1.7rem;
        line-height: 1.62;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-proof {
        min-height: 27rem;
    }

    .hero-proof-website {
        width: 100%;
        transform: rotate(1.5deg);
    }

    .hero-proof-dashboard {
        width: 58%;
        transform: rotate(-3deg);
    }

    .hero-proof-label {
        font-size: 1.1rem;
        min-height: 3.4rem;
        padding: 0.7rem 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .dashboard-sidebar {
        grid-auto-columns: 100%;
        scroll-padding-inline: 0.2rem;
    }

    .micasa-mini-metrics {
        grid-template-columns: 1fr;
    }

    .micasa-mini-head > span,
    .micasa-mini-status {
        align-self: flex-start;
    }

    .about-page .team-grid,
    .about-page .team-focus-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1.8rem;
    }

    .about-page .team-focus-grid.has-active .team-focus-card.is-active,
    .about-page .team-focus-grid.has-active .team-focus-card.is-inactive {
        flex: none;
        width: 100%;
        opacity: 1;
        filter: none;
        cursor: default;
    }

    .about-page .team-card {
        width: 100%;
        max-width: none;
        padding: 2.2rem 1.6rem;
        overflow: visible;
        text-align: center;
    }

    .about-page .team-card p,
    .about-page .team-mail {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .about-page .team-portrait {
        width: min(20rem, 72vw);
        height: min(20rem, 72vw);
        margin-left: auto;
        margin-right: auto;
    }
}

footer {
    width: 100%;
    padding: 1rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

footer .footer-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

footer .guidlines-col {
    display: flex;
    flex-direction: column;
}

.site-footer {
    width: 100%;
    margin-top: 1rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
}

.site-footer .container {
    align-items: stretch;
}

.footer-primary {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
    gap: 4rem;
    width: min(920px, 100%);
    margin: 0 auto 3rem;
    text-align: center;
    align-items: start;
    justify-items: stretch;
}

.footer-brand-block,
.footer-contact-block {
    width: 100%;
    text-align: center;
}

.site-footer .brand,
.footer-primary h4,
.footer-link-grid h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-brand-block p {
    max-width: 42rem;
    margin: 0 auto;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
    width: min(880px, 100%);
    margin: 0 auto;
    text-align: center;
    justify-items: center;
}

.footer-link-grid > div {
    width: 100%;
    text-align: center;
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.footer-list p {
    margin: 0 auto;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
    flex-wrap: wrap;
}

.footer-poweredby {
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 900px) {
    .footer-primary,
    .footer-link-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom,
    footer .footer-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.legal-section a {
    color: var(--accent);
}

.legal-document {
    max-width: 96rem;
    margin: 0 auto;
}

.legal-document .legal-hero {
    text-align: left;
    align-items: flex-start;
}

.legal-document .legal-meta {
    color: var(--muted);
    font-size: 1.7rem;
    line-height: 1.7;
}

.legal-document .legal-section {
    align-items: flex-start;
    text-align: left;
    padding: 4rem 0;
}

.legal-document .legal-section + .legal-section {
    border-top: 1px solid rgba(235, 219, 178, 0.16);
}

.legal-document h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    margin-bottom: 1.6rem;
}

.legal-document p,
.legal-document li {
    color: var(--muted);
    font-size: 1.8rem;
    line-height: 1.85;
}

.legal-document p + p {
    margin-top: 1rem;
}

.legal-document ul {
    margin: 1.4rem 0 0 2.2rem;
}

.legal-document li + li {
    margin-top: 0.4rem;
}

#careerApplyApp {
    --career-apply-surface: var(--career-detail-card-bg, rgba(36, 40, 38, 0.7));
    --career-apply-surface-strong: var(--career-detail-panel-bg, rgba(29, 33, 32, 0.58));
    --career-apply-text: var(--career-detail-text, var(--text));
    --career-apply-muted: var(--career-detail-muted, var(--muted));
    --career-apply-line: rgba(142, 192, 124, 0.24);
}

#careerApplyApp .career-apply-mock-title {
    font-family: var(--font-display);
    color: var(--career-apply-text);
    font-size: var(--career-detail-title-size, clamp(3.2rem, 6vw, 5.4rem));
    line-height: var(--career-detail-title-line-height, 1.08);
    letter-spacing: var(--career-detail-title-letter-spacing, 0);
}

#careerApplyApp .career-apply-mock-intro {
    color: var(--career-apply-muted);
    font-size: var(--career-detail-copy-size, 1.8rem);
    line-height: var(--career-detail-copy-line-height, 1.72);
}

#careerApplyApp .career-apply-mock-form-card,
#careerApplyApp .career-apply-mock-job-card,
#careerApplyApp .career-apply-mock-info-card,
#careerApplyApp .career-apply-mock-visual,
#careerApplyApp .career-apply-mock-consent-card {
    border-color: var(--career-apply-line);
    background: var(--career-apply-surface);
    color: var(--career-apply-text);
    box-shadow: var(--career-listing-card-shadow, 0 18px 44px rgba(0, 0, 0, 0.18));
}

#careerApplyApp .career-apply-mock-consent-card {
    gap: 1.4rem;
}

#careerApplyApp .career-apply-mock-checkbox-row {
    display: flex;
    gap: 1.2rem;
    align-items: start;
    width: 100%;
}

#careerApplyApp .career-apply-mock-checkbox {
    display: block;
    width: 2rem !important;
    min-width: 2rem;
    max-width: 2rem;
    height: 2rem !important;
    margin: 0.4rem 0 0;
    opacity: 1;
    visibility: visible;
    appearance: auto;
    accent-color: var(--career-detail-icon-color, var(--accent));
    flex: 0 0 auto;
}

#careerApplyApp .career-apply-mock-checkbox-copy {
    display: block;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    overflow-wrap: normal;
    word-break: normal;
}

#careerApplyApp .career-apply-mock-label,
#careerApplyApp .career-apply-mock-required-note,
#careerApplyApp .career-apply-mock-checkbox-copy,
#careerApplyApp .career-apply-mock-job-title {
    color: var(--career-apply-text);
}

#careerApplyApp .career-apply-mock-label,
#careerApplyApp .career-apply-mock-input,
#careerApplyApp .career-apply-mock-select,
#careerApplyApp .career-apply-mock-textarea,
#careerApplyApp .career-apply-mock-file-button,
#careerApplyApp .career-apply-mock-file-name,
#careerApplyApp .career-apply-mock-checkbox-copy,
#careerApplyApp .career-apply-mock-consent-note,
#careerApplyApp .career-apply-mock-required-note,
#careerApplyApp .career-apply-mock-job-copy,
#careerApplyApp .career-apply-mock-backlink,
#careerApplyApp .career-apply-mock-info-card p,
#careerApplyApp .career-apply-mock-visual-caption,
#careerApplyApp .career-apply-mock-meta-row {
    font-size: var(--career-detail-card-copy-size, 1.65rem);
    line-height: var(--career-detail-card-copy-line-height, 1.6);
}

#careerApplyApp .career-apply-mock-input,
#careerApplyApp .career-apply-mock-select,
#careerApplyApp .career-apply-mock-textarea,
#careerApplyApp .career-apply-mock-file-shell {
    border-color: var(--career-apply-line);
    background: rgba(29, 33, 32, 0.54);
    color: var(--career-apply-text);
}

#careerApplyApp .career-apply-mock-input::placeholder,
#careerApplyApp .career-apply-mock-textarea::placeholder,
#careerApplyApp .career-apply-mock-file-name,
#careerApplyApp .career-apply-mock-job-copy,
#careerApplyApp .career-apply-mock-info-card p,
#careerApplyApp .career-apply-mock-meta-row,
#careerApplyApp .career-apply-mock-consent-note {
    color: var(--career-apply-muted);
}

#careerApplyApp .career-apply-mock-input:focus,
#careerApplyApp .career-apply-mock-select:focus,
#careerApplyApp .career-apply-mock-textarea:focus {
    border-color: var(--career-detail-icon-color, var(--accent));
    background: rgba(29, 33, 32, 0.78);
    box-shadow: 0 0 0 4px rgba(142, 192, 124, 0.16);
}

#careerApplyApp .career-apply-mock-required-note,
#careerApplyApp .career-apply-mock-file-button,
#careerApplyApp .career-apply-mock-info-card {
    background: var(--career-apply-surface-strong);
}

#careerApplyApp .career-apply-mock-file-button,
#careerApplyApp .career-apply-mock-backlink,
#careerApplyApp .career-apply-mock-badge,
#careerApplyApp .career-apply-mock-inline-link {
    color: var(--career-detail-icon-color, var(--accent));
}

#careerApplyApp .career-apply-mock-job-title {
    font-family: var(--font-display);
    font-size: var(--career-detail-heading-size, clamp(2.6rem, 4vw, 3.7rem));
    line-height: 1.12;
    letter-spacing: 0;
}

#careerApplyApp .career-apply-mock-badge {
    background: var(--career-detail-badge-bg, rgba(142, 192, 124, 0.12));
    font-size: var(--career-detail-badge-size, 1.15rem);
}

#careerApplyApp .career-apply-mock-submit {
    background: var(--career-detail-cta-button-bg, var(--accent));
    color: var(--career-detail-cta-button-text, var(--bg));
    font-size: var(--career-detail-cta-button-size, 1.6rem);
    box-shadow: var(--career-detail-primary-button-shadow, 0 18px 34px rgba(0, 0, 0, 0.2));
}

#careerApplyApp .career-apply-mock-modal-dialog {
    border-color: var(--career-apply-line);
    background: var(--career-apply-surface);
    color: var(--career-apply-text);
}

#careerApplyApp .career-apply-mock-modal-head h2 {
    font-family: var(--font-display);
    font-size: var(--career-detail-card-title-size, 2.4rem);
    color: var(--career-apply-text);
}

#careerApplyApp .career-apply-mock-modal-list,
#careerApplyApp .career-apply-mock-modal-button {
    color: var(--career-apply-text);
    font-size: var(--career-detail-card-copy-size, 1.65rem);
}

/* Boxless content mode: keep framed UI only where it has product/function value. */
nav {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
    border-radius: 0;
}

nav.is-scrolled {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border-color: var(--border);
    border-radius: 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

section:hover {
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
}

.card,
.copy-panel,
.feature-list,
.benefit-card,
.performance-card,
.compare-card,
.compare-card > div,
.admin-highlight,
.team-card,
.faq-list article,
.faq-list details,
.contact-form {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
}

.card:hover,
.benefit-card:hover {
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border-color: var(--accent);
    box-shadow: 0 0 2.6rem rgba(142, 192, 124, 0.14);
    transform: translateY(-0.4rem);
}

.benefit-icon {
    background: transparent;
}

.dashboard-preview,
.micasa-mini-window,
.micasa-mini-metrics article,
.micasa-mini-table,
.micasa-mini-nav,
.micasa-mini-topbar,
.process-timeline article > span {
    backdrop-filter: blur(var(--blur));
}

.about-page .team-card,
.about-page .values-card,
.about-page .about-work-list,
.about-page .team-dog-card {
    border-color: var(--border);
    background: rgba(12, 18, 15, 0.28);
    box-shadow: none;
}

.about-page .team-focus-grid.has-active .team-focus-card.is-active,
.about-page .team-focus-card:not(.is-active):hover,
.about-page .values-card:hover,
.about-page .team-dog-card:hover {
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
    box-shadow: none;
}

body.theme-light .about-page .team-card,
body.theme-light .about-page .values-card,
body.theme-light .about-page .about-work-list,
body.theme-light .about-page .team-dog-card {
    background: rgba(255, 255, 255, 0.62);
}

body.theme-light .about-page .team-focus-grid.has-active .team-focus-card.is-active,
body.theme-light .about-page .team-focus-card:not(.is-active):hover,
body.theme-light .about-page .values-card:hover,
body.theme-light .about-page .team-dog-card:hover {
    background: rgba(255, 255, 255, 0.78);
}

/* =========================
   * Digital Business Card
========================= */
.dbc .card-header {
    width: 100%;
    padding: 0.5rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    z-index: 1000;
    border: 1px solid var(--border);
}

.dbc .card-header .left, .dbc .card-header .right{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.6rem;
}
.dbc .card-header img {
    width: 4rem;
    height: 4rem;

    object-fit: cover;
    border-radius: 1000px;
    padding: 0.5rem;
}

header.dbc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.5rem;
    flex-direction: column;
    width: 100%;
}



.container .dbc > img {
    width: 14rem;
    height: 14rem;
    object-fit: cover;
    border-radius: 1000px;
    border: 0.3rem solid var(--accent);
    padding: 0.5rem;
}

.dbc .name {
    margin: 0;
}
.dbc .role {
font-size: 1.4rem;
}

.dbc .contact-btns {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.7rem;

}
.dbc a {
    text-decoration: none;
    color: var(--text);
    text-align: center;
}

.dbc .contact-btn .icon img {
    height: 3rem;
    width: 3rem;
}
.dbc .contact-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 1000px;
    height: 7rem;
    width: 7rem;
}

.dbc main h2 {
    margin: 3.5rem 0;
}


/* Services */
.dbc .service {
   display: flex;
   align-items: center;
    gap: 2rem;
    background: var(--bga);
    backdrop-filter: blur(var(--blur));
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}
.dbc .service .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--accent);
    border-radius: 1000px;
    padding: 3rem;
    margin-left: 1rem;
    height: 5rem;
    width: 5rem;
}

.dbc .service .icon img {
    height: 5rem;
    width: 5rem;
}

.dbc .service .text {
 font-size: 1.6rem;
}

.dbc .service .text p, .dbc .service .text h3{
    margin: 0;
}

.dbc .btn {
    text-decoration: none;
    margin-top: 3rem;
    margin-bottom: 10rem;
    display: flex;
    justify-content: center;
    padding: 1rem;
    color: var(--bg);
}

.dbc .btn img {
   height: 2.2rem;
   width: 2.2rem;
   margin-left: 1rem;
}



@media (max-width: 850px) {
    nav {
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.2rem;
    }

    .nav-toggle-button {
        display: inline-flex;
    }

    .nav-readmode-button {
        margin-left: auto;
        width: 4.4rem;
        height: 4.4rem;
        padding: 0;
        border-color: var(--border);
        background: var(--bga);
    }

    .nav-theme-button {
        width: 4.4rem;
        height: 4.4rem;
        padding: 0;
        border-color: var(--border);
        background: var(--bga);
    }

    .nav-readmode-button span,
    .nav-theme-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .nav-links {
        order: 5;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        margin: 0;
        padding: 0;
        transition: max-height 0.24s ease, padding 0.24s ease, visibility 0s linear 0.24s;
    }

    .nav-links.is-open {
        max-height: 42rem;
        padding-top: 1rem;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .nav-links a {
        width: 100%;
        padding: 0.9rem 0.4rem;
        font-size: 1.45rem;
        text-align: left;
    }

    .logo img {
        width: 14rem;
        height: 4.2rem;
    }

    nav.is-scrolled {
        padding-bottom: 0;
        top: .5rem;
    }
}

@media (max-width: 380px) {
    nav {
        gap: 0.6rem;
        padding: 1rem 0.8rem;
    }

    .logo img {
        width: 11rem;
        height: auto;
    }

    .nav-readmode-button,
    .nav-theme-button,
    .nav-toggle-button {
        width: 4rem;
        height: 4rem;
    }
}



@keyframes flicker {
    0% {
        opacity: .7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .7;
    }
}

@keyframes cursor {

    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body.theme-light main :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, small),
body.theme-light footer :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, small, a),
body.theme-light nav :where(a, span) {
    color: var(--text);
}

body.theme-light :where(.tagline, .section-eyebrow, .eyebrow, .metric-label, .card-label, .footer-column h3, .footer-brand-title) {
    color: var(--text);
}

body.theme-light :where(.btn-primary, .btn-primary span, .sticky-cta, .sticky-cta span) {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

body.theme-light :where(.btn-primary:hover, .sticky-cta:hover) {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

body.theme-light :where(.btn-secondary, .btn-secondary span, .link-btn, .link-btn span, .nav-theme-button, .nav-theme-button span, .nav-readmode-button, .nav-readmode-button span) {
    color: var(--accent);
}

body.theme-light :where(.btn-secondary:hover, .link-btn:hover, .nav-theme-button:hover, .nav-theme-button[aria-pressed="true"], .nav-readmode-button:hover, .nav-readmode-button[aria-pressed="true"]) {
    color: var(--accent-strong);
}

.home-proof-band {
    display: grid;
    grid-template-columns: minmax(28rem, 0.82fr) minmax(46rem, 1.18fr);
    align-items: end;
    gap: clamp(3rem, 6vw, 8rem);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(2rem, calc((100vw - 140rem) / 2 + 2rem));
    padding-right: max(2rem, calc((100vw - 140rem) / 2 + 2rem));
    padding-top: clamp(6rem, 8vw, 10rem);
    padding-bottom: clamp(6rem, 8vw, 10rem);
    background: rgba(15, 18, 17, 0.72);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.home-proof-band:hover {
    background: rgba(15, 18, 17, 0.72);
    backdrop-filter: none;
    border-radius: 0;
}

body.theme-light .home-proof-band {
    background: var(--accent);
    border-color: var(--accent);
}

body.theme-light .home-proof-band:hover {
    background: var(--accent);
}

body.theme-light .home-proof-band :where(.tagline, h2, p, span) {
    color: var(--bg);
}

body.theme-light .home-proof-metric strong {
    -webkit-text-stroke-color: var(--bg);
    text-stroke-color: var(--bg);
}

.home-proof-copy {
    max-width: 54rem;
    text-align: left;
}

.home-proof-copy .tagline {
    justify-content: flex-start;
}

.home-proof-copy h2 {
    margin: 1.8rem 0 2rem;
    text-align: left;
    font-size: clamp(3.8rem, 5.4vw, 7.2rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.home-proof-copy p {
    max-width: 52rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.5vw, 2rem);
}

.home-proof-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.6rem, 3vw, 4rem);
    width: 100%;
}

.home-proof-metric {
    min-width: 0;
}

.home-proof-metric strong {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.2px var(--text);
    text-stroke: 1.2px var(--text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(5.8rem, 7.4vw, 11rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: 0;
}

.home-proof-metric span {
    display: block;
    max-width: 18rem;
    margin-top: 1.4rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 1.2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.35;
}

body.theme-light .home-proof-metric strong {
    color: transparent;
    -webkit-text-stroke-color: var(--bg);
    text-stroke-color: var(--bg);
}

@media (max-width: 1050px) {
    .home-proof-band {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-proof-copy {
        max-width: 78rem;
    }

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

@media (max-width: 620px) {
    .home-proof-band {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-top: 5rem;
        padding-bottom: 5rem;
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .home-proof-copy,
    .home-proof-copy h2,
    .home-proof-copy .tagline {
        text-align: center;
        justify-content: center;
    }

    .home-proof-copy h2 {
        font-size: clamp(2.4rem, 7.4vw, 3.2rem);
        line-height: 1.14;
        overflow-wrap: anywhere;
    }

    .home-proof-copy p {
        margin: 0 auto;
    }

    .home-proof-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 2.8rem 1.6rem;
    }

    .home-proof-metric {
        text-align: center;
    }

    .home-proof-metric strong {
        font-size: clamp(5rem, 18vw, 7.4rem);
    }

    .home-proof-metric span {
        max-width: 15rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.15rem;
        line-height: 1.28;
    }
}

@media (max-width: 380px) {
    .home-proof-band {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .home-proof-copy h2 {
        font-size: clamp(2.2rem, 7.2vw, 2.8rem);
        line-height: 1.12;
    }

    .home-proof-copy p {
        font-size: 1.45rem;
        line-height: 1.65;
    }

    .home-proof-metrics {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .home-proof-metric strong {
        font-size: clamp(4.8rem, 18vw, 6.2rem);
    }

    .home-proof-metric span {
        max-width: 19rem;
        font-size: 1.15rem;
    }
}

.home-solutions {
    display: grid;
    grid-template-columns: minmax(28rem, 0.72fr) minmax(48rem, 1.28fr);
    align-items: start;
    gap: clamp(3rem, 6vw, 8rem);
}

.home-solutions-intro {
    position: sticky;
    top: 12rem;
    align-self: start;
    max-width: 52rem;
    text-align: left;
}

.home-solutions-intro .tagline {
    justify-content: flex-start;
}

.home-solutions-intro h2 {
    margin: 1.8rem 0 2rem;
    text-align: left;
    font-size: clamp(3.4rem, 4.6vw, 6.4rem);
    line-height: 1.02;
}

.home-solutions-intro p {
    max-width: 48rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.45vw, 2rem);
}

.home-solution-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.home-solution-list.is-sequence-ready .home-solution-item:nth-child(n+2) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.4rem);
}

.home-solution-list.is-sequence-visible .home-solution-item {
    pointer-events: auto;
}

.home-solution-list.is-sequence-visible .home-solution-item:nth-child(2) {
    animation: solutionItemReveal 540ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
}

.home-solution-list.is-sequence-visible .home-solution-item:nth-child(3) {
    animation: solutionItemReveal 540ms cubic-bezier(0.22, 1, 0.36, 1) 920ms forwards;
}

@keyframes solutionItemReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-solution-item {
    display: grid;
    grid-template-columns: minmax(8rem, 0.25fr) minmax(24rem, 1fr) auto;
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
    min-height: 18rem;
    padding: clamp(2.8rem, 4vw, 4.6rem) 0;
    border-bottom: 1px solid var(--border);
}

.home-solution-number {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    text-stroke: 1px var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: clamp(4.8rem, 6vw, 8.8rem);
    font-weight: 800;
    line-height: 0.9;
}

.home-solution-item h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(2.8rem, 3vw, 4.4rem);
    line-height: 1.1;
}

.home-solution-item p {
    max-width: 58rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.6rem, 1.28vw, 1.9rem);
    line-height: 1.55;
}

.home-solution-item a {
    justify-self: end;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.home-solution-item a::after {
    content: " →";
}

.home-solution-item a:hover {
    color: var(--accent-strong);
    transform: translateX(0.4rem);
}

body.theme-light .home-solution-item :where(h3, p, span) {
    color: var(--text);
}

body.theme-light .home-solution-number {
    color: transparent;
    -webkit-text-stroke-color: var(--accent);
    text-stroke-color: var(--accent);
}

body.theme-light .home-solution-item a {
    color: var(--accent);
}

@media (max-width: 1050px) {
    .home-solutions {
        grid-template-columns: 1fr;
    }

    .home-solutions-intro {
        position: static;
        max-width: 78rem;
    }
}

@media (max-width: 760px) {
    .home-solution-item {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        min-height: auto;
    }

    .home-solution-item a {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .home-solutions-intro,
    .home-solutions-intro h2,
    .home-solutions-intro .tagline {
        text-align: center;
        justify-content: center;
    }

    .home-solutions-intro p {
        margin: 0 auto;
    }

    .home-solution-item {
        text-align: center;
        align-items: center;
    }

    .home-solution-item a {
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-solution-list.is-sequence-ready .home-solution-item:nth-child(n+2),
    .home-solution-list.is-sequence-visible .home-solution-item {
        animation: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

@media (max-width: 850px) {
    .home-process-band .process-timeline {
        width: min(62rem, 100%);
    }

    .home-process-band .process-timeline::before {
        top: 3rem;
        bottom: 3rem;
        left: 3rem;
        right: auto;
    }

    .home-process-band .process-timeline.is-sequence-ready::before {
        transform: scaleY(0.08);
        transform-origin: top center;
    }

    .home-process-band .process-timeline.is-sequence-visible::before {
        animation-name: processLineRevealVertical;
    }

    .home-process-band .process-timeline article {
        grid-template-columns: 6rem minmax(0, 1fr);
        gap: 0.8rem 1.8rem;
    }

    .home-process-band .process-timeline article > span {
        width: 6rem;
        height: 6rem;
        font-size: 2.8rem;
        grid-row: span 2;
    }

    .home-process-band .process-timeline p {
        max-width: none;
    }

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

    .home-benefits,
    .home-references {
        grid-template-columns: 1fr;
    }

    .home-benefits-intro,
    .home-references-intro {
        position: static;
        max-width: 78rem;
    }

    .home-benefit-list,
    .home-reference-list {
        grid-template-columns: 1fr;
    }

    .home-reference-list.is-single .home-reference-card {
        gap: 2rem;
        min-height: auto;
        padding: 0;
    }

    .home-reference-list.is-single .home-reference-media {
        min-height: clamp(32rem, 82vw, 48rem);
        aspect-ratio: auto;
    }

    .home-reference-list.is-single .home-reference-body {
        padding: 0 0 1rem;
    }

    .home-reference-list.is-single .home-reference-main-image {
        width: 100%;
    }

    .reference-device-stage {
        min-height: clamp(32rem, 82vw, 48rem);
    }

    .reference-device-stage[data-focus="laptop"] .reference-device-laptop {
        left: 50%;
        top: 19%;
        width: 86%;
        transform: translate3d(-50%, 0, 4rem);
    }

    .reference-device-stage[data-focus="laptop"] .reference-device-tablet {
        left: 0;
        top: 51%;
        width: 34%;
    }

    .reference-device-stage[data-focus="laptop"] .reference-device-mobile {
        right: 0;
        top: 43%;
        width: 21%;
    }

    .reference-device-stage[data-focus="tablet"] .reference-device-tablet {
        left: 50%;
        top: 10%;
        width: 68%;
        transform: translate3d(-50%, 0, 4rem);
    }

    .reference-device-stage[data-focus="tablet"] .reference-device-laptop {
        left: 54%;
        top: 30%;
        width: 56%;
    }

    .reference-device-stage[data-focus="tablet"] .reference-device-mobile {
        right: 0;
        top: 47%;
        width: 20%;
    }

    .reference-device-stage[data-focus="mobile"] .reference-device-mobile {
        right: auto;
        left: 50%;
        top: 3%;
        width: 34%;
        transform: translate3d(-50%, 0, 4rem);
    }

    .reference-device-stage[data-focus="mobile"] .reference-device-laptop {
        left: 0;
        top: 38%;
        width: 58%;
    }

    .reference-device-stage[data-focus="mobile"] .reference-device-tablet {
        left: 63%;
        top: 52%;
        width: 30%;
    }

    .home-benefit-item:nth-child(odd) {
        border-right: 0;
    }
}

@media (max-width: 620px) {
    .home-process-band h2 {
        font-size: clamp(3rem, 10vw, 4.4rem);
    }

    .home-process-band .process-timeline article {
        text-align: left;
    }

    .home-process-band .process-timeline h3,
    .home-process-band .process-timeline p {
        text-align: left;
    }

    .home-benefits-intro,
    .home-benefits-intro h2,
    .home-benefits-intro .tagline,
    .home-references-intro,
    .home-references-intro h2,
    .home-references-intro .tagline {
        text-align: center;
        justify-content: center;
    }

    .home-benefits-intro p {
        margin: 0 auto;
    }

    .home-references-intro p {
        margin: 0 auto 2.4rem;
    }

    .home-benefit-item {
        grid-template-columns: 4.6rem minmax(0, 1fr);
        gap: 1.2rem;
        min-height: auto;
        padding: 2.4rem 0;
    }
}

@media (max-width: 760px) {
    .final-cta.final-cta-personal {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-cta-copy {
        align-items: center;
    }

    .final-cta-copy p {
        text-align: center;
    }

    .final-cta-contact {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

body.theme-light .final-cta-contact a {
    color: var(--accent);
}

body.theme-light .final-cta-contact a:hover {
    color: var(--accent-strong);
}

body.theme-light .home-references-intro p,
body.theme-light .home-reference-card p,
body.theme-light .home-reference-tags span {
    color: var(--muted);
}

body.theme-light .home-reference-meta,
body.theme-light .home-reference-meta span {
    color: var(--accent);
}

body.theme-light .home-reference-link {
    color: var(--accent);
}

body.theme-light .seo-proof-strip {
    background: rgba(142, 192, 124, 0.82);
}

body.theme-light .seo-reference-panel {
    background: rgba(255, 255, 255, 0.34);
}

@media (max-width: 980px) {
    .seo-landing-hero,
    .seo-split-section,
    .seo-reference-panel,
    .seo-pricing-cta {
        grid-template-columns: 1fr;
    }

    .seo-landing-hero {
        padding-top: 7rem;
    }

    .seo-landing-hero h1,
    .seo-landing-hero p,
    .seo-split-section h2,
    .seo-reference-copy h2,
    .seo-pricing-cta h2 {
        text-align: center;
    }

    .seo-landing-hero-copy,
    .seo-landing-hero .hero-actions {
        align-items: center;
        justify-content: center;
    }

    .seo-landing-hero p,
    .seo-copy-stack p,
    .seo-reference-copy p,
    .seo-pricing-cta p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .seo-landing-hero-media {
        min-height: auto;
        text-align: center;
    }

    .seo-landing-hero-media img {
        max-width: min(100%, 48rem);
        transform: none;
    }

    .seo-proof-strip,
    .seo-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-reference-panel {
        text-align: center;
    }

    .seo-device-preview {
        width: min(100%, 58rem);
        margin: 0 auto;
    }

    .seo-pricing-cta {
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .seo-landing {
        gap: 7rem;
    }

    .seo-landing-hero h1 {
        font-size: clamp(3.9rem, 11vw, 5.4rem);
        line-height: 1.04;
    }

    .seo-landing-hero p {
        font-size: 1.85rem;
    }

    .seo-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .seo-proof-strip article {
        min-height: 10rem;
        padding: 1.2rem;
    }

    .seo-proof-strip strong {
        font-size: clamp(3.6rem, 13vw, 5.6rem);
    }

    .seo-feature-grid {
        grid-template-columns: 1fr;
    }

    .seo-feature-grid article {
        min-height: 0;
        padding: 2.2rem 0;
    }

    .seo-reference-panel {
        padding-top: 4.8rem;
        padding-bottom: 5.4rem;
    }

    .seo-device-preview {
        min-height: 30rem;
    }

    .seo-device-laptop {
        right: 0;
        width: 88%;
    }

    .seo-device-phone {
        width: 25%;
    }
}

.micasa-page {
    display: flex;
    flex-direction: column;
    gap: clamp(5rem, 8vw, 10rem);
}

.micasa-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 42rem);
    align-items: end;
    gap: clamp(3rem, 6vw, 8rem);
    width: 100%;
    padding: clamp(4rem, 7vw, 8rem) 0 clamp(2rem, 4vw, 4rem);
    overflow: visible;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.micasa-hero::after {
    display: none;
}

.micasa-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.micasa-hero-copy .tagline,
.micasa-hero-copy h1,
.micasa-hero-copy p {
    text-align: left;
}

.micasa-hero-copy p {
    margin-left: 0;
    margin-right: 0;
}

.micasa-hero-note {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1.6rem;
}

.micasa-hero-note p {
    font-size: 1.55rem;
}

.micasa-hero-media {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
}

.micasa-hero-media video {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2.8rem 4.5rem rgba(0, 0, 0, 0.34));
}

.micasa-hero-media video {
    overflow: hidden;
    aspect-ratio: 338 / 404;
    max-width: min(38rem, 100%);
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 2.4rem;
    background: rgba(0, 0, 0, 0.18);
    object-fit: cover;
    transform: translateY(0);
    transition: transform 260ms ease, filter 260ms ease;
}

.micasa-hero-media:hover video {
    transform: translateY(-0.8rem);
    filter: drop-shadow(0 3.4rem 5.2rem rgba(0, 0, 0, 0.4));
}

.micasa-hero-media-background {
    overflow: hidden;
    min-height: 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 1.8rem;
    background: rgba(0, 0, 0, 0.2);
    isolation: isolate;
    box-shadow: 0 1.4rem 3.4rem rgba(0, 0, 0, 0.18);
}

.micasa-hero-media-background::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02)),
        radial-gradient(circle at 54% 42%, rgba(142, 192, 124, 0.14), transparent 46%);
}

.micasa-hero-media-background video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    aspect-ratio: auto;
    object-fit: cover;
    opacity: 0;
    filter: saturate(0.96) contrast(1.03);
    transform: none;
    transition: opacity 560ms ease, filter 260ms ease;
}

.micasa-hero-media-background video.is-active {
    opacity: 1;
}

.micasa-hero-media-background:hover video {
    transform: none;
    filter: saturate(1) contrast(1.05);
}

.micasa-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(1100px, 100%);
    margin: 0 auto;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.micasa-proof-strip article {
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 2.4rem;
    text-align: center;
}

.micasa-proof-strip span {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.micasa-proof-strip strong {
    color: var(--text);
    font-size: clamp(2rem, 2.4vw, 3rem);
    line-height: 1.08;
}

.micasa-video-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    transform: scale(1.05);
}

.micasa-video-ambient video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(0.95);
}

.micasa-showcase {
    position: relative;
    overflow: visible;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.micasa-showcase::after {
    display: none;
}

.micasa-showcase .pricing-section-head,
.micasa-product-overview {
    position: relative;
    z-index: 1;
}

.micasa-product-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 0.65fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 8rem);
    width: 100%;
    margin: 0 auto;
}

.micasa-product-overview figure {
    overflow: hidden;
    margin: 0;
    border-radius: 1.6rem;
}

.micasa-product-overview img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2.8rem 5rem rgba(0, 0, 0, 0.28));
}

.micasa-product-points {
    display: grid;
    gap: 1.2rem;
    border: 0;
}

.micasa-product-points article {
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.micasa-product-points article:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.micasa-product-points span {
    display: block;
    margin-bottom: 1.2rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.micasa-product-points strong {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text);
    font-size: clamp(2.1rem, 2.1vw, 3rem);
    line-height: 1.08;
}

.micasa-product-points p {
    margin: 0;
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.micasa-module-overview {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.micasa-module-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 0;
    border: 0;
}

.micasa-module-grid article {
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr);
    gap: clamp(1.4rem, 2vw, 2.4rem);
    align-items: center;
    min-height: 0;
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.micasa-module-grid article:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.micasa-module-grid span {
    display: block;
    grid-row: 1 / span 2;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    text-stroke: 1px var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 2.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.micasa-module-grid strong,
.micasa-module-grid p {
    grid-column: 2;
}

.micasa-module-grid strong {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text);
    font-size: clamp(2rem, 1.8vw, 2.8rem);
    line-height: 1.18;
}

.micasa-module-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.micasa-video-modules {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.micasa-video-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(1.8rem, 2.6vw, 3.4rem);
    width: 100%;
    margin: 0 auto;
}

.micasa-video-module-grid article {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    gap: 1.2rem;
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.micasa-video-module-grid article:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.micasa-video-module-grid video,
.micasa-sync-single video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    background: rgba(0, 0, 0, 0.18);
    object-fit: cover;
    box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.22);
}

.micasa-video-module-grid span {
    margin-top: 0.6rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.micasa-video-module-grid h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.2rem, 2.3vw, 3.2rem);
    line-height: 1.08;
}

.micasa-video-module-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.micasa-website-sync {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.micasa-sync-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 42rem);
    align-items: center;
    gap: clamp(3rem, 6vw, 8rem);
}

.micasa-sync-copy .tagline {
    text-align: left;
}

.micasa-sync-copy h2 {
    margin: 1.4rem 0 1.6rem;
    font-size: clamp(3.2rem, 5vw, 6.2rem);
    line-height: 1.02;
}

.micasa-sync-copy > p {
    max-width: 72rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.7rem, 1.45vw, 2rem);
    line-height: 1.58;
}

.micasa-sync-points {
    display: grid;
    gap: 1.2rem;
    margin-top: clamp(2.4rem, 4vw, 4rem);
}

.micasa-sync-points article {
    padding: clamp(1.6rem, 2vw, 2.2rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.micasa-sync-points article:hover {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
}

.micasa-sync-points strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: clamp(1.9rem, 1.6vw, 2.5rem);
    line-height: 1.18;
}

.micasa-sync-points p {
    margin: 0;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.52;
}

.micasa-sync-single {
    width: min(42rem, 100%);
    margin: 0 auto;
}

.micasa-faq-section .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    width: min(84rem, 100%);
    margin: 0 auto;
}

.micasa-faq-section .faq-list details {
    padding: clamp(1.8rem, 2vw, 2.4rem);
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background: rgba(12, 18, 15, 0.28);
    backdrop-filter: none;
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.micasa-faq-section .faq-list details:hover,
.micasa-faq-section .faq-list details[open] {
    transform: translateY(-0.3rem);
    border-color: rgba(142, 192, 124, 0.46);
    background: rgba(12, 18, 15, 0.42);
    box-shadow: none;
}

.micasa-faq-section .faq-list summary {
    align-items: center;
    color: var(--text);
    font-size: clamp(1.9rem, 1.6vw, 2.5rem);
    font-weight: 800;
    line-height: 1.18;
}

.micasa-faq-section .faq-list summary::after {
    width: 3.4rem;
    height: 3.4rem;
    border-color: rgba(142, 192, 124, 0.32);
    background: rgba(142, 192, 124, 0.08);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.micasa-faq-section .faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.micasa-faq-section .faq-list details p {
    max-width: 68rem;
    margin-top: 1.4rem;
    color: var(--muted);
    font-size: 1.55rem;
    line-height: 1.55;
}

.micasa-sync-single video {
    aspect-ratio: 876 / 1050;
    object-fit: contain;
    background:
        radial-gradient(circle at 50% 18%, rgba(142, 192, 124, 0.1), transparent 38%),
        rgba(0, 0, 0, 0.18);
}

body.theme-light .micasa-video-ambient {
    opacity: 0.14;
}

body.theme-light .micasa-hero-media video,
body.theme-light .micasa-product-overview img {
    filter: drop-shadow(0 2.4rem 4.2rem rgba(35, 67, 72, 0.14));
}

body.theme-light .micasa-hero-media:hover video {
    filter: drop-shadow(0 3rem 5rem rgba(35, 67, 72, 0.18));
}

body.theme-light .micasa-hero-media-background::after {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 54% 42%, rgba(27, 126, 131, 0.1), transparent 46%);
}

body.theme-light .micasa-hero-media-background video,
body.theme-light .micasa-hero-media-background:hover video {
    filter: saturate(0.94) contrast(1.02);
}

body.theme-light .micasa-proof-strip span {
    color: var(--accent);
}

body.theme-light .micasa-product-points p,
body.theme-light .micasa-module-grid p,
body.theme-light .micasa-video-module-grid p {
    color: var(--muted);
}

body.theme-light .micasa-video-module-grid video,
body.theme-light .micasa-sync-single video {
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 1.6rem 3.6rem rgba(36, 89, 91, 0.12);
}

body.theme-light .micasa-product-points article,
body.theme-light .micasa-module-grid article,
body.theme-light .micasa-video-module-grid article,
body.theme-light .micasa-sync-points article,
body.theme-light .micasa-faq-section .faq-list details {
    background: rgba(255, 255, 255, 0.62);
}

body.theme-light .micasa-product-points article:hover,
body.theme-light .micasa-module-grid article:hover,
body.theme-light .micasa-video-module-grid article:hover,
body.theme-light .micasa-sync-points article:hover,
body.theme-light .micasa-faq-section .faq-list details:hover,
body.theme-light .micasa-faq-section .faq-list details[open] {
    background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
    .micasa-hero,
    .micasa-product-overview,
    .micasa-video-module-grid,
    .micasa-sync-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .micasa-hero-copy,
    .micasa-hero-copy .tagline,
    .micasa-hero-copy h1,
    .micasa-hero-copy p {
        align-items: center;
        text-align: center;
    }

    .micasa-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .micasa-sync-copy .tagline,
    .micasa-sync-copy h2,
    .micasa-sync-copy > p {
        text-align: center;
    }

    .micasa-sync-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .micasa-hero .hero-actions {
        justify-content: center;
    }

    .micasa-hero-media video {
        margin-right: auto;
    }

    .micasa-hero-media-background {
        width: min(62rem, 100%);
        aspect-ratio: 16 / 9;
        margin-left: auto;
        margin-right: auto;
    }

    .micasa-proof-strip {
        grid-template-columns: 1fr;
    }

    .micasa-proof-strip article {
        min-height: 9rem;
    }

    .micasa-product-points {
        width: min(68rem, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .micasa-video-module-grid {
        width: min(68rem, 100%);
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 620px) {
    .micasa-page {
        gap: 5.5rem;
    }

    .micasa-hero-media video {
        width: 112%;
        margin-left: -6%;
    }

    .micasa-hero-media-background video {
        width: 100%;
        margin-left: 0;
    }

    .micasa-module-grid {
        grid-template-columns: 1fr;
    }

    .micasa-module-grid article {
        grid-template-columns: 4.4rem minmax(0, 1fr);
    }
}
