:root {
    --aline-bg: #f6f6f6;
    --aline-ink: #0b0b0c;
    --aline-muted: rgba(11, 11, 12, 0.65);
    --aline-panel: #ffffff;
    --aline-border: rgba(0, 0, 0, 0.1);
    --aline-radius-lg: 28px;
    --aline-radius-md: 22px;
    --aline-radius-sm: 14px;
    --aline-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);
    --aline-shadow-strong: 0 18px 70px rgba(0, 0, 0, 0.22);
    --aline-grad-teal: linear-gradient(135deg, rgba(0, 173, 181, 0.95), rgba(96, 165, 250, 0.95));
    --aline-slab-width: min(100%, 1480px);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: var(--aline-ink);
    background: var(--aline-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

p {
    line-height: 1.6;
    color: var(--aline-muted);
    margin-top: 0;
}

.writing-vertical {
    writing-mode: vertical-rl;
}

.aline-app {
    min-height: 100vh;
    background-image: radial-gradient(900px 420px at 12% 12%, rgba(0, 173, 181, 0.1), transparent 55%), radial-gradient(800px 420px at 88% 18%, rgba(96, 165, 250, 0.1), transparent 55%);
    background-color: var(--aline-bg);
    position: relative;
    padding-bottom: 3rem;
}

.aline-menu {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 60;
}

.aline-brand-fixed {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.aline-brand-fixed img {
    width: 2.3rem;
    height: auto;
}

.aline-menu-button {
    position: relative;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.25rem 0 1.4rem;
    height: 2.8rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.85);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.aline-menu-button:hover {
    background: rgba(0, 0, 0, 0.88);
}

.aline-menu-button:active {
    transform: translateY(1px);
}

.aline-menu-button__label {
    font-weight: 500;
}

.aline-menu__dropdown {
    position: absolute;
    top: calc(100% + 0.2rem);
    right: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(12, 12, 14, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.35rem;
    min-width: 180px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.aline-menu__dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.aline-menu__dropdown a {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.45rem 0.4rem;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.aline-menu__dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.aline-menu:hover .aline-menu__dropdown,
.aline-menu__dropdown:hover {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.aline-logo {
    width: 38px;
    height: 38px;
    display: inline-block;
}

.aline-logo__band {
    fill: #0b0b0c;
    animation: logoBand 4.5s ease-in-out infinite;
}

.aline-logo__band:nth-child(1) { animation-delay: 0s; }
.aline-logo__band:nth-child(2) { animation-delay: 0.2s; }
.aline-logo__band:nth-child(3) { animation-delay: 0.4s; }
.aline-logo__band:nth-child(4) { animation-delay: 0.6s; }

@keyframes logoBand {
    0%, 100% { opacity: 0.9; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(2px); }
}

.aline-logo-img {
    width: 38px;
    height: auto;
    display: inline-block;
}

.aline-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    margin-left: 0.2rem;
}

.aline-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
}

.aline-drawer.is-open {
    pointer-events: auto;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.aline-drawer.is-open .drawer-backdrop {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: min(420px, calc(100vw - 2rem));
    border-radius: 22px;
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    padding: 1rem;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.aline-drawer.is-open .drawer-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.drawer-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0.25rem 0.75rem;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.drawer-brand__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
}

.drawer-brand__mark svg {
    width: 28px;
    height: 28px;
}
.drawer-brand__mark img {
    width: 28px;
    height: auto;
}

.drawer-brand__title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.drawer-brand__sub {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
}

.drawer-close {
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.drawer-nav {
    display: grid;
    gap: 0.75rem;
}

.drawer-nav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.25rem;
    border-radius: 20px;
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.2s ease, background 0.2s ease;
}

.drawer-nav__item:hover {
    background: #fff;
    transform: translateY(-1px);
}

.drawer-nav__title {
    font-weight: 600;
}

.drawer-nav__sub {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
}

.drawer-nav__icon {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--aline-border);
    color: rgba(0, 0, 0, 0.7);
}

.aline-main {
    width: 100%;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 6vw, 5.5rem);
}

.hero-surface {
    margin-top: 1rem;
    border-radius: var(--aline-radius-lg);
    border: 1px solid var(--aline-border);
    background: #fff;
    box-shadow: var(--aline-shadow-soft);
    padding: 1.5rem;
    width: var(--aline-slab-width);
    margin-left: auto;
    margin-right: auto;
}

.hero-surface__inner {
    border-radius: 22px;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
}

.hero-surface__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(520px 220px at 20% 20%, rgba(0, 173, 181, 0.08), transparent 70%), radial-gradient(460px 240px at 80% 10%, rgba(96, 165, 250, 0.08), transparent 70%);
    animation: backgroundDrift 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(2%, -1%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.hero-stage {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 3rem 1rem;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 360px at 50% 52%, rgba(0, 0, 0, 0.1), transparent 60%), linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 55%);
}

.hero-floating {
    position: relative;
    width: min(560px, 95%);
    height: 420px;
}

.hero-shadow {
    position: absolute;
    left: 50%;
    bottom: 3rem;
    width: 460px;
    height: 110px;
    filter: blur(32px);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    opacity: 0.2;
    transform: translateX(-50%);
    animation: heroPulse 4.2s ease-in-out infinite;
}

@keyframes heroPulse {
    0% { opacity: 0.16; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.22; transform: translateX(-50%) scale(1.03); }
    100% { opacity: 0.16; transform: translateX(-50%) scale(1); }
}

.floating-card {
    position: absolute;
    width: 260px;
    height: 380px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation:
        cardIntro 0.8s ease forwards var(--delay, 0s),
        cardFloat 4.4s ease-in-out infinite calc(0.8s + var(--delay, 0s));
}

@keyframes cardIntro {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-card__bar {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    height: 40px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 1;
}

.floating-card[data-variant="default"] .floating-card__bar { background: var(--aline-grad-teal); }
.floating-card[data-variant="alt1"] .floating-card__bar { background: linear-gradient(135deg, rgba(34, 197, 94, 0.92), rgba(0, 173, 181, 0.88)); }
.floating-card[data-variant="alt2"] .floating-card__bar { background: linear-gradient(135deg, rgba(251, 146, 60, 0.95), rgba(244, 63, 94, 0.82)); }

.floating-card__body {
    position: absolute;
    inset: 64px 20px 20px;
    display: flex;
    gap: 1.25rem;
    z-index: 1;
}

.floating-card__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.floating-card__label {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.floating-card__sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(0, 0, 0, 0.55);
}

.floating-card__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.floating-card__bullets li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.75);
}

.floating-card__chip {
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
}

@keyframes cardFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-copy-block {
    position: absolute;
    left: 1.25rem;
    bottom: 1.5rem;
    z-index: 3;
}

.hero-copy-block__logo {
    margin-bottom: 0.35rem;
    width: 34px;
    opacity: 0.85;
}
.hero-copy-block__logo img {
    width: 34px;
    height: auto;
}

.hero-logo-badge {
    width: 34px;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.hero-logo-badge img {
    width: 100%;
    height: auto;
}

.hero-logo-badge--cta {
    margin-bottom: 1rem;
}

.hero-copy-block__label {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
}

.hero-copy-block__meta {
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.65);
}

.hero-copy-block__cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    height: 3.25rem;
    border: 1px solid rgba(0, 0, 0, 0.7);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    font-weight: 500;
    animation: ctaGlow 6s ease-in-out infinite;
}

.hero-copy-block__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18); }
    50% { box-shadow: 0 18px 36px rgba(0, 173, 181, 0.25); }
}

.aline-section {
    border-radius: var(--aline-radius-lg);
    border: 1px solid var(--aline-border);
    background: #fff;
    padding: 1.75rem;
    box-shadow: var(--aline-shadow-soft);
    margin-top: 1.5rem;
    width: var(--aline-slab-width);
    margin-left: auto;
    margin-right: auto;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.brand-banner {
    padding: 1.25rem 1.5rem;
}

.brand-banner__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-banner__logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.brand-banner__logo img {
    width: 34px;
    height: auto;
}

.brand-banner__copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-banner__eyebrow {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
}

.brand-banner__text {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.82);
}

.brand-banner__points {
    list-style: none;
    margin: 0.6rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
}

.brand-banner__points li {
    position: relative;
    padding-left: 0.7rem;
}

.brand-banner__points li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.35);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.contact-points {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--aline-muted);
}

.contact-note {
    margin: 0.75rem 0 0;
    color: rgba(0, 0, 0, 0.7);
}

.contact-card {
    border: 1px solid var(--aline-border);
    border-radius: var(--aline-radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    overflow: hidden;
    animation: cardFloatSlow 5.5s ease-in-out infinite;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 173, 181, 0.08), transparent 60%);
    opacity: 0;
    animation: panelSheen 6s ease-in-out infinite;
}

.contact-card__logo {
    width: 36px;
    margin-bottom: 0.75rem;
}
.contact-card__logo img {
    width: 36px;
    height: auto;
}

.contact-card form {
    position: relative;
    z-index: 1;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.75);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.02);
    color: var(--aline-ink);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-form textarea {
    resize: vertical;
}

.form-notice {
    margin: 0.5rem 0 0;
    background: rgba(0, 173, 181, 0.08);
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
}

.contact-submit {
    justify-content: center;
    font-size: 1rem;
    height: 3.2rem;
    margin-top: 0.5rem;
}

.contact-form--plugin {
    display: grid;
    gap: 0.75rem;
}

.contact-form--plugin form {
    display: grid;
    gap: 0.75rem;
}

.contact-form--plugin label,
.contact-form--plugin .wpforms-field-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 0.35rem;
}

.contact-form--plugin .wpcf7-form-control-wrap,
.contact-form--plugin .wpforms-field {
    display: block;
}

.contact-form--plugin input[type="text"],
.contact-form--plugin input[type="email"],
.contact-form--plugin input[type="tel"],
.contact-form--plugin input[type="url"],
.contact-form--plugin input[type="number"],
.contact-form--plugin select,
.contact-form--plugin textarea {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.02);
    color: var(--aline-ink);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
    width: 100%;
}

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

.contact-form--plugin .wpcf7-submit,
.contact-form--plugin button[type="submit"],
.contact-form--plugin input[type="submit"],
.contact-form--plugin .wpforms-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--aline-border);
    background: #000;
    color: #fff;
    height: 3.2rem;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.contact-form--plugin .wpcf7-response-output,
.contact-form--plugin .wpforms-confirmation-container,
.contact-form--plugin .wpforms-error-container {
    margin: 0.5rem 0 0;
    background: rgba(0, 173, 181, 0.08);
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
}

.contact-form--plugin .wpforms-error-container,
.contact-form--plugin .wpcf7-not-valid-tip {
    color: #b21f1f;
    background: rgba(178, 31, 31, 0.08);
    border-color: rgba(178, 31, 31, 0.2);
}

/* Forminator-specific overrides to keep ALINE styling in place */
.contact-card .contact-form--plugin .forminator-ui,
.contact-card .contact-form--plugin .forminator-ui .forminator-row {
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.contact-card .contact-form--plugin .forminator-field,
.contact-card .contact-form--plugin .forminator-field > label {
    margin: 0 0 0.35rem;
}

.contact-card .contact-form--plugin .forminator-label,
.contact-card .contact-form--plugin .forminator-label > label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 0.35rem;
}

.contact-card .contact-form--plugin .forminator-input,
.contact-card .contact-form--plugin .forminator-textarea,
.contact-card .contact-form--plugin .forminator-select,
.contact-card .contact-form--plugin .forminator-ui input[type="text"],
.contact-card .contact-form--plugin .forminator-ui input[type="email"],
.contact-card .contact-form--plugin .forminator-ui input[type="tel"],
.contact-card .contact-form--plugin .forminator-ui input[type="url"],
.contact-card .contact-form--plugin .forminator-ui input[type="number"],
.contact-card .contact-form--plugin .forminator-ui select,
.contact-card .contact-form--plugin .forminator-ui textarea {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
    background: rgba(0, 0, 0, 0.02) !important;
    color: var(--aline-ink) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    width: 100%;
}

.contact-card .contact-form--plugin .forminator-textarea,
.contact-card .contact-form--plugin .forminator-ui textarea {
    resize: vertical;
}

.contact-card .contact-form--plugin .forminator-button,
.contact-card .contact-form--plugin .forminator-ui button[type="submit"],
.contact-card .contact-form--plugin .forminator-ui input[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem !important;
    border-radius: 999px !important;
    border: 1px solid var(--aline-border) !important;
    background: #000 !important;
    color: #fff !important;
    height: 3.2rem !important;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18) !important;
    width: auto;
}

.contact-card .contact-form--plugin .forminator-response-message,
.contact-card .contact-form--plugin .forminator-ui .forminator-error-message,
.contact-card .contact-form--plugin .forminator-ui .forminator-success-message {
    margin: 0.5rem 0 0;
    background: rgba(0, 173, 181, 0.08);
    border: 1px solid rgba(0, 173, 181, 0.2);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
}

.contact-card .contact-form--plugin .forminator-ui .forminator-error-message {
    color: #b21f1f;
    background: rgba(178, 31, 31, 0.08);
    border-color: rgba(178, 31, 31, 0.2);
}

.contact-card .forminator-edit-link {
    display: none !important;
}

@keyframes panelSheen {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.section-copy h2 {
    font-size: clamp(2.5rem, 4.4vw, 4rem);
    letter-spacing: -0.06em;
    margin: 0 0 1rem;
}

.section-copy p {
    font-size: 1.05rem;
}

.section-highlights {
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.75);
}

.section-highlights li {
    list-style: square;
}

.section-highlights__label {
    font-weight: 600;
    margin-right: 0.35rem;
}

.section-highlights__text {
    color: rgba(0, 0, 0, 0.7);
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: var(--aline-radius-sm);
    border: 1px solid var(--aline-border);
    background: rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 1rem;
}

.section-actions {
    margin-top: 1.25rem;
}

.aline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.9);
}

.aline-pill--dark {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.feature-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.feature-card {
    border: 1px solid var(--aline-border);
    border-radius: var(--aline-radius-md);
    background: rgba(255, 255, 255, 0.78);
    padding: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
    min-height: 120px;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: #fff;
}

.feature-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.section-visual {
    position: relative;
    min-height: 520px;
    border-radius: var(--aline-radius-md);
    border: 1px solid var(--aline-border);
    background: radial-gradient(680px 360px at 50% 45%, rgba(0, 0, 0, 0.14), transparent 60%), linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 55%), #f7f7f7;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.section-visual__orb {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 20% 40%, rgba(0, 173, 181, 0.5), transparent 50%), radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.6), transparent 55%);
    opacity: 0.7;
    animation: orbRotate 8s ease-in-out infinite;
}

@keyframes orbRotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(1deg); }
    100% { transform: rotate(0deg); }
}

.section-visual__card {
    position: relative;
    width: 280px;
    height: 420px;
    border-radius: 28px;
    border: 1px solid var(--aline-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
    animation: cardFloatSlow 4.6s ease-in-out infinite;
}
.section-visual__card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 0),
        radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 0);
    background-size: 18px 18px;
    background-position: 0 0, 9px 9px;
    opacity: 0.35;
    pointer-events: none;
}

@keyframes cardFloatSlow {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.section-visual__bar {
    margin: 0.75rem;
    height: 2.5rem;
    border-radius: 20px;
    background: var(--aline-grad-teal);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.section-visual__body {
    display: flex;
    gap: 1.5rem;
    padding: 0 1.25rem 1.25rem;
    height: calc(100% - 84px);
}

.section-visual__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-visual__word {
    font-size: 2.75rem;
    font-weight: 800;
}

.section-visual__tag {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.78);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.section-visual__metrics {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.75);
}

.metric-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.metric-row span:first-child {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--aline-border);
    background: rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.product-panel {
    border-radius: var(--aline-radius-md);
    border: 1px solid var(--aline-border);
    background: radial-gradient(680px 360px at 50% 45%, rgba(0, 0, 0, 0.12), transparent 60%), #f7f7f7;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.product-card {
    width: min(560px, 100%);
    border-radius: var(--aline-radius-md);
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
    padding: 1.75rem;
    animation: cardFloatSlow 5.2s ease-in-out infinite;
}

.product-card__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.product-card__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-card__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 18px;
    background: var(--aline-grad-teal);
    display: grid;
    place-items: center;
}
.product-card__mark svg {
    width: 28px;
    height: 28px;
}
.product-card__mark img {
    width: 28px;
    height: auto;
}

.product-card__title {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.product-card__sub {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

.product-card__price {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.product-card__chips {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-card__list {
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
}

.product-card__list li {
    margin-bottom: 0.4rem;
}

.product-card__actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-partner-note {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.75);
}

.product-partner-note__title {
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.product-partner-note p {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

.financing-note {
    margin-top: 1.5rem;
    border-radius: var(--aline-radius-md);
    border: 1px solid var(--aline-border);
    background: rgba(0, 0, 0, 0.03);
    padding: 1rem 1.25rem;
}

.financing-note__title {
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.financing-note p {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

.ai-reception {
    position: relative;
    overflow: hidden;
}

.ai-reception::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(560px 240px at 12% 18%, rgba(0, 173, 181, 0.08), transparent 60%),
        radial-gradient(520px 260px at 90% 70%, rgba(96, 165, 250, 0.08), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.ai-reception__grid {
    position: relative;
    z-index: 1;
}

.ai-visual {
    position: relative;
    min-height: 440px;
    border-radius: var(--aline-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: radial-gradient(600px 280px at 18% 20%, rgba(0, 173, 181, 0.35), transparent 60%),
        radial-gradient(540px 260px at 85% 80%, rgba(96, 165, 250, 0.32), transparent 60%),
        #0b0b0c;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.88);
}

.ai-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: 0.25;
    pointer-events: none;
}

.ai-visual__ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 18%;
    right: 8%;
    box-shadow: 0 0 70px rgba(0, 173, 181, 0.35);
    opacity: 0.65;
    animation: aiRingPulse 6s ease-in-out infinite;
}

@keyframes aiRingPulse {
    0%, 100% { transform: scale(0.98); opacity: 0.55; }
    50% { transform: scale(1.03); opacity: 0.85; }
}

.ai-visual__panel {
    position: relative;
    width: min(420px, 90%);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(15, 16, 20, 0.92), rgba(15, 16, 20, 0.68));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    z-index: 1;
}

.ai-visual__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.ai-visual__body {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.ai-visual__wave {
    display: grid;
    grid-auto-flow: column;
    align-items: end;
    gap: 0.45rem;
    height: 52px;
}

.ai-visual__wave span {
    display: block;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95), rgba(0, 173, 181, 0.9));
    height: 14px;
    animation: aiWave 1.6s ease-in-out infinite;
    opacity: 0.85;
}

.ai-visual__wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.ai-visual__wave span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.ai-visual__wave span:nth-child(3) { height: 26px; animation-delay: 0.2s; }
.ai-visual__wave span:nth-child(4) { height: 34px; animation-delay: 0.3s; }
.ai-visual__wave span:nth-child(5) { height: 42px; animation-delay: 0.4s; }
.ai-visual__wave span:nth-child(6) { height: 34px; animation-delay: 0.3s; }
.ai-visual__wave span:nth-child(7) { height: 26px; animation-delay: 0.2s; }
.ai-visual__wave span:nth-child(8) { height: 18px; animation-delay: 0.1s; }
.ai-visual__wave span:nth-child(9) { height: 12px; animation-delay: 0s; }

@keyframes aiWave {
    0%, 100% { transform: scaleY(0.7); opacity: 0.6; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

.ai-visual__call {
    display: grid;
    gap: 0.25rem;
}

.ai-visual__call-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.6);
}

.ai-visual__call-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.ai-visual__call-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.ai-visual__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-visual__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.ai-visual__log {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.85rem;
    display: grid;
    gap: 0.5rem;
}

.ai-visual__log-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.ai-visual__log-row span:last-child {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.creator-section {
    overflow: hidden;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.creator-photo {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    border-radius: var(--aline-radius-md);
    overflow: hidden;
    box-shadow: var(--aline-shadow-soft);
    border: 1px solid var(--aline-border);
    background: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
}

.creator-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creator-copy h3 {
    margin: 0.5rem 0 0.35rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.creator-title {
    margin: 0 0 0.5rem;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
}

.creator-bio {
    margin: 0.5rem 0 1rem;
}

.creator-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.aline-footer {
    background: #070707;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--aline-shadow-strong);
    width: var(--aline-slab-width);
    border-radius: var(--aline-radius-lg);
    margin: 1.5rem auto 0;
    padding: 0 2rem 2rem;
}

@media (max-width: 640px) {
    .aline-footer {
        border-radius: var(--aline-radius-lg);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.aline-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2.5rem 2rem;
}

.aline-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.25rem;
    justify-items: start;
}

.aline-footer__menu li {
    margin: 0;
}

.aline-footer__menu a {
    display: inline-block;
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.6);
}

.aline-footer__menu a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.aline-footer__title {
    font-size: 1.2rem;
    font-weight: 600;
}

.aline-footer__sub {
    color: rgba(255, 255, 255, 0.7);
}

.aline-footer__contact {
    margin-top: 1rem;
}

.aline-footer__mark {
    width: 40px;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}
.aline-footer__mark img {
    width: 40px;
    height: auto;
}

.aline-footer__email {
    font-weight: 600;
}

.aline-footer__icons {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.aline-footer__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease;
}

.aline-footer__icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.aline-footer__label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.aline-footer__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aline-footer__grid a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.25rem 0;
}

.aline-footer__grid a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.aline-footer__wordmark {
    display: flex;
    justify-content: center;
    gap: clamp(0.35em, 1vw, 0.8em);
    text-align: center;
    font-size: clamp(6rem, 14vw, 14rem);
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.1);
    margin: 0;
    padding: 1rem 2rem 0;
}

.aline-footer__wordmark span {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px) scale(0.96);
}

.reveal.is-visible .aline-footer__wordmark span {
    animation: footerLetterRise 0.7s ease forwards;
}

.reveal.is-visible .aline-footer__wordmark span:nth-child(2) { animation-delay: 0.05s; }
.reveal.is-visible .aline-footer__wordmark span:nth-child(3) { animation-delay: 0.1s; }
.reveal.is-visible .aline-footer__wordmark span:nth-child(4) { animation-delay: 0.15s; }
.reveal.is-visible .aline-footer__wordmark span:nth-child(5) { animation-delay: 0.2s; }

.aline-footer__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    padding: 0.5rem 2rem 1.5rem;
}

.aline-footer__admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.aline-footer__admin:hover {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
    .aline-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .aline-footer__group {
        align-items: center;
    }
    .aline-footer__menu {
        justify-items: center;
    }
    .aline-footer__icons {
        justify-content: center;
    }
    .aline-footer__meta {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .creator-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .creator-photo {
        max-width: 240px;
    }

    .creator-actions {
        justify-content: center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes footerLetterRise {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 720px) {
    .aline-menu-button {
        top: 0.75rem;
        right: 0.75rem;
    }
    .aline-menu__dropdown {
        top: calc(100% + 0.95rem);
        transform: translateY(0);
    }
    .aline-footer__wordmark {
        font-size: clamp(3rem, 12vw, 6rem);
        gap: clamp(0.2em, 1.6vw, 0.4em);
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-stage {
        min-height: 500px;
        padding: 2.5rem 1rem 1.5rem;
    }
    .hero-floating {
        transform: translateX(clamp(-52px, -7vw, -22px)) scale(0.74);
        transform-origin: top center;
    }
    .hero-shadow {
        width: 360px;
        height: 90px;
        bottom: 2rem;
    }
    .hero-copy-block {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -0.75rem;
        text-align: center;
        display: grid;
        justify-items: center;
    }
    .hero-copy-block__cta {
        justify-content: center;
    }
    .aline-contact {
        padding: 1.25rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid > * {
        min-width: 0;
    }
    .contact-card {
        padding: 1.25rem;
    }
    .contact-points,
    .contact-note,
    .contact-form,
    .contact-form--plugin,
    .contact-form--plugin .wpcf7-response-output,
    .contact-form--plugin .wpforms-confirmation-container,
    .contact-form--plugin .wpforms-error-container {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .contact-form--plugin .wpcf7-submit,
    .contact-form--plugin button[type="submit"],
    .contact-form--plugin input[type="submit"],
    .contact-form--plugin .wpforms-submit,
    .contact-submit {
        width: 100%;
    }
    .floating-card {
        width: 220px;
        height: 320px;
        transform-origin: center;
    }
    .floating-card__bar {
        height: 34px;
        font-size: 0.65rem;
        padding: 0 0.8rem;
    }
    .floating-card__body {
        inset: 54px 16px 16px;
        gap: 1rem;
    }
    .floating-card__label {
        font-size: 2rem;
    }
    .floating-card__sub {
        font-size: 0.6rem;
    }
    .floating-card__bullets li {
        font-size: 0.8rem;
    }
    .floating-card__chip {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.7rem;
    }
    .hero-floating .floating-card:nth-child(2) {
        left: 0.75rem !important;
    }
    .hero-floating .floating-card:nth-child(3) {
        left: 7.5rem !important;
    }
    .hero-floating .floating-card:nth-child(4) {
        left: 14.25rem !important;
    }
    .section-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .section-grid--visual-mid {
        grid-template-areas:
            "intro"
            "visual"
            "details";
    }
    .section-grid--visual-mid .section-copy {
        display: contents;
    }
    .section-grid--visual-mid .section-intro {
        grid-area: intro;
    }
    .section-grid--visual-mid .section-details {
        grid-area: details;
    }
    .section-grid--visual-mid .section-visual,
    .section-grid--visual-mid .product-panel {
        grid-area: visual;
    }
    .product-panel {
        padding: 1.5rem 1rem;
    }
    .product-card {
        padding: 1.25rem;
    }
    .product-card__head {
        gap: 0.75rem;
    }
    .product-card__mark {
        width: 2.1rem;
        height: 2.1rem;
        border-radius: 14px;
    }
    .product-card__mark img,
    .product-card__mark svg {
        width: 22px;
        height: 22px;
    }
    .product-card__title {
        font-size: 1rem;
    }
    .product-card__sub {
        font-size: 0.8rem;
    }
    .product-card__chips {
        gap: 0.4rem;
    }
    .product-card__chips .chip {
        height: 2.2rem;
        padding: 0 0.9rem;
        font-size: 0.8rem;
    }
    .product-card__list {
        padding-left: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .product-card__list li {
        margin-bottom: 0.3rem;
    }
    .product-card__actions {
        gap: 0.5rem;
    }
    .section-visual {
        min-height: 420px;
    }
    .section-visual__card {
        width: 240px;
        height: 360px;
    }
    .section-visual__bar {
        height: 2.2rem;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    .section-visual__body {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.9rem;
        text-align: center;
    }
    .section-visual__column {
        align-items: center;
    }
    .section-visual__word {
        font-size: 2.2rem;
    }
    .section-visual__tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.55rem;
    }
    .section-visual__metrics {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        font-size: 0.8rem;
    }
    .section-visual__metrics .metric-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.35rem;
    }
    .ai-reception__grid {
        grid-template-areas:
            "intro"
            "visual"
            "details";
    }
    .ai-reception__grid .section-copy {
        display: contents;
    }
    .ai-reception__intro {
        grid-area: intro;
    }
    .ai-visual {
        grid-area: visual;
    }
    .ai-reception__details {
        grid-area: details;
    }
    .product-card__actions {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .hero-stage {
        min-height: 480px;
    }
    .hero-floating {
        transform: translateX(clamp(-60px, -9vw, -26px)) scale(0.64);
    }
    .hero-floating .floating-card:nth-child(2) {
        left: 0.5rem !important;
    }
    .hero-floating .floating-card:nth-child(3) {
        left: 6.5rem !important;
    }
    .hero-floating .floating-card:nth-child(4) {
        left: 12.5rem !important;
    }
    .hero-shadow {
        width: 320px;
        height: 80px;
    }
}

@media (max-width: 420px) {
    .hero-stage {
        min-height: 460px;
    }
    .hero-floating {
        transform: translateX(clamp(-66px, -11vw, -30px)) scale(0.58);
    }
    .hero-floating .floating-card:nth-child(2) {
        left: 0.35rem !important;
    }
    .hero-floating .floating-card:nth-child(3) {
        left: 6rem !important;
    }
    .hero-floating .floating-card:nth-child(4) {
        left: 11.5rem !important;
    }
    .hero-copy-block__cta {
        width: 100%;
    }
    .product-panel {
        padding: 1.25rem 0.85rem;
    }
    .product-card {
        padding: 1rem;
    }
    .product-card__title {
        font-size: 0.95rem;
    }
    .product-card__sub {
        font-size: 0.75rem;
    }
    .product-card__chips {
        gap: 0.35rem;
    }
    .product-card__chips .chip {
        height: 2rem;
        padding: 0 0.75rem;
        font-size: 0.75rem;
    }
    .product-card__list {
        font-size: 0.85rem;
        line-height: 1.45;
    }
    .product-card__list li {
        margin-bottom: 0.25rem;
    }
}
