/* ==================== BASE STYLES ==================== */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #000000;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 100%;
    max-width: 900px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    box-sizing: border-box;
    border: 1px solid #333;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
    text-align: center;
    color: #1a202c;
    margin: 10px 0 20px;
    font-size: 2.4rem;
    letter-spacing: 2px;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    display: block;
    margin-top: 8px;
    letter-spacing: 1px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-map {
    background: #4285f4;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}

.btn-share {
    background: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-nav {
    background: #1a73e8;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

/* ==================== SNS BUTTONS ==================== */
.sns-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-sns {
    flex: 1;
    min-width: 90px;
    padding: 12px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.btn-sns:active {
    transform: scale(0.95);
}

.sns-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sns-x {
    background: #000;
}

.sns-web {
    background: #28a745;
}

/* ==================== LOGIN BUTTONS ==================== */
.login-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.login-btn {
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
}

.login-google {
    background: #4285f4;
}

.login-apple {
    background: #ffffff;
    color: #000000;
}

.login-line {
    background: #06C755;
}

.login-email {
    background: #e67e22;
}

.login-phone {
    background: #9b59b6;
}

.login-logout {
    background: #555;
    display: none;
}

/* ==================== FORMS ==================== */
#creator-mode {
    display: none;
    padding-bottom: 50px;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #d0d0d0;
}

input[type="text"],
input[type="time"],
input[type="file"],
input[type="url"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    background: #2a2a2a;
    appearance: none;
    color: #e0e0e0;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.time-row {
    display: flex;
    gap: 10px;
}

.time-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.time-sub-label {
    font-size: 0.78rem;
    font-weight: 900;
    color: #666;
    padding-left: 2px;
}

/* ==================== VIEWER MODE ==================== */
#viewer-mode {
    display: none;
    width: 100%;
    max-width: 420px;
    margin: 20px auto;
    padding-bottom: 50px;
}

.info-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 3px solid #f6ad55;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eee;
    display: block;
}

.no-image {
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-content {
    padding: 25px 20px;
}

.premium-label {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 8px 18px;
    border-bottom-left-radius: 16px;
    z-index: 10;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.shop-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0 16px;
    color: #333;
    line-height: 1.2;
}

.info-row {
    margin: 12px 0;
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.info-val {
    font-size: 1.02rem;
    font-weight: 500;
    padding-left: 5px;
    color: #444;
    word-break: break-word;
}

.info-val small {
    font-size: 0.85rem;
    color: #666;
}

/* ==================== WIFI CARD ==================== */
.wifi-card {
    background: #2c3e50;
    color: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
    position: relative;
}

.wifi-ssid {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.wifi-pass {
    font-family: monospace;
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ==================== QR CODE AREAS ==================== */
.share-qr-area {
    margin-top: 28px;
    border-top: 2px dashed #eee;
    padding-top: 22px;
}

.share-title {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

#viewer-qr {
    display: inline-block;
    padding: 10px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sns-qr-area {
    margin-top: 16px;
    border-top: 2px dashed #eee;
    padding-top: 18px;
}

.sns-qr-title {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.sns-qr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.sns-qr-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sns-qr-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.sns-qr-code {
    display: flex;
    justify-content: center;
}

/* ==================== ROUTER SETUP ==================== */
.router-setup {
    margin-top: 30px;
    text-align: left;
    background: #2a2a2a;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #444;
}

.router-setup h3 {
    margin-top: 0;
    font-size: 1rem;
    color: #d0d0d0;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* ==================== FOOTER ==================== */
.footer-link {
    margin-top: 40px;
    font-size: 0.7rem;
    color: #ccc;
    text-align: center;
    padding-bottom: 20px;
}

.footer-link a {
    color: #888;
    text-decoration: none;
}

/* ==================== PRO FEATURES ==================== */
.pro-auth-area {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pro-auth-area input {
    width: 60%;
    padding: 8px;
    border-radius: 4px;
    border: none;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.pro-auth-area button {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.pro-auth-area button:disabled {
    background: #888;
    cursor: not-allowed;
}

.premium-feature {
    display: none;
    border: 2px solid #f6ad55;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fffaf0 0%, #fef5e7 100%);
    position: relative;
    box-shadow: 0 4px 12px rgba(246, 173, 85, 0.15);
}

.premium-badge-ui {
    position: absolute;
    top: -12px;
    right: 12px;
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.3);
}

/* ==================== HINTS & PILLS ==================== */
.hint {
    font-size: 0.75rem;
    color: #888;
    margin-top: 6px;
    line-height: 1.4;
}

.pill {
    display: inline-block;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #d0d0d0;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #4285f4;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
    padding-left: 5px;
}

.link-action:active {
    opacity: 0.8;
}

/* ==================== PDF BUTTON ==================== */
.pdf-pro-btn {
    margin-top: 14px;
    width: 100%;
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 900;
    border-radius: 14px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}

.pdf-pro-btn:active {
    transform: scale(0.98);
}

/* ==================== SSID TOOLS ==================== */
.ssid-tools {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ssid-btn {
    width: 100%;
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.22);
}

.ssid-btn:active {
    transform: scale(0.98);
}

.ssid-suggestions {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.ssid-chip {
    border: 1px solid #d4af37;
    background: #fff;
    color: #333;
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 900;
}

.ssid-chip:active {
    transform: scale(0.98);
}

/* ==================== SEGMENTED CONTROL ==================== */
.segmented {
    position: relative;
    display: flex;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
    user-select: none;
}

.seg-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 6px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    color: #888;
    font-size: 0.9rem;
    outline: none;
    position: relative;
    z-index: 2;
}

.seg-btn:active {
    transform: scale(0.99);
}

.seg-btn.active {
    color: #e0e0e0;
}

.seg-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 8px) / 3);
    background: #3a3a3a;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    transition: transform 0.18s ease;
    z-index: 1;
}

.seg-indicator.seg-2 {
    width: calc((100% - 8px) / 2);
}

/* ==================== BOTTOM SHEET ==================== */
.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
}

.sheet {
    width: 100%;
    max-width: 520px;
    background: #1a1a1a;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
    overflow: hidden;
    border: 1px solid #333;
}

.sheet-head {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

.sheet-handle {
    width: 52px;
    height: 6px;
    background: #555;
    border-radius: 999px;
    margin: 6px auto 0;
}

.sheet-title {
    font-weight: 900;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.sheet-close {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px 10px;
    font-weight: 900;
    color: #999;
}

.sheet-body {
    max-height: 60vh;
    overflow: auto;
    padding: 12px 14px 18px;
}

.sheet-section {
    margin-top: 12px;
}

.sheet-section-title {
    font-size: 0.78rem;
    color: #888;
    font-weight: 900;
    margin: 10px 2px 6px;
    letter-spacing: 0.6px;
}

.sheet-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #333;
    background: #2a2a2a;
    padding: 12px 12px;
    border-radius: 12px;
    cursor: pointer;
}

.sheet-item:active {
    transform: scale(0.99);
}

.sheet-item strong {
    font-size: 0.92rem;
    color: #e0e0e0;
}

.sheet-item small {
    font-size: 0.78rem;
    color: #888;
}

.sheet-badge {
    background: #d4af37;
    color: #fff;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 900;
}

/* ==================== LOGIN WELCOME SCREEN ==================== */
#login-welcome-screen {
    display: none;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 20px;
    box-sizing: border-box;
}

.login-welcome-card {
    background: #000000;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    text-align: center;
    border: 2px solid #d4af37;
}

.login-welcome-card h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-welcome-card .subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 35px;
}

.login-welcome-card .login-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-welcome-card .login-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
}

.login-welcome-logo {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 30px;
    display: block;
}

/* ==================== LP SECTIONS ==================== */
.lp-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.lp-hero-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.4;
}

.lp-hero-subtext {
    font-size: 1rem;
    color: #999;
    margin-bottom: 10px;
}

.lp-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 999px;
    margin-top: 10px;
}

.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.lp-feature-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
}

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

.lp-feature-title {
    font-size: 1rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 8px;
}

.lp-feature-desc {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.lp-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.lp-plan-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
}

.lp-plan-card.pro {
    border-color: #d4af37;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2410 100%);
}

.lp-plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 12px;
}

.lp-plan-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.lp-plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
}

.lp-plan-price span {
    font-size: 0.9rem;
    color: #999;
}

.lp-plan-features {
    text-align: left;
    margin-bottom: 20px;
}

.lp-plan-feature {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.lp-plan-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.lp-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 20px;
}

.lp-section-subtitle {
    font-size: 0.95rem;
    color: #999;
    text-align: center;
    margin-bottom: 30px;
}

/* ==================== STICKY HEADER ==================== */
.sticky-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #fff;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sticky-header-inner {
    max-width: 900px;
    margin: 0 auto;
}

.sticky-header-title {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 8px;
    opacity: 0.9;
}

.sticky-header .login-btns {
    margin: 8px 0;
}

.sticky-header-uid {
    font-size: 0.7rem;
    color: #aaa;
    text-align: center;
    margin: 6px 0;
}

.sticky-header-log {
    font-size: 0.7rem;
    color: #ff8888;
    text-align: center;
    margin-top: 6px;
    min-height: 16px;
}

/* ==================== MODAL BASE ==================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-backdrop.show {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 24px;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    position: relative;
    border: 1px solid #333;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 16px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
    box-sizing: border-box;
    background: #2a2a2a;
    color: #e0e0e0;
}

.modal-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 8px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.modal-btn-secondary {
    background: #333;
    color: #e0e0e0;
}

.modal-toggle {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 12px;
}

.modal-toggle a {
    color: #d4af37;
    cursor: pointer;
    text-decoration: underline;
}

.modal-error {
    color: #e74c3c;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 12px;
    min-height: 20px;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

/* ==================== RECAPTCHA ==================== */
#recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .lp-features {
        grid-template-columns: 1fr;
    }
    
    .lp-plans {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .sns-qr-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .lp-hero-text {
        font-size: 1.4rem;
    }
}
