/* ═══════════════════════════════════════════════
 *  LANDING PAGE STYLES  v3
 * ═══════════════════════════════════════════════ */

/* ── Header ──────────────────────────────────── */
.lp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.lp-nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.lp-nav a {
    font-size: 0.9rem;
    color: var(--gray-700);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.lp-nav a:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.lp-header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* ── Hamburger (모바일 전용) ──────────────────── */
.lp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
}

.lp-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.lp-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.lp-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lp-mobile-menu {
    display: none;
    position: sticky;
    top: 56px;
    z-index: 99;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.lp-mobile-menu.open {
    max-height: 400px;
}

.lp-mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.25rem 1rem;
}

.lp-mobile-menu nav a {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
}

.lp-mobile-menu nav a:last-child {
    border-bottom: none;
}

.lp-mobile-menu nav hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 0.25rem 0;
}

.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.lp-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}

.lp-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.5);
    background: transparent;
    color: var(--gray-800);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.lp-btn-ghost:hover {
    background: rgba(0,0,0,0.05);
    border-color: var(--gray-400);
    color: var(--gray-900);
}

.lp-btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 10px;
}

/* ── Hero Section ────────────────────────────── */
.lp-hero {
    background: linear-gradient(160deg, #e8f0fb 0%, #d4e4f7 40%, #c8d8f0 100%);
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 3rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23f0f6ff' stop-opacity='0.4'/%3E%3Cstop offset='1' stop-color='%23c8d8f0' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.lp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.lp-hero-left {
    flex: 1;
    min-width: 0;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(79, 70, 229, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(79,70,229,0.2);
}

.lp-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.lp-hero-title em {
    color: var(--primary);
    font-style: normal;
}

.lp-hero-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.lp-hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* ── Register Dashed Button ──────────────────── */
.lp-btn-register {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    border: 2px dashed var(--primary);
    background: rgba(255,255,255,0.6);
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    white-space: nowrap;
}

.lp-btn-register:hover {
    background: var(--primary-bg);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.lp-btn-register-plus {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
}

/* ── Stats Row ───────────────────────────────── */
.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    flex-wrap: wrap;
}

.lp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem;
    gap: 2px;
}

.lp-stat-icon {
    font-size: 1rem;
    line-height: 1;
}

.lp-stat-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.lp-stat-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.4;
    white-space: nowrap;
}

.lp-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-300);
    flex-shrink: 0;
}

/* ── Phone Mockup ────────────────────────────── */
.lp-hero-right {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-phone {
    position: relative;
}

.lp-phone-frame {
    width: 280px;
    background: var(--white);
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 8px 24px rgba(79,70,229,0.12);
    overflow: hidden;
    border: 6px solid #1a1a2e;
    position: relative;
}

.lp-phone-notch {
    height: 28px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-phone-notch::after {
    content: '';
    width: 60px;
    height: 10px;
    background: #0d0d1a;
    border-radius: 10px;
}

.lp-phone-screen {
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
}

.lp-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.lp-chat-header-center {
    text-align: center;
}

.lp-chat-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-900);
}

.lp-chat-subtitle {
    font-size: 0.65rem;
    color: var(--gray-500);
}

.lp-menu-icon {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.lp-chat-bot-icon {
    display: flex;
    justify-content: center;
    padding: 12px 0 6px;
}

.lp-chat-bubble-wrap {
    padding: 0 14px 10px;
}

.lp-chat-bubble {
    display: inline-block;
    background: var(--white);
    border-radius: 0 12px 12px 12px;
    padding: 10px 12px;
    font-size: 0.72rem;
    color: var(--gray-800);
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
    margin-left: 8px;
}

.lp-chat-time {
    font-size: 0.6rem;
    color: var(--gray-400);
    text-align: right;
    margin-top: 3px;
}

.lp-quick-menu {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lp-quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.lp-quick-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-quick-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-800);
}

.lp-quick-desc {
    font-size: 0.6rem;
    color: var(--gray-500);
}

.lp-chat-input {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 10px 12px;
    background: var(--white);
    border-radius: 20px;
    padding: 8px 8px 8px 12px;
    border: 1px solid var(--gray-300);
}

.lp-chat-placeholder {
    flex: 1;
    font-size: 0.65rem;
    color: var(--gray-400);
}

.lp-chat-send {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 0.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Features Section ────────────────────────── */
.lp-features {
    background: var(--white);
    padding: 5rem 2rem;
}

.lp-features-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.lp-section-eyebrow {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.lp-section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.lp-section-title em {
    color: var(--primary);
    font-style: normal;
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.lp-feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.lp-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-icon-blue   { background: #EBF4FF; color: #2563EB; }
.lp-icon-green  { background: #ECFDF5; color: #059669; }
.lp-icon-purple { background: #F5F3FF; color: #7C3AED; }
.lp-icon-orange { background: #FFF7ED; color: #EA580C; }
.lp-icon-sky    { background: #E0F2FE; color: #0284C7; }

.lp-feature-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.lp-feature-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Effects Section ─────────────────────────── */
.lp-effects {
    background: var(--gray-50);
    padding: 5rem 2rem;
}

.lp-effects-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.lp-effect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-effect-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.lp-effect-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lp-effect-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.6rem;
}

.lp-effect-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── Case Study Section ──────────────────────── */
.lp-case {
    background: var(--white);
    padding: 5rem 2rem;
}

.lp-case-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.lp-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1.25rem;
}

.lp-case-shot {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-case-shot-img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-case-shot-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lp-case-shot-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ── Pricing Section ──────────────────────────── */
.lp-pricing {
    background: var(--gray-50);
    padding: 5rem 2rem;
}

.lp-pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.lp-pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
}

.lp-pricing-tier {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.lp-pricing-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.lp-pricing-amount span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-left: 0.25rem;
}

.lp-pricing-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.lp-pricing-support {
    max-width: 560px;
    margin: 3rem auto 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem 2rem;
}

.lp-pricing-support h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.lp-pricing-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.lp-pricing-support li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--gray-100);
}

.lp-pricing-support li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lp-pricing-support li span {
    color: var(--gray-600);
}

.lp-pricing-support li strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* ── CTA Dark Banner ─────────────────────────── */
.lp-cta-dark {
    background: #0f172a;
    padding: 3rem 2rem;
}

.lp-cta-dark-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lp-cta-robot {
    flex-shrink: 0;
}

.lp-cta-robot img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 16px rgba(79,70,229,0.4));
}

.lp-cta-text {
    flex: 1;
}

.lp-cta-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.lp-cta-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.lp-cta-action {
    flex-shrink: 0;
}

.lp-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.lp-btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ── Trust Row ───────────────────────────────── */
.lp-trust {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 2rem;
}

.lp-trust-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.lp-trust-icon {
    flex-shrink: 0;
}

.lp-trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    display: block;
}

.lp-trust-sub {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
}

/* ── Footer ──────────────────────────────────── */
.landing-footer {
    padding: 2rem 1.5rem;
    background: var(--gray-100);
    text-align: center;
    font-size: var(--text-xs);
    color: var(--gray-500);
    line-height: 1.8;
}

.landing-footer a {
    color: var(--gray-600);
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

/* ── Quick Access Section ────────────────────── */
.lp-quickaccess {
    background: var(--gray-50);
    padding: 3rem 2rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.lp-quickaccess-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-qa-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.lp-qa-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    color: inherit;
}

.lp-qa-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-qa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-qa-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

.lp-qa-desc {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.lp-qa-arrow {
    font-size: 1.1rem;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color 0.15s, transform 0.15s;
}

.lp-qa-card:hover .lp-qa-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ── Header Util Button ──────────────────────── */
.lp-btn-util {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    color: var(--gray-600);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.lp-btn-util:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1023px) {
    .lp-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lp-effect-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lp-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .lp-header {
        padding: 0 1rem;
        height: 56px;
    }
    .lp-nav {
        display: none;
    }
    .lp-header-actions .lp-btn-outline {
        display: none;
    }
    .lp-header-actions .lp-btn-primary {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .lp-header {
        justify-content: flex-start;
    }
    .lp-header-actions {
        margin-left: auto;
    }
    .lp-hamburger {
        display: flex;
    }
    .lp-mobile-menu {
        display: block;
    }
    .lp-hero {
        padding: 2.5rem 1.25rem 3rem;
        min-height: auto;
    }
    .lp-hero-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .lp-hero-title {
        font-size: 2rem;
    }
    .lp-hero-right {
        width: 100%;
    }
    .lp-phone-frame {
        width: 240px;
    }
    .lp-hero-stats {
        gap: 0.5rem;
        padding: 1rem;
    }
    .lp-stat {
        padding: 0 0.5rem;
    }
    .lp-stat-divider {
        display: none;
    }
    .lp-features {
        padding: 3rem 1.25rem;
    }
    .lp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-effects,
    .lp-case,
    .lp-pricing {
        padding: 3rem 1.25rem;
    }
    .lp-effect-grid {
        grid-template-columns: 1fr;
    }
    .lp-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-pricing-support {
        padding: 1.5rem;
    }
    .lp-pricing-support li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .lp-cta-dark-inner {
        flex-direction: column;
        text-align: center;
    }
    .lp-cta-robot img {
        height: 80px;
    }
    .lp-cta-text p br {
        display: none;
    }
    .lp-trust-inner {
        gap: 1rem;
    }
    .lp-btn-primary,
    .lp-btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .lp-hero-cta {
        flex-direction: column;
    }
    .lp-quickaccess {
        padding: 2rem 1.25rem;
    }
    .lp-quickaccess-inner {
        grid-template-columns: 1fr;
    }
    .lp-btn-util span {
        display: none;
    }
}

@media (max-width: 480px) {
    .lp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .lp-case-grid {
        grid-template-columns: 1fr;
    }
    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }
    .lp-trust-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
}
