/* ══════════════════════════════════════════════
   SMS Quebec — Landing Page Styles
   ══════════════════════════════════════════════ */

.landing-page {
    overflow-x: hidden;
    color: #1a1a2e;
    line-height: 1.7;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 35, 126, 0.3); }
    50%      { box-shadow: 0 0 0 20px rgba(26, 35, 126, 0); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fade-in-up       { animation: fadeInUp 0.8s ease-out both; }
.slide-in-left    { animation: slideInLeft 0.6s ease-out both; }
.slide-in-right   { animation: slideInRight 0.6s ease-out both; }
.delay-1          { animation-delay: 0.2s; }
.delay-2          { animation-delay: 0.4s; }
.delay-3          { animation-delay: 0.6s; }

/* ── CONTAINER ── */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HERO ── */
.landing-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 24px 60px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.landing-hero-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26, 35, 126, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 137, 123, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(26, 35, 126, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.landing-hero-content {
    flex: 1;
    min-width: 320px;
    max-width: 580px;
}

.landing-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    outline: none;
    margin: 0 0 24px;
    color: #1a1a2e;
}

.landing-gradient-text {
    background: linear-gradient(135deg, #1A237E, #00897B, #1A237E);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

.landing-hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.landing-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ── BUTTONS ── */
.landing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.landing-btn-primary {
    background: linear-gradient(135deg, #1A237E, #283593);
    color: white;
    border-color: #1A237E;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}
.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
    background: linear-gradient(135deg, #283593, #3949AB);
    color: white;
    text-decoration: none;
}

.landing-btn-outline {
    background: transparent;
    color: #1A237E;
    border-color: #1A237E;
}
.landing-btn-outline:hover {
    background: #1A237E;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.landing-btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.landing-btn-icon {
    display: inline-block;
    vertical-align: -3px;
    transition: transform 0.3s;
}
.landing-btn:hover .landing-btn-icon {
    transform: translateX(4px);
}

/* ── HERO STATS ── */
.landing-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.landing-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A237E;
    display: block;
}
.landing-stat-label {
    font-size: 0.85rem;
    color: #777;
}
.landing-stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

/* ── PHONE MOCKUP ── */
.landing-hero-visual {
    flex: 0 0 auto;
    animation: float 6s ease-in-out infinite;
}

.landing-phone-mockup {
    width: 280px;
    height: 560px;
    background: #0a0a0a;
    border-radius: 48px;
    padding: 10px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 0 1.5px #2a2a2a;
    position: relative;
    overflow: hidden;
}

/* Side button accents */
.landing-phone-mockup::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 140px;
    width: 3px;
    height: 40px;
    background: #333;
    border-radius: 2px;
}

/* Dynamic Island */
.landing-phone-notch {
    width: 90px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 20px;
    margin: 0 auto;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.landing-phone-notch::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    position: absolute;
    right: 12px;
    top: 8px;
    box-shadow: inset 0 0 2px rgba(50,50,100,0.5);
}

.landing-phone-screen {
    background: #f7f8fa;
    border-radius: 38px;
    height: 100%;
    padding: 56px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    position: relative;
}

/* Status bar */
.landing-phone-screen::before {
    content: '9:41';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}
.landing-phone-screen::after {
    content: '';
    position: absolute;
    top: 19px;
    right: 24px;
    width: 20px;
    height: 9px;
    border: 1.5px solid #1a1a2e;
    border-radius: 2px;
    opacity: 0.6;
}

.landing-phone-header {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1A237E;
    padding: 4px 0 10px;
    border-bottom: 1px solid #e8eaef;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.landing-chat-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.8rem;
    line-height: 1.45;
    position: relative;
    display: flex;
    flex-direction: column;
}

.landing-chat-in {
    background: white;
    color: #1a1a2e;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-chat-out {
    background: linear-gradient(135deg, #1A237E, #283593);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.25);
}

.landing-chat-time {
    font-size: 0.6rem;
    opacity: 0.55;
    align-self: flex-end;
    margin-top: 3px;
}

/* ── SECTIONS ── */
.landing-section {
    padding: 100px 0;
}

.landing-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.landing-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ── MISSION ── */
.landing-mission {
    background: #f8f9ff;
}

.landing-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.landing-mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.landing-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.landing-mission-icon {
    margin-bottom: 16px;
    color: #1A237E;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #e8eaf6;
    border-radius: 16px;
}

.landing-mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.landing-mission-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ── INDUSTRIES ── */
.landing-industries {
    background: white;
}

.landing-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.landing-industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}
.landing-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.landing-industry-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-industry-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.landing-industry-body {
    padding: 24px 28px 28px;
}
.landing-industry-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.landing-industry-body p {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 16px;
}

.landing-industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-industry-list li {
    padding: 5px 0 5px 24px;
    position: relative;
    font-size: 0.88rem;
    color: #555;
}
.landing-industry-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #00897B;
    font-weight: 700;
}

/* ── SMS PREVIEW BUBBLES (inside industry cards) ── */
.landing-sms-preview {
    margin-top: 16px;
    padding: 14px;
    background: #f0f2f5;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-sms-bubble {
    max-width: 88%;
    padding: 9px 14px;
    border-radius: 16px 16px 16px 4px;
    font-size: 0.82rem;
    line-height: 1.45;
    background: white;
    color: #333;
    align-self: flex-start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    word-break: break-word;
}

.landing-sms-bubble.landing-sms-reply {
    background: #1A237E;
    color: white;
    align-self: flex-end;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 1px 3px rgba(26, 35, 126, 0.2);
}

/* ── FEATURES ── */
.landing-features {
    background: #f8f9ff;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.landing-feature {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eef;
}
.landing-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.landing-feature-icon {
    margin-bottom: 16px;
    color: #1A237E;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #e8eaf6;
    border-radius: 12px;
}

.landing-feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.landing-feature p {
    color: #666;
    font-size: 0.92rem;
}

/* ── CTA ── */
.landing-cta {
    background: white;
    padding: 80px 0;
}

.landing-cta-box {
    background: linear-gradient(135deg, #1A237E, #283593);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.3);
}
.landing-cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.landing-cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}
.landing-cta-box .landing-btn-primary {
    background: white;
    color: #1A237E;
    border-color: white;
}
.landing-cta-box .landing-btn-primary:hover {
    background: #f0f0ff;
    color: #1A237E;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}
.landing-cta-box .landing-btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.landing-cta-box .landing-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

/* ── FOOTER ── */
.landing-footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 60px 0 30px;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.landing-footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.landing-footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
}

.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-footer ul li {
    padding: 4px 0;
    font-size: 0.9rem;
}
.landing-footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.landing-footer a:hover {
    color: white;
}

.landing-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ══════════════════════════════════════════════
   AUTH PAGES — Login / Register
   ══════════════════════════════════════════════ */

.auth-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ── Left brand panel ── */
.auth-brand-panel {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1442, #1A237E, #283593);
}

.auth-brand-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 137, 123, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 137, 123, 0.1) 0%, transparent 60%);
    animation: authBgPulse 8s ease-in-out infinite alternate;
}

@keyframes authBgPulse {
    0%   { opacity: 0.7; }
    100% { opacity: 1; }
}

.auth-brand-content {
    position: relative;
    z-index: 1;
    padding: 120px 48px 60px;
    color: white;
    max-width: 480px;
}

.auth-brand-logo {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.auth-brand-logo:hover {
    opacity: 1;
    color: white;
    text-decoration: none;
}

.auth-brand-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.auth-brand-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 48px;
}

.auth-brand-stats {
    display: flex;
    gap: 32px;
}

.auth-brand-stat {
    display: flex;
    flex-direction: column;
}

.auth-brand-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #80cbc4;
}

.auth-brand-stat-lbl {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 2px;
}

/* ── Right form panel ── */
.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9ff;
    padding: 40px 24px;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.auth-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f8;
}

/* ── Form header ── */
.auth-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.auth-form-desc {
    font-size: 0.92rem;
    color: #888;
    margin: 0;
}

/* ── Form fields ── */
.auth-field {
    margin-bottom: 20px;
}

.auth-field-row {
    display: flex;
    gap: 12px;
}
.auth-field-row .auth-field {
    flex: 1;
}

.auth-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.auth-label-icon {
    display: inline-flex;
    vertical-align: -3px;
    margin-right: 4px;
    color: #1A237E;
}

.auth-input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8eaf6;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fafbff;
    color: #1a1a2e;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    box-sizing: border-box;
}
.auth-input::placeholder {
    color: #bbb;
}
.auth-input:focus {
    border-color: #1A237E;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08);
}

.auth-field-hint {
    display: block;
    font-size: 0.78rem;
    color: #999;
    margin-top: 6px;
}

/* ── Submit button ── */
.auth-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1A237E, #283593);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.25);
    margin-top: 8px;
}
.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.35);
    background: linear-gradient(135deg, #283593, #3949AB);
}
.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-arrow {
    display: inline-block;
    vertical-align: -3px;
    margin-left: 4px;
    transition: transform 0.3s;
}
.auth-submit-btn:hover .auth-submit-arrow {
    transform: translateX(4px);
}

/* ── Divider ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #ccc;
    font-size: 0.82rem;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8eaf6;
}

/* ── Switch link ── */
.auth-switch-text {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.auth-switch-link {
    color: #1A237E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.auth-switch-link:hover {
    color: #283593;
    text-decoration: underline;
}

/* ── Back link ── */
.auth-back-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.auth-back-link:hover {
    color: #1A237E;
}

/* ── Footer ── */
.auth-footer-text {
    text-align: center;
    font-size: 0.78rem;
    color: #bbb;
    margin-top: 24px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════════════ */
@media (max-width: 960px) {
    .landing-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px 40px;
        min-height: auto;
        gap: 40px;
    }
    .landing-hero-content {
        max-width: 100%;
        order: 1;
    }
    .landing-hero-visual {
        order: 2;
    }
    .landing-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .landing-hero-actions {
        justify-content: center;
    }
    .landing-hero-stats {
        justify-content: center;
    }
    .landing-hero-title {
        font-size: 2.4rem;
    }
    .landing-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .auth-brand-panel {
        display: none;
    }
    .auth-form-panel {
        min-height: 100vh;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
    /* Hero */
    .landing-hero {
        padding: 48px 20px 36px;
        gap: 32px;
    }
    .landing-hero-content {
        min-width: auto;
        width: 100%;
    }
    .landing-hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    .landing-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    .landing-hero-actions {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 28px;
        gap: 10px;
    }
    .landing-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .landing-btn-lg {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Hero stats — horizontal compact */
    .landing-hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        background: rgba(26, 35, 126, 0.04);
        border-radius: 12px;
        padding: 16px 8px;
    }
    .landing-stat {
        flex: 1;
        text-align: center;
    }
    .landing-stat-number {
        font-size: 1.2rem;
    }
    .landing-stat-label {
        font-size: 0.7rem;
    }
    .landing-stat-divider {
        width: 1px;
        height: 32px;
        background: #ccc;
    }

    /* Phone mockup — full width on mobile */
    .landing-hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .landing-phone-mockup {
        width: 85%;
        max-width: 320px;
        height: auto;
        border-radius: 40px;
        padding: 10px;
    }
    .landing-phone-mockup::before {
        top: 115px;
        height: 35px;
    }
    .landing-phone-notch {
        width: 80px;
        height: 22px;
        top: 16px;
    }
    .landing-phone-screen {
        border-radius: 30px;
        padding: 50px 14px 20px;
        gap: 8px;
        height: auto;
        overflow: visible;
    }
    .landing-phone-screen::before {
        top: 14px;
        left: 24px;
        font-size: 0.65rem;
    }
    .landing-phone-screen::after {
        top: 16px;
        right: 20px;
        width: 18px;
        height: 8px;
    }
    .landing-phone-header {
        font-size: 0.78rem;
        padding: 4px 0 10px;
    }
    .landing-chat-bubble {
        font-size: 0.85rem;
        padding: 10px 14px;
        border-radius: 16px;
        max-width: 85%;
        line-height: 1.4;
    }

    /* Sections */
    .landing-section {
        padding: 40px 0;
    }
    .landing-section-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .landing-section-subtitle {
        font-size: 0.9rem;
    }
    .landing-container {
        padding: 0 16px;
    }

    /* Mission cards */
    .landing-mission-cards {
        gap: 16px;
    }
    .landing-mission-card {
        padding: 20px;
    }
    .landing-mission-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    .landing-mission-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Industry cards */
    .landing-industry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .landing-industry-img {
        height: 72px;
    }
    .landing-industry-emoji svg {
        width: 36px;
        height: 36px;
    }
    .landing-industry-body {
        padding: 16px 18px 20px;
    }
    .landing-sms-preview {
        padding: 10px;
    }
    .landing-sms-bubble {
        font-size: 0.78rem;
        padding: 8px 10px;
    }

    /* Features */
    .landing-features-grid {
        gap: 16px;
    }
    .landing-feature {
        padding: 20px;
    }
    .landing-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    .landing-feature-icon svg {
        width: 26px;
        height: 26px;
    }

    /* CTA */
    .landing-cta-box {
        padding: 32px 20px;
        border-radius: 16px;
    }
    .landing-cta-box h2 {
        font-size: 1.4rem;
    }
    .landing-cta-box p {
        font-size: 0.9rem;
    }
    .landing-cta-box .landing-hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    /* Footer */
    .landing-footer {
        padding: 32px 0;
    }
    .landing-footer-brand {
        font-size: 1.3rem;
    }

    /* Auth mobile */
    .auth-form-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .auth-form-title {
        font-size: 1.3rem;
    }
    .auth-field-row {
        flex-direction: column;
        gap: 0;
    }
    .auth-submit-btn {
        padding: 14px;
    }
}
