:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --surface-2: #f1f4fb;
    --text: #182033;
    --text-soft: #53607a;
    --line: #dfe5f0;

    --blue: #1e8fff;
    --purple: #6a4cff;
    --pink: #ff1581;
    --navy: #1f2b52;

    --gradient: linear-gradient(90deg, var(--blue) 0%, var(--purple) 50%, var(--pink) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(30, 143, 255, 0.08), rgba(106, 76, 255, 0.08), rgba(255, 21, 129, 0.08));
    --shadow: 0 16px 45px rgba(19, 33, 68, 0.08);
    --radius: 20px;

    --container: 1240px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

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

.section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(100% - 32px, var(--container));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(106, 76, 255, 0.18), transparent);
}

.section-head {
    margin-bottom: 34px;
}

.section-kicker,
.eyebrow {
    margin: 0 0 10px;
    color: var(--purple);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-head h2,
.cta-box h2,
.audience-box h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(24, 32, 51, 0.08);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-text {
    display: block;
    min-width: 0;
}

.brand-title {
    display: block;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1;
    color: var(--navy);
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.dot-shop {
    color: var(--pink);
}

.brand-subtitle {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-service {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 22px;
    margin-left: 6px;
    border-left: 1px solid rgba(31, 43, 82, 0.12);
}

.header-service-logo {
    width: 70px;
    height: auto;
    display: block;
    opacity: 0.92;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(31, 43, 82, 0.14);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 8px 24px rgba(19, 33, 68, 0.06);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.mobile-menu.is-open {
    display: grid;
    gap: 6px;
    padding: 12px 16px 18px;
    background: #fff;
    border-top: 1px solid rgba(24, 32, 51, 0.06);
    border-bottom: 1px solid rgba(24, 32, 51, 0.08);
    box-shadow: 0 18px 34px rgba(19, 33, 68, 0.08);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 800;
    color: var(--navy);
    background: #f7f8fc;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
    color: #fff;
    background: var(--gradient);
}

/* SECTION NAV */

.section-nav {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: grid;
    gap: 10px;
}

.section-nav-link {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(31, 43, 82, 0.22);
    transition: background 0.2s ease, transform 0.2s ease;
}

.section-nav-link span {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 10px;
    border-radius: 999px;
    background: #11182b;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, right 0.2s ease;
}

.section-nav-link:hover,
.section-nav-link.is-active {
    background: var(--pink);
    transform: scale(1.2);
}

.section-nav-link:hover span {
    right: 26px;
    opacity: 1;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gradient {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 12px 26px rgba(106, 76, 255, 0.2);
}

.btn-outline {
    color: var(--navy);
    border-color: rgba(31, 43, 82, 0.18);
    background: #fff;
}

.btn-header {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(31, 43, 82, 0.14);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(19, 33, 68, 0.06);
    flex-shrink: 0;
}

.btn-header:hover {
    background: #f9fbff;
}

.btn-small {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.95rem;
}

.btn-light {
    color: var(--navy);
    background: #fff;
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.btn-disabled {
    color: #7a8398;
    background: #eef2f8;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

/* HERO */

.hero {
    position: relative;
    padding: 116px 0 104px;
    overflow: hidden;
    background:
            radial-gradient(circle at top right, rgba(255, 21, 129, 0.09), transparent 30%),
            radial-gradient(circle at top left, rgba(30, 143, 255, 0.11), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(100% - 32px, var(--container));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(106, 76, 255, 0.2), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(3rem, 7vw, 5.9rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 620px;
    margin: 0;
    color: var(--text-soft);
    font-size: 1.12rem;
}

.hero-text + .hero-text {
    margin-top: 14px;
}

.hero-text-secondary {
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    border: 1px solid rgba(106, 76, 255, 0.12);
    box-shadow: var(--shadow);
}

/* MOCKUP */

.hero-visual {
    position: relative;
    min-height: 560px;
}

.device {
    background: #1b1f2c;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(28, 37, 64, 0.18);
}

.device-laptop {
    width: 100%;
    max-width: 700px;
    padding: 16px 16px 22px;
    margin-left: auto;
}

.device-phone {
    position: absolute;
    right: -10px;
    bottom: 10px;
    width: 210px;
    padding: 12px;
    border-radius: 34px;
    border: 6px solid #11151f;
    background: #11151f;
}

.device-screen {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
}

.mock-header {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #edf1f7;
}

.mock-header span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d4dae8;
}

.mock-shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px;
    min-height: 360px;
    background: linear-gradient(135deg, #fff 0%, #f4f8ff 100%);
}

.mock-kicker {
    color: var(--blue);
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.mock-left h3 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.02;
    color: var(--navy);
}

.mock-left p {
    margin: 0 0 20px;
    color: var(--text-soft);
}

.mock-left button,
.phone-screen button {
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
}

.mock-right {
    position: relative;
}

.mock-product {
    position: absolute;
    background: linear-gradient(180deg, #34466f, #1e2947);
    box-shadow: 0 16px 34px rgba(24, 32, 51, 0.15);
}

.mock-hoodie {
    width: 180px;
    height: 210px;
    border-radius: 24px;
    top: 10px;
    right: 30px;
}

.mock-cup {
    width: 78px;
    height: 88px;
    border-radius: 12px;
    bottom: 35px;
    left: 22px;
}

.phone-screen {
    padding: 16px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-product {
    height: 150px;
    border-radius: 16px;
    background: linear-gradient(180deg, #34466f, #1e2947);
}

.phone-lines {
    display: grid;
    gap: 10px;
}

.phone-lines span {
    height: 10px;
    border-radius: 999px;
    background: #edf1f7;
}

.phone-screen button {
    margin-top: auto;
    background: var(--gradient);
}

/* SECTION BACKGROUNDS */

.features {
    background: #f7f8fc;
}

.pricing {
    background:
            radial-gradient(circle at top right, rgba(30, 143, 255, 0.07), transparent 26%),
            #ffffff;
}

.references {
    background:
            linear-gradient(180deg, rgba(106, 76, 255, 0.04) 0%, rgba(255, 255, 255, 0) 42%),
            #f7f8fc;
}

.process {
    background: #ffffff;
}

.audience {
    background:
            radial-gradient(circle at bottom left, rgba(255, 21, 129, 0.06), transparent 28%),
            #f7f8fc;
}

.cta {
    background: #ffffff;
}

/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(106, 76, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-soft);
}

/* PRICING */

.pricing-intro {
    max-width: 820px;
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 22px;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(106, 76, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.pricing-card p {
    margin: 0;
    color: var(--text-soft);
}

.pricing-card-highlight {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 24px 50px rgba(106, 76, 255, 0.18);
}

.pricing-card-highlight h3 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    color: #fff;
}

.pricing-card-highlight p,
.pricing-card-highlight .pricing-label,
.pricing-card-highlight .pricing-subline {
    color: rgba(255, 255, 255, 0.92);
}

.pricing-label {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-subline {
    font-size: 1rem;
    line-height: 1.4;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
    font-size: 0.95rem;
}

/* REFERENCES */

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reference-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(106, 76, 255, 0.08);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.reference-thumb {
    aspect-ratio: 16 / 9;
    background: #eef3fb;
}

.reference-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-thumb-soon {
    position: relative;
    overflow: hidden;
    background:
            linear-gradient(135deg, rgba(30, 143, 255, 0.14), rgba(106, 76, 255, 0.18), rgba(255, 21, 129, 0.16)),
            #eef3fb;
}

.reference-thumb-soon::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 2px dashed rgba(31, 43, 82, 0.18);
}

.coming-soon-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    box-shadow: 0 12px 26px rgba(106, 76, 255, 0.18);
    z-index: 2;
}

.soon-preview {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.soon-club {
    display: block;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.soon-line,
.soon-line-short {
    display: block;
    height: 10px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(31, 43, 82, 0.16);
}

.soon-line-short {
    width: 62%;
}

.reference-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reference-content h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.reference-content p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.reference-meta {
    margin-top: auto;
    display: grid;
    gap: 18px;
    align-items: end;
}

.reference-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.reference-tags span,
.audience-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--surface-2);
    border: 1px solid rgba(106, 76, 255, 0.08);
}

/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(106, 76, 255, 0.08);
    box-shadow: var(--shadow);
}

.process-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: var(--gradient);
    margin-bottom: 18px;
    box-shadow: 0 14px 28px rgba(106, 76, 255, 0.18);
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.process-card p {
    margin: 0;
    color: var(--text-soft);
}

/* AUDIENCE */

.audience-box {
    background: #fff;
    border: 1px solid rgba(106, 76, 255, 0.08);
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.audience-box p:last-of-type {
    margin-top: 10px;
    color: var(--text-soft);
}

.audience-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* CTA */

.cta-box {
    background: var(--gradient);
    color: #fff;
    border-radius: 32px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 28px 60px rgba(106, 76, 255, 0.18);
}

.cta .section-kicker {
    color: rgba(255, 255, 255, 0.85);
}

.cta-box p {
    margin: 10px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* FOOTER */

.site-footer {
    background: #11182b;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
}

.footer-brand-inner {
    margin-bottom: 18px;
}

.brand-icon-footer {
    color: #fff;
    opacity: 0.95;
}

.site-footer .brand-title {
    color: #fff;
}

.site-footer .brand-subtitle,
.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-wiedtal-logo {
    width: 190px;
    height: auto;
    margin-top: 22px;
    opacity: 0.95;
}

.footer-column h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
    padding: 22px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

/* SCROLL TOP */

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(106, 76, 255, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto 1fr;
    }

    .header-service {
        display: none;
    }

    .hero-grid,
    .cta-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-actions {
        justify-content: flex-start;
    }

    .section-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-visual {
        min-height: 430px;
    }

    .device-laptop {
        margin-inline: auto;
    }

    .device-phone {
        display: none;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 76px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .section::before {
        width: min(100% - 28px, var(--container));
    }

    .header-inner {
        min-height: 76px;
        gap: 12px;
    }

    .brand {
        gap: 9px;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
    }

    .brand-title {
        font-size: 1.08rem;
        letter-spacing: -0.035em;
    }

    .brand-subtitle {
        font-size: 0.6rem;
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding-top: 58px;
        padding-bottom: 62px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.45rem);
        line-height: 0.98;
        margin-bottom: 18px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-text-secondary {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 26px;
    }

    .btn {
        width: 100%;
    }

    .hero-badges {
        gap: 8px;
        margin-top: 22px;
    }

    .hero-badges span {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.82rem;
        box-shadow: none;
    }

    .hero-visual {
        min-height: auto;
    }

    .device-laptop {
        max-width: 100%;
        padding: 10px 10px 14px;
        border-radius: 22px;
        box-shadow: 0 20px 40px rgba(28, 37, 64, 0.14);
    }

    .device-screen {
        min-height: auto;
        border-radius: 15px;
    }

    .mock-header {
        padding: 10px 12px;
    }

    .mock-shop {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 22px;
    }

    .mock-left h3 {
        font-size: 1.65rem;
    }

    .mock-left p {
        margin-bottom: 16px;
    }

    .mock-right {
        display: none;
    }

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

    .feature-card,
    .pricing-card,
    .process-card,
    .reference-content {
        padding: 22px;
    }

    .reference-content h3 {
        font-size: 1.28rem;
    }

    .reference-tags span,
    .audience-tags span {
        font-size: 0.82rem;
        min-height: 30px;
        padding: 0 10px;
    }

    .audience-box,
    .cta-box {
        padding: 26px;
        border-radius: 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-grid {
        gap: 26px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 430px) {
    .brand-subtitle {
        display: none;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-badges span:nth-child(4) {
        display: none;
    }
}
