:root {
    --bg-page: #ffffff;
    --bg-soft: #f1ecff;
    --bg-card: #ffffff;
    --text-main: #130047;
    --text-body: #333333;
    --brand: #6938ef;
    --brand-dark: #4b2bad;
    --border-soft: #d8cdf9;
    --container: 1440px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-main);
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.contact-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(19, 0, 71, 0.06);
}

.contact-nav-inner {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.contact-logo img {
    height: 32px;
}

.contact-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 18px;
}

.contact-nav-links a {
    font-size: 18px;
    opacity: 0.8;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-nav-links a:hover,
.contact-nav-links a.active {
    opacity: 1;
    color: var(--brand);
}

.contact-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.2s ease;
}

.contact-nav-links a:hover::after,
.contact-nav-links a.active::after {
    width: 100%;
}

.contact-nav-cta {
    padding: 14px 24px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.contact-nav-cta:hover {
    background: var(--brand-dark);
}

.mobile-menu-btn {
    display: none;
    color: var(--text-main);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.contact-hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    min-height: calc(100vh - 75px);
    padding: 108px 0 140px;
}

.contact-hero-inner {
    width: min(100% - 32px, var(--container));
    max-width: 1240px;
    margin: 0 auto;
}

.contact-page-title {
    margin: 0 0 54px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -0.7px;
    color: #000;
    font-weight: 700;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 608px 590px;
    gap: 42px;
    align-items: start;
}

.contact-form-card,
.contact-visual-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
}

.contact-form-card {
    padding: 38px 19px 46px;
}

.contact-form-header {
    margin-bottom: 16px;
}

.contact-form-header h2 {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
}

.contact-form-header p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-field label {
    font-size: 14px;
    line-height: 1.3;
    color: #333;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: #fff;
    color: rgba(51, 51, 51, 0.9);
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 15px;
    outline: none;
}

.contact-form-field input {
    height: 44px;
}

.contact-form-field textarea {
    height: 140px;
    resize: none;
    padding-top: 11px;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(51, 51, 51, 0.9);
}

.contact-consent-row {
    margin-top: -2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
}

.contact-consent-row input {
    margin: 0;
    width: 17px;
    height: 17px;
    accent-color: #6938ef;
    flex-shrink: 0;
}

.contact-consent-row a {
    color: #6938ef;
}

.contact-submit-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(90deg, #6938ef 0%, #6938ef 100%);
    box-shadow:
        0 8px 8px -3px rgba(7, 1, 19, 0.03),
        0 5px 5px -2.5px rgba(7, 1, 19, 0.03),
        0 3px 3px -1.5px rgba(7, 1, 19, 0.03),
        0 2px 2px -1px rgba(7, 1, 19, 0.03),
        0 1px 1px -0.5px rgba(7, 1, 19, 0.03),
        0 0.5px 0.5px 0 rgba(7, 1, 19, 0.03);
}

.contact-submit-btn:hover {
    background: linear-gradient(90deg, #5e2fe0 0%, #5e2fe0 100%);
}

.contact-visual-card {
    height: 664px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(181deg, #d8cdf9 3%, rgba(110, 57, 255, 0.77) 102%);
}

.contact-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.14) translateX(8px) translateY(6px);
}

.asset-management-section {
    padding: 96px 0;
    background:
        radial-gradient(70% 80% at 12% 10%, rgba(148, 86, 255, 0.08), rgba(148, 86, 255, 0)),
        #fff;
}

.asset-management-container {
    width: min(100% - 32px, var(--container));
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.asset-management-content {
    background: linear-gradient(136deg, #fbf9ff 0%, #f4efff 100%);
    border: 1px solid rgba(105, 56, 239, 0.12);
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(67, 23, 174, 0.08);
    padding: 88px 56px;
    display: grid;
    grid-template-columns: 414px 1fr;
    gap: 60px;
    align-items: center;
    min-height: 522px;
    position: relative;
    overflow: hidden;
}

.asset-management-content::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 56, 239, 0.16) 0%, rgba(105, 56, 239, 0) 70%);
    pointer-events: none;
}

.asset-management-content::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 112, 255, 0.14) 0%, rgba(147, 112, 255, 0) 68%);
    pointer-events: none;
}

.asset-management-text {
    display: flex;
    flex-direction: column;
    width: 414px;
    max-width: 100%;
    gap: 24px;
}

.asset-management-title {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 0;
}

.asset-management-subtitle {
    font-size: 24px;
    color: #4d4d4d;
    line-height: 1.25;
    margin: 0;
}

.asset-management-actions {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    margin-top: 8px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.asset-download-buttons {
    align-items: flex-start;
    flex-shrink: 0;
}

.download-card {
    width: 187px;
    min-height: 55px;
    border-radius: 12px;
    padding: 8px 14px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11, 4, 33, 0.16);
}

.download-card-dark {
    background: linear-gradient(145deg, #0f1024 0%, #000 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.download-card-light {
    background: #fff;
    color: #000;
    border-color: rgba(17, 17, 17, 0.2);
}

.download-card-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.download-card-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.download-card-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.download-card-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.asset-management-placeholder {
    width: 153px;
    height: 153px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.55)),
        repeating-linear-gradient(90deg,
            rgba(105, 56, 239, 0.08) 0 10px,
            rgba(105, 56, 239, 0.16) 10px 20px);
    border: 1px solid rgba(105, 56, 239, 0.25);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(105, 56, 239, 0.16);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-qr {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.asset-management-stats {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 130px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(105, 56, 239, 0.18);
    border-radius: 14px;
}

.stat-value {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    text-align: left;
}

.stat-value-percent {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
}

.stat-value-number {
    font-size: 44px;
    line-height: 1;
}

.stat-value-symbol {
    font-size: 20px;
    line-height: 1;
    padding-bottom: 4px;
}

.stat-label {
    font-size: 16px;
    color: #565656;
    line-height: 1.22;
    text-align: left;
}

.asset-management-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.image-bg {
    position: absolute;
    width: 560px;
    height: 400px;
    background:
        radial-gradient(64% 76% at 30% 34%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
        linear-gradient(150deg, #bca4ff 0%, #8f63fb 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 32px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.iphone-image {
    position: relative;
    width: 572px;
    height: 471px;
    object-fit: contain;
    transform: translateY(-35px);
    filter: drop-shadow(0 18px 36px rgba(19, 0, 71, 0.24));
}

.footer {
    background: linear-gradient(180deg, rgba(19, 0, 71, 1) 0%, rgba(19, 0, 71, 1) 39%, rgba(0, 0, 0, 1) 100%);
    border-radius: 24px 24px 0 0;
    padding: 67px 0 42px;
}

.footer-container {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 120px;
}

.footer-tagline {
    font-size: 24px;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.footer-copyright {
    font-size: 16px;
    color: #fff;
    line-height: 1.625;
    margin: 0;
    padding-top: 8px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-nav-link:hover {
    opacity: 1;
}

.subscribe-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.subscribe-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    overflow: hidden;
    width: 439px;
}

.subscribe-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 23px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
    background: rgba(105, 66, 235, 0.5);
    border: none;
    padding: 20px 33px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: rgba(105, 66, 235, 0.7);
}

@media (max-width: 1280px) {
    .contact-content-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .contact-form-card {
        padding-inline: 18px;
    }

    .asset-management-container {
        padding: 0 32px;
    }
}

@media (max-width: 1100px) {
    .contact-hero {
        padding-top: 72px;
    }

    .contact-page-title {
        font-size: clamp(40px, 7vw, 54px);
        margin-bottom: 40px;
    }

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

    .contact-form-card,
    .contact-visual-card {
        width: min(100%, 700px);
        margin: 0 auto;
    }

    .contact-visual-card {
        height: auto;
        aspect-ratio: 590 / 664;
    }

    .asset-management-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 32px;
        min-height: 0;
    }

    .asset-management-text {
        width: 100%;
    }

    .asset-management-stats {
        flex-wrap: wrap;
        gap: 48px;
        margin-top: 24px;
    }

    .image-bg {
        width: min(100%, 460px);
        height: min(58vw, 320px);
    }

    .iphone-image {
        width: min(100%, 420px);
        height: auto;
        transform: translateY(-20px);
    }

    .footer-content {
        flex-direction: column;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .contact-nav-inner {
        min-height: 68px;
    }

    .contact-nav-links {
        display: none;
    }

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

    .contact-nav-cta {
        display: none;
    }

    .contact-nav .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 16px;
        border-top: 1px solid rgba(19, 0, 71, 0.08);
        z-index: 99;
    }

    .contact-nav .nav-links.mobile-open .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid #f1ecff;
    }

    .contact-hero {
        min-height: auto;
        padding: 52px 0 80px;
    }

    .contact-page-title {
        font-size: clamp(32px, 9vw, 46px);
        margin-bottom: 28px;
    }

    .contact-form-header h2 {
        font-size: 28px;
    }

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

    .asset-management-content {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .asset-management-title {
        font-size: clamp(30px, 7vw, 38px);
    }

    .asset-management-subtitle {
        font-size: 20px;
    }

    .asset-management-actions {
        flex-direction: column;
        gap: 20px;
    }

    .asset-management-placeholder {
        width: 138px;
        height: 138px;
    }

    .asset-management-stats {
        gap: 36px;
        margin-top: 32px;
        width: 100%;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-item {
        flex: 1 1 140px;
        min-width: 0;
    }

    .footer {
        padding: 56px 0 36px;
        margin-inline: 16px;
        border-radius: 20px 20px 0 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-right {
        width: 100%;
    }

    .subscribe-form {
        width: min(100%, 520px);
    }
}

@media (max-width: 768px) {
    .asset-management-title {
        font-size: 32px;
    }

    .asset-management-subtitle {
        font-size: 20px;
    }

    .asset-management-actions {
        gap: 24px;
    }

    .asset-management-stats {
        gap: 60px;
        margin-top: 48px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 520px) {

    .contact-nav-inner,
    .contact-hero-inner,
    .asset-management-container {
        width: min(100% - 24px, var(--container));
    }

    .contact-hero {
        padding: 32px 0 48px;
    }

    .contact-page-title {
        font-size: clamp(30px, 8.6vw, 36px);
        margin-bottom: 18px;
    }

    .contact-content-grid {
        gap: 12px;
    }

    .contact-form-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .contact-visual-card {
        border-radius: 18px;
        aspect-ratio: 6 / 7;
    }

    .contact-visual-card img {
        transform: scale(1.08) translateX(4px) translateY(4px);
    }

    .contact-form-header h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .contact-form-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-form {
        gap: 18px;
    }

    .contact-form-field {
        gap: 10px;
    }

    .contact-consent-row {
        align-items: flex-start;
        font-size: 12px;
    }

    .contact-submit-btn {
        height: 42px;
        font-size: 15px;
    }

    .asset-management-section {
        padding: 60px 0;
    }

    .download-card {
        width: min(100%, 320px);
    }

    .footer {
        margin-inline: 12px;
        border-radius: 18px 18px 0 0;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .subscribe-form {
        width: 100%;
        flex-direction: column;
    }

    .subscribe-input {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@media (max-width: 430px) {
    .asset-management-container {
        width: min(100% - 32px, var(--container));
    }

    .asset-management-content {
        padding: 30px 16px;
        border-radius: 16px;
    }

    .asset-management-title {
        font-size: 26px;
    }

    .asset-management-subtitle {
        font-size: 18px;
    }

    .asset-management-actions {
        flex-direction: column;
        gap: 20px;
    }

    .asset-management-placeholder {
        width: 140px;
        height: 140px;
    }

    .asset-management-stats {
        gap: 40px;
        margin-top: 32px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .image-bg {
        width: 100%;
        height: 200px;
    }

    .iphone-image {
        width: 200px;
        transform: translateY(-10px);
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 14px;
    }

    .footer-nav-link {
        font-size: 16px;
    }

    .subscribe-title {
        font-size: 18px;
    }

    .subscribe-input {
        padding: 14px 16px;
    }

    .subscribe-btn {
        padding: 14px 24px;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .contact-page-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-form-card {
        padding: 20px 12px;
    }

    .contact-visual-card {
        border-radius: 14px;
    }

    .contact-visual-card img {
        transform: scale(1.02) translateX(2px) translateY(2px);
    }

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

    .asset-management-content {
        padding: 24px 12px;
    }

    .asset-management-title {
        font-size: 22px;
    }

    .asset-management-subtitle {
        font-size: 16px;
    }

    .asset-management-actions {
        gap: 16px;
    }

    .asset-management-placeholder {
        width: 120px;
        height: 120px;
    }

    .asset-management-stats {
        gap: 30px;
        margin-top: 24px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .image-bg {
        height: 180px;
    }

    .iphone-image {
        width: 180px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .subscribe-title {
        font-size: 16px;
    }

    .subscribe-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .subscribe-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* 390px final layout guards (contact) */
@media (max-width: 390px) {

    .contact-nav-inner,
    .contact-hero-inner,
    .asset-management-container {
        width: min(100% - 20px, var(--container));
    }

    .contact-nav-inner {
        min-height: 64px;
    }

    .contact-nav .nav-links.mobile-open {
        top: 64px;
        padding: 12px;
        gap: 10px;
    }

    .contact-nav .nav-links.mobile-open .nav-link {
        padding: 10px 0;
    }

    .contact-hero {
        padding: 26px 0 36px;
    }

    .contact-page-title {
        font-size: clamp(24px, 8vw, 30px);
        line-height: 1.14;
        margin-bottom: 12px;
    }

    .contact-content-grid {
        gap: 10px;
    }

    .contact-form-card {
        padding: 18px 12px;
        border-radius: 14px;
    }

    .contact-form-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contact-form-header p {
        font-size: 13px;
    }

    .contact-form {
        gap: 14px;
    }

    .contact-form-field {
        gap: 8px;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        font-size: 14px;
        padding: 9px 12px;
    }

    .contact-form-field input {
        height: 40px;
    }

    .contact-form-field textarea {
        height: 120px;
    }

    .contact-submit-btn {
        height: 40px;
        font-size: 14px;
    }

    .contact-visual-card {
        border-radius: 12px;
        aspect-ratio: 11 / 13;
    }

    .contact-visual-card img {
        transform: scale(1.01) translateX(2px) translateY(2px);
    }

    .asset-management-section {
        padding: 44px 0;
    }

    .asset-management-content {
        padding: 20px 12px;
        border-radius: 14px;
    }

    .asset-management-text {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .asset-management-title {
        font-size: 22px;
    }

    .asset-management-subtitle {
        font-size: 14px;
    }

    .asset-management-actions {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .asset-download-buttons {
        align-items: center;
    }

    .asset-download-buttons .download-card {
        width: min(100%, 220px);
    }

    .asset-management-placeholder {
        width: 108px;
        height: 108px;
        margin: 0 auto;
    }

    .asset-management-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 16px;
    }

    .stat-item {
        width: min(100%, 220px);
        min-width: 0;
        padding: 10px 12px;
        align-items: center;
        text-align: center;
    }

    .stat-value {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
        text-align: center;
    }

    .asset-management-image {
        justify-content: center;
    }

    .image-bg,
    .iphone-image {
        margin-inline: auto;
    }

    .footer {
        margin-inline: 8px;
        padding: 28px 0 22px;
        border-radius: 14px 14px 0 0;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-nav {
        gap: 10px 14px;
    }

    .footer-nav-link {
        font-size: 13px;
    }
}

/* Keep stat value/label text size consistent in asset-management cards */
.asset-management-stats .stat-value,
.asset-management-stats .stat-label,
.asset-management-stats .stat-value-number,
.asset-management-stats .stat-value-symbol {
    font-size: 16px;
    line-height: 1.25;
}

.asset-management-stats .stat-value-symbol {
    padding-bottom: 0;
}

/* Medium screen final guards (contact) */
@media (max-width: 1240px) {

    .contact-hero-inner,
    .asset-management-container {
        width: min(100% - 48px, var(--container));
    }

    .contact-content-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        gap: 24px;
    }

    .contact-visual-card {
        height: auto;
        aspect-ratio: 590 / 640;
    }

    .asset-management-content {
        grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
        gap: 40px;
        padding: 64px 36px;
    }
}

@media (max-width: 853px) {
    .contact-nav-inner {
        min-height: 68px;
    }

    .contact-hero-inner,
    .asset-management-container {
        width: min(100% - 32px, var(--container));
    }

    .contact-hero {
        padding: 56px 0 72px;
    }

    .contact-page-title {
        font-size: clamp(38px, 7vw, 48px);
        margin-bottom: 24px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-card,
    .contact-visual-card {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .contact-visual-card {
        aspect-ratio: 590 / 620;
    }

    .asset-management-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 20px;
    }

    .asset-management-text {
        width: 100%;
    }

    .asset-management-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .asset-management-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
    }
}