/* ========================================
   RESTOM POS - Landing Page
   Apple-inspired modern design
   ======================================== */

:root {
    --lp-bg: #fafafa;
    --lp-bg-alt: #f5f5f7;
    --lp-surface: rgba(255,255,255,0.72);
    --lp-surface-solid: #ffffff;
    --lp-accent: #0071e3;
    --lp-accent-hover: #0077ED;
    --lp-accent-soft: rgba(0,113,227,0.08);
    --lp-accent-glow: rgba(0,113,227,0.15);
    --lp-violet: #8b5cf6;
    --lp-violet-soft: rgba(139,92,246,0.1);
    --lp-text: #1d1d1f;
    --lp-text-secondary: #6e6e73;
    --lp-text-muted: #aeaeb2;
    --lp-border: rgba(0,0,0,0.06);
    --lp-border-hover: rgba(0,0,0,0.12);
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    --lp-radius: 20px;
    --lp-radius-sm: 14px;
    --lp-radius-xs: 10px;
    --lp-max-width: 1120px;
    --lp-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
.landing-page *, .landing-page *::before, .landing-page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page {
    font-family: var(--lp-font);
    background: var(--lp-bg);
    color: var(--lp-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

.landing-page a { text-decoration: none; color: inherit; transition: var(--lp-transition); }
.landing-page img { max-width: 100%; height: auto; }

.lp-container {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll-triggered animation base */
.lp-anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
}
.lp-anim.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR - Frosted glass
   ======================================== */
.lp-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--lp-transition);
    background: rgba(250,250,250,0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
}
.lp-navbar.scrolled {
    background: rgba(255,255,255,0.92);
    border-bottom-color: var(--lp-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.lp-navbar-inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    flex-wrap: nowrap;
    gap: 16px;
}

/* Logo */
.lp-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.15rem; font-weight: 700; letter-spacing: -0.5px;
}
.lp-logo-text-animated {
    font-family: 'Outfit', var(--lp-font);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-violet), #ec4899, var(--lp-accent));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: lp-logo-shimmer 4s ease-in-out infinite;
}

/* Nav links */
.lp-nav-links { display: flex; align-items: center; gap: 28px; flex-wrap: nowrap; }
.lp-nav-link {
    font-size: 0.84rem; font-weight: 500; color: var(--lp-text-secondary);
    transition: var(--lp-transition); position: relative;
}
.lp-nav-link:hover { color: var(--lp-text); }
.lp-nav-actions-mobile { display: none; }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: nowrap; }

/* Buttons */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 9px 18px; border-radius: 980px;
    font-size: 0.84rem; font-weight: 600; font-family: var(--lp-font);
    cursor: pointer; border: none; transition: var(--lp-transition); white-space: nowrap;
    position: relative; overflow: hidden;
}
.lp-btn svg, .lp-btn i { width: 16px; height: 16px; flex-shrink: 0; }

.lp-btn-primary {
    background: var(--lp-accent); color: #fff !important;
    box-shadow: 0 1px 3px rgba(0,113,227,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.lp-btn-primary:hover {
    background: var(--lp-accent-hover);
    box-shadow: 0 4px 16px rgba(0,113,227,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.lp-btn-glass {
    background: rgba(255,255,255,0.65); color: var(--lp-text);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--lp-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.lp-btn-glass:hover {
    background: rgba(255,255,255,0.9);
    border-color: var(--lp-border-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.lp-btn-ghost { background: transparent; color: var(--lp-text-secondary); padding: 9px 14px; }
.lp-btn-ghost:hover { color: var(--lp-accent); background: var(--lp-accent-soft); }

.lp-btn-lg { padding: 13px 28px; font-size: 0.95rem; }
.lp-btn-full { width: 100%; }

/* ========================================
   HERO - Animated gradient orbs
   ======================================== */
.lp-hero {
    padding: 140px 0 80px;
    position: relative; overflow: hidden; text-align: center;
}
.lp-hero-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

/* Animated gradient orbs */
.lp-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
    will-change: transform;
}
.lp-orb-1 {
    width: 600px; height: 600px; top: -200px; left: 50%; margin-left: -300px;
    background: radial-gradient(circle, rgba(0,113,227,0.28) 0%, transparent 70%);
    animation: lp-float-1 12s ease-in-out infinite;
}
.lp-orb-2 {
    width: 400px; height: 400px; top: -50px; right: -100px;
    background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 70%);
    animation: lp-float-2 15s ease-in-out infinite;
}
.lp-orb-3 {
    width: 350px; height: 350px; bottom: -100px; left: -80px;
    background: radial-gradient(circle, rgba(236,72,153,0.18) 0%, transparent 70%);
    animation: lp-float-3 18s ease-in-out infinite;
}

/* Subtle dot grid */
.lp-grid-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
}

@keyframes lp-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, 30px) scale(1.05); }
    66% { transform: translate(-30px, -20px) scale(0.97); }
}
@keyframes lp-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 40px) scale(1.08); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}
@keyframes lp-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.06); }
    66% { transform: translate(-40px, 20px) scale(0.96); }
}

.lp-hero-content { position: relative; z-index: 1; }

/* Hero badge */
.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px; border-radius: 980px;
    background: var(--lp-surface); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--lp-border);
    font-size: 0.8rem; font-weight: 600; color: var(--lp-accent);
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lp-badge-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lp-accent);
    box-shadow: 0 0 0 0 rgba(0,113,227,0.5);
    animation: lp-pulse-dot 2s ease-in-out infinite;
}
@keyframes lp-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,113,227,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(0,113,227,0); }
}
@keyframes lp-logo-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero title */
.lp-hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    font-weight: 800; letter-spacing: -0.04em; line-height: 1.08;
    margin-bottom: 20px; color: var(--lp-text);
}
.lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-violet));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtitle */
.lp-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--lp-text-secondary); max-width: 560px;
    margin: 0 auto 36px; line-height: 1.7;
}

/* Hero actions */
.lp-hero-actions {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-bottom: 48px;
}

/* Trust row */
.lp-hero-trust {
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.lp-trust-avatars {
    display: flex;
}
.lp-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: #fff;
    border: 2px solid var(--lp-bg);
    margin-left: -8px;
}
.lp-avatar:first-child { margin-left: 0; }
.lp-trust-text {
    font-size: 0.82rem; color: var(--lp-text-muted); font-weight: 500;
}

/* ========================================
   MARQUEE
   ======================================== */
.lp-marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    position: relative; overflow: hidden;
}
.lp-marquee-section::before, .lp-marquee-section::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
    pointer-events: none;
}
.lp-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--lp-bg), transparent);
}
.lp-marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--lp-bg), transparent);
}
.lp-marquee { overflow: hidden; }
.lp-marquee-track {
    display: flex; align-items: center; gap: 0;
    width: max-content;
    animation: lp-marquee 35s linear infinite;
}
.lp-marquee-track span {
    font-size: 1rem; font-weight: 600; color: var(--lp-text-muted);
    white-space: nowrap; padding: 0 20px;
    transition: var(--lp-transition);
}
.lp-marquee-track span:hover { color: var(--lp-text); }
.lp-dot {
    width: 4px !important; height: 4px; border-radius: 50%;
    background: var(--lp-text-muted); display: inline-block;
    flex-shrink: 0; padding: 0 !important; opacity: 0.4;
}
@keyframes lp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SECTIONS
   ======================================== */
.lp-section { padding: 100px 0; }
.lp-section-alt { background: var(--lp-bg-alt); }

.lp-section-header { text-align: center; margin-bottom: 56px; }

.lp-overline {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--lp-accent);
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.035em;
    line-height: 1.12; margin-bottom: 14px;
}
.lp-section-sub {
    font-size: 1.05rem; color: var(--lp-text-secondary);
    max-width: 520px; margin: 0 auto; line-height: 1.65;
}

/* ========================================
   BENTO GRID
   ======================================== */
.lp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-bento-card {
    position: relative; overflow: hidden;
    background: var(--lp-surface); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 0;
    transition: var(--lp-transition);
}
.lp-bento-card:hover {
    border-color: var(--lp-border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.lp-bento-glow {
    position: absolute; top: -40%; left: -20%; width: 60%; height: 80%;
    border-radius: 50%; filter: blur(60px);
    background: radial-gradient(circle, var(--lp-accent-glow), transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
    pointer-events: none;
}
.lp-bento-card:hover .lp-bento-glow { opacity: 1; }

.lp-bento-inner { position: relative; z-index: 1; padding: 32px; }

.lp-bento-wide { grid-column: span 2; }

/* Bento icons */
.lp-bento-icon {
    width: 44px; height: 44px; border-radius: var(--lp-radius-xs);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    background: var(--lp-accent-soft); color: var(--lp-accent);
}
.lp-bento-icon svg { width: 22px; height: 22px; }
.lp-bento-icon.blue  { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.lp-bento-icon.violet { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.lp-bento-icon.amber  { background: rgba(245,158,11,0.1); color: #f59e0b; }
.lp-bento-icon.teal   { background: rgba(20,184,166,0.1); color: #14b8a6; }
.lp-bento-icon.rose   { background: rgba(244,63,94,0.1);  color: #f43f5e; }

.lp-bento-card h3 {
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 6px; letter-spacing: -0.02em;
}
.lp-bento-card p {
    font-size: 0.88rem; color: var(--lp-text-secondary); line-height: 1.6;
}

/* ========================================
   FEATURE ROWS (Alternating layout)
   ======================================== */
.lp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lp-feature-row-reverse {
    direction: rtl;
}
.lp-feature-row-reverse > * {
    direction: ltr;
}

.lp-feature-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.035em;
    line-height: 1.12; margin-bottom: 16px;
}
.lp-feature-desc {
    font-size: 1rem; color: var(--lp-text-secondary);
    line-height: 1.7; margin-bottom: 28px;
}

.lp-check-list {
    display: flex; flex-direction: column; gap: 14px;
}
.lp-check-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--lp-text-secondary);
}
.lp-check-item i, .lp-check-item svg {
    width: 18px; height: 18px; color: var(--lp-accent); flex-shrink: 0;
}

.lp-feature-visual {
    display: flex; align-items: center; justify-content: center;
}
.lp-visual-card {
    width: 100%; aspect-ratio: 4/3;
    background: var(--lp-surface-solid);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    transition: var(--lp-transition);
}
.lp-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.lp-visual-orb {
    position: absolute; width: 200px; height: 200px;
    border-radius: 50%; filter: blur(60px); opacity: 0.7;
    background: radial-gradient(circle, rgba(0,113,227,0.3), transparent 70%);
    animation: lp-float-2 12s ease-in-out infinite;
}

.lp-visual-icon {
    width: 56px; height: 56px;
    color: var(--lp-accent); position: relative; z-index: 1;
}

/* ========================================
   PRICING
   ======================================== */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}
.lp-pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.lp-pricing-card {
    background: var(--lp-surface-solid);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 36px;
    position: relative;
    transition: var(--lp-transition);
}
.lp-pricing-card:hover {
    border-color: var(--lp-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.lp-pricing-featured {
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 1px var(--lp-accent), 0 8px 32px rgba(0,113,227,0.1);
}
.lp-pricing-featured:hover {
    box-shadow: 0 0 0 1px var(--lp-accent), 0 20px 60px rgba(0,113,227,0.15);
}

.lp-pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    padding: 5px 18px; background: var(--lp-accent); color: #fff;
    font-size: 0.72rem; font-weight: 700; border-radius: 980px;
    text-transform: uppercase; letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(0,113,227,0.3);
}

.lp-pricing-name {
    font-size: 0.9rem; font-weight: 600;
    color: var(--lp-text-muted); margin-bottom: 8px;
}

.lp-pricing-amount {
    font-size: 2.8rem; font-weight: 800;
    letter-spacing: -0.04em; margin-bottom: 4px;
    color: var(--lp-text);
}
.lp-pricing-amount span {
    font-size: 1rem; font-weight: 500; color: var(--lp-text-muted);
}

.lp-pricing-note {
    font-size: 0.82rem; color: var(--lp-text-muted);
    margin-bottom: 24px;
}

.lp-pricing-divider {
    height: 1px; background: var(--lp-border);
    margin-bottom: 24px;
}

.lp-pricing-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 12px; margin-bottom: 28px; padding: 0;
}
.lp-pricing-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--lp-text-secondary);
}
.lp-pricing-list li i, .lp-pricing-list li svg {
    width: 18px; height: 18px; color: var(--lp-accent); flex-shrink: 0;
}

.lp-pricing-footer {
    text-align: center; font-size: 0.84rem;
    color: var(--lp-text-muted); margin-top: 28px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.lp-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--lp-bg-alt);
}

.lp-cta-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.lp-orb-cta-1 {
    width: 500px; height: 500px;
    bottom: -200px; left: 50%; margin-left: -250px;
    background: radial-gradient(circle, rgba(0,113,227,0.2) 0%, transparent 70%);
    animation: lp-float-1 14s ease-in-out infinite;
}
.lp-orb-cta-2 {
    width: 300px; height: 300px;
    top: -100px; right: -50px;
    background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
    animation: lp-float-3 16s ease-in-out infinite;
}

.lp-cta-content { position: relative; z-index: 1; }

.lp-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.lp-cta p {
    font-size: 1.1rem; color: var(--lp-text-secondary);
    max-width: 480px; margin: 0 auto 40px;
}
.lp-cta-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 64px 0 32px;
}

.lp-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.lp-footer-brand p {
    font-size: 0.85rem; color: var(--lp-text-muted);
    line-height: 1.7; margin-top: 16px; max-width: 280px;
}

.lp-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-footer-col h4 {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--lp-text); margin-bottom: 18px;
}
.lp-footer-col a {
    display: block; font-size: 0.85rem;
    color: var(--lp-text-muted); margin-bottom: 12px;
}
.lp-footer-col a:hover { color: var(--lp-text); }

.lp-footer-bottom {
    border-top: 1px solid var(--lp-border);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.8rem; color: var(--lp-text-muted);
}

.lp-footer-bottom-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-footer-bottom-meta > p {
    margin: 0;
}
.lp-footer-credit {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    line-height: 1.5;
}
.lp-footer-credit a {
    color: var(--lp-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--lp-transition);
}
.lp-footer-credit a:hover {
    color: var(--lp-text);
}
.lp-footer-credit-sep {
    margin: 0 0.35em;
    opacity: 0.6;
}

.lp-footer-social {
    display: flex; gap: 16px;
}
.lp-footer-social a {
    color: var(--lp-text-muted); transition: var(--lp-transition);
}
.lp-footer-social a:hover { color: var(--lp-text); }
.lp-footer-social svg, .lp-footer-social i {
    width: 20px; height: 20px;
}

/* ========================================
   WHATSAPP WIDGET
   ======================================== */
.lp-whatsapp {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--lp-transition); cursor: pointer;
}
.lp-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.lp-whatsapp svg { width: 28px; height: 28px; }

/* ========================================
   MOBILE NAVBAR TOGGLE
   ======================================== */
.lp-nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.lp-nav-toggle span {
    width: 20px; height: 2px;
    background: var(--lp-text); border-radius: 2px;
    transition: var(--lp-transition);
    transform-origin: center;
}
.lp-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}
.lp-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.lp-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .lp-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-bento-wide {
        grid-column: span 2;
    }
    .lp-feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lp-feature-row-reverse {
        direction: ltr;
    }
    .lp-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lp-footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lp-section { padding: 72px 0; }

    .lp-nav-links {
        display: none;
        position: fixed;
        top: 56px; left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 12px;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    .lp-nav-links.open { display: flex; }
    .lp-nav-links.open .lp-nav-actions-mobile {
        display: flex; flex-direction: column; gap: 10px;
        width: 100%; margin-top: 8px;
        padding-top: 16px; border-top: 1px solid var(--lp-border);
    }
    .lp-nav-actions-mobile .lp-btn {
        text-align: center; justify-content: center;
    }
    .lp-nav-toggle { display: flex; }
    .lp-nav-actions { display: none; }

    .lp-hero { padding: 120px 0 60px; }
    .lp-hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .lp-hero-actions { flex-direction: column; gap: 12px; }
    .lp-hero-actions .lp-btn { width: 100%; max-width: 280px; }
    .lp-hero-trust { flex-direction: column; gap: 8px; }

    .lp-bento {
        grid-template-columns: 1fr;
    }
    .lp-bento-wide {
        grid-column: span 1;
    }

    .lp-feature-row { gap: 32px; }
    .lp-visual-card { aspect-ratio: 16/10; }

    .lp-pricing-grid,
    .lp-pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .lp-cta-actions { flex-direction: column; gap: 12px; }

    .lp-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .lp-footer-bottom {
        flex-direction: column; gap: 16px; text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .lp-section { padding: 56px 0; }
    .lp-container { padding: 0 16px; }

    .lp-hero { padding: 100px 0 48px; }
    .lp-hero-title { font-size: 2rem; }
    .lp-hero-subtitle { font-size: 0.95rem; }

    .lp-section-title { font-size: 1.65rem; }
    .lp-feature-text h2 { font-size: 1.5rem; }

    .lp-pricing-amount { font-size: 2.2rem; }
    .lp-pricing-card { padding: 28px; }

    .lp-cta { padding: 80px 0; }
    .lp-cta h2 { font-size: 1.65rem; }

    .lp-footer-links {
        grid-template-columns: 1fr;
    }

    .lp-whatsapp {
        bottom: 16px; right: 16px;
        width: 48px; height: 48px;
    }
    .lp-whatsapp svg { width: 24px; height: 24px; }
}

/* ============================================================
   TOUCH OPTIMIZATION - Landing Page
   ============================================================ */

/* Prevent iOS zoom on input focus */
.landing-page input, .landing-page select, .landing-page textarea {
    font-size: 16px !important;
}

/* Disable double-tap zoom on interactive elements */
.landing-page a, .landing-page button,
.lp-btn, .lp-nav-link, .lp-nav-toggle,
.lp-bento-card, .lp-pricing-card,
.lp-visual-card, .lp-whatsapp,
.lp-footer-social a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Body overscroll prevention */
.landing-page {
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

/* Touch target minimum sizes */
.lp-whatsapp {
    min-height: 44px;
    min-width: 44px;
}
.lp-nav-toggle {
    min-height: 44px;
    min-width: 44px;
}
.lp-footer-social a {
    min-height: 44px;
    min-width: 44px;
}
.lp-btn {
    min-height: 44px;
}

/* Active states for touch feedback */
@media (pointer: coarse) {
    /* Disable hover transforms */
    .lp-bento-card:hover,
    .lp-pricing-card:hover,
    .lp-visual-card:hover,
    .lp-btn-primary:hover,
    .lp-btn-glass:hover {
        transform: none !important;
    }

    /* Active press feedback */
    .lp-btn:active {
        transform: scale(0.97) !important;
        opacity: 0.85;
    }
    .lp-bento-card:active {
        transform: scale(0.98) !important;
    }
    .lp-pricing-card:active {
        transform: scale(0.99) !important;
    }
    .lp-whatsapp:active {
        transform: scale(0.9) !important;
    }
    .lp-nav-toggle:active {
        opacity: 0.7;
    }

    /* Prevent text selection on interactive elements */
    .lp-btn, .lp-nav-link, .lp-nav-toggle,
    .lp-bento-card, .lp-pricing-card,
    .lp-whatsapp {
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    /* Marquee - disable animation on touch for performance */
    .lp-marquee-track {
        animation-duration: 50s !important;
    }
}

/* Safe area insets for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
    .landing-page {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    .lp-whatsapp {
        bottom: calc(24px + env(safe-area-inset-bottom));
    }
    .lp-footer {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }
}

/* ========================================
   Legal pages (KVKK, sözleşme)
   ======================================== */
.lp-legal-wrap {
    min-height: 100vh;
    padding: 88px 0 64px;
    background: var(--lp-bg);
}
.lp-legal-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}
.lp-legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-accent);
    margin-bottom: 28px;
}
.lp-legal-back:hover {
    color: var(--lp-accent-hover);
}
.lp-legal-doc h1 {
    font-family: 'Outfit', var(--lp-font);
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--lp-text);
}
.lp-legal-meta {
    font-size: 0.8125rem;
    color: var(--lp-text-secondary);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
}
.lp-legal-doc h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--lp-text);
}
.lp-legal-doc h2:first-of-type {
    margin-top: 0;
}
.lp-legal-doc p,
.lp-legal-doc li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--lp-text-secondary);
    margin-bottom: 12px;
}
.lp-legal-doc ul {
    margin: 0 0 16px 1.1rem;
    padding: 0;
}
.lp-legal-doc li {
    margin-bottom: 8px;
}
.lp-legal-doc strong {
    color: var(--lp-text);
    font-weight: 600;
}
.lp-legal-doc a {
    color: var(--lp-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lp-legal-doc a:hover {
    color: var(--lp-accent-hover);
}
