:root {
    --background: #07101d;
    --background-soft: #0b1728;
    --surface: rgba(255, 255, 255, 0.075);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --text: #f7fbff;
    --text-soft: #aebed3;
    --primary: #5eead4;
    --primary-strong: #22d3ee;
    --secondary: #8b5cf6;
    --border: rgba(255, 255, 255, 0.13);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius-large: 30px;
    --radius-medium: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(
            circle at 5% 0%,
            rgba(34, 211, 238, 0.18),
            transparent 30rem
        ),
        radial-gradient(
            circle at 100% 10%,
            rgba(139, 92, 246, 0.18),
            transparent 30rem
        ),
        linear-gradient(
            180deg,
            #07101d 0%,
            #081426 45%,
            #050a13 100%
        );
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 78%
        );
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

.container {
    width: min(
        var(--container),
        calc(100% - 32px)
    );
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: -999px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #07101d;
    background: #ffffff;
    font-weight: 800;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    padding: 12px 0;
    background:
        linear-gradient(
            180deg,
            rgba(7, 16, 29, 0.98),
            rgba(7, 16, 29, 0.86),
            rgba(7, 16, 29, 0)
        );
    backdrop-filter: blur(18px);
}

.nav-shell {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 18px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.045)
        );
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.24);
}

.brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    flex: 0 0 auto;
    border-radius: 17px;
    box-shadow:
        0 12px 32px rgba(34, 211, 238, 0.16);
}

.brand-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
    line-height: 1;
}

.brand-copy strong {
    font-size: 21px;
    letter-spacing: -0.04em;
}

.brand-copy small {
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.navigation {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 4px;
}

.navigation a {
    padding: 11px 13px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 750;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.navigation a:hover,
.navigation a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: currentColor;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

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

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 21px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.075);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.button-primary {
    border-color: transparent;
    color: #04131b;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-strong)
        );
    box-shadow:
        0 16px 40px rgba(34, 211, 238, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
    background:
        linear-gradient(
            135deg,
            #8ff4e6,
            #57dcf3
        );
}

.nav-cta {
    min-height: 46px;
    padding-inline: 17px;
    font-size: 13px;
}

.section {
    position: relative;
    padding: 76px 0;
}

.hero {
    min-height: 710px;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    pointer-events: none;
}

.hero-orb-one {
    width: 340px;
    height: 340px;
    top: 90px;
    right: 7%;
    background: rgba(34, 211, 238, 0.13);
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    bottom: 60px;
    left: -60px;
    background: rgba(139, 92, 246, 0.12);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);
    align-items: center;
    gap: 54px;
}

.eyebrow {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #d9e9f8;
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
    font-weight: 800;
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--primary);
    box-shadow:
        0 0 18px var(--primary);
}

.hero h1 {
    max-width: 790px;
    margin: 20px 0 0;
    font-size: clamp(45px, 6vw, 82px);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 span {
    color: transparent;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            var(--primary-strong) 55%,
            var(--primary)
        );
    background-clip: text;
}

.hero-text {
    max-width: 690px;
    margin: 24px 0 0;
    color: #c0cfe0;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 11px;
    margin-top: 34px;
}

.hero-stats article {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.055);
}

.hero-stats strong {
    display: block;
    font-size: 21px;
    letter-spacing: -0.04em;
}

.hero-stats span {
    display: block;
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 12px;
}

.product-preview {
    position: relative;
}

.preview-window {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.045)
        );
    box-shadow: var(--shadow);
}

.preview-window::after {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -95px;
    bottom: -95px;
    border-radius: 999px;
    content: "";
    background: rgba(94, 234, 212, 0.13);
}

.preview-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 750;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.preview-dashboard {
    position: relative;
    z-index: 2;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    background: rgba(4, 12, 23, 0.58);
}

.preview-title {
    display: flex;
    margin-bottom: 17px;
    align-items: center;
    justify-content: space-between;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 750;
}

.preview-title strong {
    color: var(--primary);
    font-size: 19px;
}

.preview-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    margin-top: 12px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.055);
}

.preview-card-featured {
    background:
        linear-gradient(
            135deg,
            rgba(34, 211, 238, 0.14),
            rgba(139, 92, 246, 0.08)
        );
}

.preview-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 16px;
    color: #04131b;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-strong)
        );
    font-size: 14px;
    font-weight: 950;
}

.preview-card span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.preview-card h2 {
    margin: 3px 0 6px;
    font-size: 19px;
    letter-spacing: -0.035em;
}

.preview-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.55;
}

.preview-progress {
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 750;
}

.preview-progress div {
    height: 8px;
    margin: 9px 0;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
}

.preview-progress i {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );
}

.section-muted {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.02)
        );
    border-block:
        1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-kicker {
    margin: 0;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
    margin: 11px 0;
    font-size: clamp(32px, 4vw, 54px);
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.section-heading > p:last-child,
.about-copy > p,
.contact-copy > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.72;
}

.service-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 17px;
}

.service-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--surface);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(94, 234, 212, 0.3);
    background: var(--surface-strong);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 21px;
    color: rgba(255, 255, 255, 0.22);
    font-size: 13px;
    font-weight: 900;
}

.service-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
    place-items: center;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 25px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.service-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
}

.app-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 20px;
}

.app-card {
    display: grid;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
}

.app-visual {
    position: relative;
    display: grid;
    min-height: 190px;
    place-items: center;
    overflow: hidden;
}

.app-visual::before,
.app-visual::after {
    position: absolute;
    border-radius: 999px;
    content: "";
}

.app-visual::before {
    width: 230px;
    height: 230px;
    background: rgba(255, 255, 255, 0.1);
}

.app-visual::after {
    width: 105px;
    height: 105px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.app-visual-exam {
    background:
        linear-gradient(
            135deg,
            #44207a,
            #7c3aed 52%,
            #22d3ee
        );
}

.app-visual-property {
    background:
        linear-gradient(
            135deg,
            #0e7490,
            #14b8a6 55%,
            #a3e635
        );
}


.app-visual small {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(4, 13, 25, 0.35);
    font-weight: 800;
}

.app-content {
    padding: 26px;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.app-tags span {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.045);
    font-size: 10px;
    font-weight: 800;
}

.app-content h3 {
    margin: 16px 0 9px;
    font-size: 28px;
    letter-spacing: -0.045em;
}

.app-content p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-weight: 850;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.process-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 15px;
}

.process-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--surface);
}

.process-card > span {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
    place-items: center;
    border-radius: 14px;
    color: #04131b;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-strong)
        );
    font-size: 12px;
    font-weight: 950;
}

.process-card h3 {
    margin: 0 0 9px;
    font-size: 19px;
}

.process-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, 0.72fr);
    gap: 42px;
    align-items: center;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.skill-list span {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #dceaf6;
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
    font-weight: 750;
}

.about-panel {
    display: grid;
    gap: 10px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow: var(--shadow);
}

.about-panel div {
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: rgba(4, 13, 25, 0.42);
}

.about-panel strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
}

.about-panel span {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.contact-section {
    padding-bottom: 92px;
}

.contact-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(340px, 0.78fr);
    gap: 36px;
    padding: 40px;
    border: 1px solid rgba(94, 234, 212, 0.22);
    border-radius: 34px;
    background:
        linear-gradient(
            135deg,
            rgba(94, 234, 212, 0.13),
            rgba(34, 211, 238, 0.08),
            rgba(139, 92, 246, 0.08)
        );
    box-shadow: var(--shadow);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-form {
    display: grid;
    gap: 13px;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(4, 13, 25, 0.52);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #dbe9f6;
    font-size: 12px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
}

.contact-form input,
.contact-form select {
    height: 46px;
    padding: 0 13px;
}

.contact-form textarea {
    min-height: 120px;
    padding: 12px 13px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-strong);
    box-shadow:
        0 0 0 3px rgba(34, 211, 238, 0.1);
}

.contact-form option {
    color: #07101d;
}

.contact-form .button {
    width: 100%;
    margin-top: 2px;
}

.form-note {
    margin: 0;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.5;
}

.site-footer {
    padding:
        46px
        0
        calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(3, 8, 15, 0.44);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(130px, 0.4fr)
        minmax(130px, 0.4fr);
    gap: 38px;
}

.footer-brand {
    width: fit-content;
}

.footer-grid > div:first-child > p {
    max-width: 470px;
    margin: 17px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links strong {
    margin-bottom: 4px;
}

.footer-links a {
    width: fit-content;
    color: var(--text-soft);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-soft);
    font-size: 11px;
}

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

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

.legal-page {
    min-height: 100vh;
}

.legal-main {
    padding: 72px 0 90px;
}

.legal-card {
    max-width: 880px;
    margin-inline: auto;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: var(--surface);
}

.legal-card h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.055em;
}

.legal-card h2 {
    margin: 30px 0 10px;
    font-size: 20px;
}

.legal-card p,
.legal-card li {
    color: var(--text-soft);
    line-height: 1.75;
}

.legal-card a {
    color: var(--primary);
}

.not-found {
    min-height: calc(100vh - 96px);
    display: grid;
    place-items: center;
    padding: 40px 0;
    text-align: center;
}

.not-found h1 {
    margin: 0;
    font-size: clamp(70px, 15vw, 150px);
    letter-spacing: -0.08em;
}

.not-found p {
    color: var(--text-soft);
}

.not-found .button {
    margin-top: 12px;
}

@media (max-width: 1020px) {
    .navigation {
        display: none;
        position: absolute;
        top: calc(100% + 9px);
        right: 0;
        left: 0;
        margin: 0;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 21px;
        background: rgba(7, 16, 29, 0.98);
        box-shadow: var(--shadow);
    }

    .navigation.open {
        display: grid;
    }

    .navigation a {
        min-height: 47px;
        display: flex;
        align-items: center;
        padding-inline: 14px;
        border-radius: 14px;
    }

    .menu-button {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .product-preview {
        width: min(600px, 100%);
        margin-inline: auto;
    }

    .hero {
        min-height: auto;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(
            var(--container),
            calc(100% - 22px)
        );
    }

    .site-header {
        padding: 8px 0;
    }

    .nav-shell {
        min-height: 62px;
        gap: 9px;
        padding: 8px;
        border-radius: 21px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy small {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .section {
        padding: 52px 0;
    }

    .hero {
        padding-top: 43px;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 58px);
        letter-spacing: -0.05em;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.66;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .product-preview {
        display: none;
    }

    .service-grid,
    .app-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .app-card {
        min-height: auto;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 24px;
        border-radius: 26px;
    }

    .contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: grid;
        justify-content: center;
        text-align: center;
    }

    .legal-card {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.app-logo {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    padding: 6px;
    border-radius: 26px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.3);
}