
* {
	margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	background: #f3f4f6;
    color: #111827;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 40px 20px;
	min-width:900px!important;
}

.landing-wrap {
	max-width: 1200px;
    width: 100%;
	min-width:900px!important;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}


.ax-header {
	display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.ax-logo-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.ax-logo-text-img {
	width: 160px;
  	height: auto;
  	margin-top: 8px;
  	object-fit: contain;
  	display: block;
}

.ax-header-title {
	font-size: 30px;
    font-weight: 700;
    color: #0f3553;
    letter-spacing: -0.03em;
}

.ax-left h1 {
	font-size: 44px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 18px;
}

.ax-left p.ax-subtitle {
	font-size: 18px;
    color: #4b5563;
    max-width: 560px;
    line-height: 1.5;
}

.ax-qr-card {
	position: relative;
	margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 22px;
    background: #ffffff;
    padding: 24px 26px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

/* Link versione desktop nel box QR */
.qr-desktop-link {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 500;
    color: #0f3553;
    text-decoration: none;

    padding: 6px 10px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    transition: 0.2s ease;
}

/* Icona Material */
.qr-desktop-link .material-symbols-rounded {
    font-size: 18px;
    padding-top: 1px;
}

/* Hover */
.qr-desktop-link:hover {
    background: rgba(15, 53, 83, 0.1);
    transform: translateY(-1px);
}

.ax-qr-thumb {
	border:3px #000 solid;
    background:#000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ax-qr-thumb img {
	width: 150px;
    height: auto;
    background: #ffffff;
    object-fit: contain;
}

.ax-qr-text h2 {
	font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.ax-qr-text p {
	font-size: 15px;
    color: #4b5563;
    max-width: 360px;
    line-height: 1.4;
}

.ax-footer, .site-footer {
	margin-top: 52px!important;
    font-size: 14px!important;
    color: #9ca3af!important;
}

.footer-info {
	margin-top:10px!important;
	
}

.ax-right {
	display: flex;
    justify-content: center;
}

.ax-phone {
	position: relative;
    width: 320px;
    height: 640px;
    background: #020617;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
    	0 24px 60px rgba(15,23,42,0.4),
        0 0 0 8px rgba(15,23,42,0.3);
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.ax-phone-screen {
	flex: 1;
    background: #f9fafb;
    border-radius: 28px;
    padding: 1px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ax-phone-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 22px; /* combacia con la curvatura interna */
    position:relative;
    z-index: 1;
}

.ax-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 18px;
    background: #020617;
    border-radius: 999px;
    z-index: 5;
	display:none; /* disattivato */
}


.ax-icon-btn {
	width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4b5563;
}

.ax-phone-hero p {
	font-size: 13px;
    color: #6b7280;
    max-width: 230px;
    line-height: 1.4;
}

#desk-message {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:none;
}

.desk-box {
    background:none;
    padding: 32px 26px;
    border-radius: 14px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    color: #0f172a;
}

.desk-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.desk-box p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 22px;
}

.desk-btn {
    padding: 12px 20px;
    background: #0f3553;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}

.desk-btn:hover {
    background: #174b75;
}
