/* ŞantiyePro — Landing v3 (ultra-modern SaaS) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
    --lp-primary: #2563eb;
    --lp-primary-mid: #1e40af;
    --lp-primary-dark: #0f172a;
    --lp-accent: #fbbf24;
    --lp-accent-glow: rgba(251, 191, 36, .45);
    --lp-cyan: #22d3ee;
    --lp-bg: #f8fafc;
    --lp-surface: #ffffff;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-border: rgba(15, 23, 42, .08);
    --lp-radius: 24px;
    --lp-radius-sm: 16px;
    --lp-shadow: 0 25px 60px -12px rgba(15, 23, 42, .18);
    --lp-shadow-lg: 0 40px 80px -20px rgba(15, 23, 42, .25);
    --lp-glass: rgba(255, 255, 255, .72);
    --lp-glass-border: rgba(255, 255, 255, .5);
    --lp-ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

.lp-body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Floating pill navbar ── */
.lp-nav-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    padding: 16px 20px;
    pointer-events: none;
    transition: padding .4s var(--lp-ease);
}
.lp-nav-wrap.scrolled { padding: 10px 16px; }
.lp-nav {
    pointer-events: auto;
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 12px 10px 20px;
    border-radius: 100px;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    transition: all .45s var(--lp-ease);
}
.lp-nav-wrap.scrolled .lp-nav {
    background: rgba(255, 255, 255, .88);
    border-color: var(--lp-border);
    box-shadow: 0 4px 24px rgba(15, 23, 42, .08), 0 0 0 1px rgba(15, 23, 42, .04);
}
.lp-nav .navbar-brand {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -.03em;
    color: #fff !important;
    transition: color .3s;
}
.lp-nav-wrap.scrolled .lp-nav .navbar-brand { color: var(--lp-text) !important; }
.lp-nav .navbar-toggler { border: none; padding: 4px 8px; }
.lp-nav-wrap.scrolled .lp-nav .navbar-toggler-icon {
    filter: invert(1);
}
.lp-nav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-weight: 600;
    font-size: .875rem;
    padding: 8px 14px !important;
    border-radius: 100px;
    transition: all .25s;
}
.lp-nav-wrap.scrolled .lp-nav .nav-link { color: var(--lp-muted) !important; }
.lp-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .12);
}
.lp-nav-wrap.scrolled .lp-nav .nav-link:hover {
    color: var(--lp-text) !important;
    background: rgba(15, 23, 42, .06);
}
.lp-btn-ghost {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    padding: 8px 18px;
    border-radius: 100px;
    transition: all .25s;
}
.lp-nav-wrap.scrolled .lp-btn-ghost {
    background: transparent;
    border-color: var(--lp-border);
    color: var(--lp-text);
}
.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}
.lp-nav-wrap.scrolled .lp-btn-ghost:hover {
    background: var(--lp-bg);
    color: var(--lp-text);
}
.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent) 0%, #f59e0b 100%);
    border: none;
    color: var(--lp-primary-dark);
    font-weight: 700;
    font-size: .875rem;
    padding: 8px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 16px var(--lp-accent-glow);
    transition: transform .25s, box-shadow .25s;
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--lp-accent-glow);
    color: var(--lp-primary-dark);
}

@media (max-width: 991.98px) {
    .lp-nav { border-radius: 20px; padding: 12px 16px; }
    .lp-nav .navbar-collapse {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .lp-nav-wrap.scrolled .lp-nav .navbar-collapse {
        border-top-color: var(--lp-border);
    }
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    color: #fff;
    overflow: hidden;
    background: var(--lp-primary-dark);
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.08);
    animation: lpHeroKen 25s ease-in-out infinite alternate;
}
@keyframes lpHeroKen {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.15) translateY(-2%); }
}
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,.3) 0%, rgba(15,23,42,.85) 70%, var(--lp-primary-dark) 100%),
        linear-gradient(135deg, rgba(37,99,235,.35) 0%, transparent 50%);
}
.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    pointer-events: none;
    animation: lpOrbFloat 12s ease-in-out infinite;
}
.lp-hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #2563eb 0%, transparent 70%);
    top: -10%; right: -5%;
}
.lp-hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--lp-cyan) 0%, transparent 70%);
    bottom: 10%; left: -10%;
    animation-delay: -4s;
}
.lp-hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--lp-accent) 0%, transparent 70%);
    top: 40%; left: 30%;
    opacity: .25;
    animation-delay: -8s;
}
@keyframes lpOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}
.lp-hero .container { position: relative; z-index: 2; }
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 8px 18px 8px 10px;
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    animation: lpFadeUp .8s var(--lp-ease) both;
}
.lp-hero-badge-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 12px #4ade80;
    animation: lpPulse 2s ease infinite;
}
@keyframes lpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.2); }
}
.lp-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
    animation: lpFadeUp .8s .1s var(--lp-ease) both;
}
.lp-hero h1 .lp-gradient-text {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #fde68a 50%, var(--lp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero .lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    max-width: 480px;
    font-weight: 500;
    animation: lpFadeUp .8s .2s var(--lp-ease) both;
}
.lp-hero-actions {
    animation: lpFadeUp .8s .3s var(--lp-ease) both;
}
.lp-hero-actions .lp-btn-xl {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    transition: all .3s var(--lp-ease);
}
.lp-hero-actions .lp-btn-xl-primary {
    background: linear-gradient(135deg, var(--lp-accent), #f59e0b);
    color: var(--lp-primary-dark);
    box-shadow: 0 8px 32px var(--lp-accent-glow);
}
.lp-hero-actions .lp-btn-xl-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px var(--lp-accent-glow);
    color: var(--lp-primary-dark);
}
.lp-hero-actions .lp-btn-xl-ghost {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    backdrop-filter: blur(8px);
}
.lp-hero-actions .lp-btn-xl-ghost:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    transform: translateY(-2px);
}
.lp-hero-actions .lp-btn-xl-demo {
    background: rgba(34, 211, 238, .15);
    border: 1px solid rgba(34, 211, 238, .45);
    color: #fff;
    backdrop-filter: blur(8px);
}
.lp-hero-actions .lp-btn-xl-demo:hover {
    background: rgba(34, 211, 238, .28);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34, 211, 238, .25);
}
.lp-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
    animation: lpFadeUp .8s .4s var(--lp-ease) both;
}
.lp-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    font-size: .8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}
@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dashboard mockup */
.lp-hero-visual {
    position: relative;
    animation: lpFadeUp 1s .3s var(--lp-ease) both;
}
.lp-dash {
    background: var(--lp-glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg), 0 0 0 1px rgba(255,255,255,.1) inset;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform .6s var(--lp-ease);
}
.lp-hero-visual:hover .lp-dash {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
}
.lp-dash-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(15, 23, 42, .04);
    border-bottom: 1px solid var(--lp-border);
}
.lp-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-dash-dot.r { background: #f87171; }
.lp-dash-dot.y { background: #fbbf24; }
.lp-dash-dot.g { background: #4ade80; }
.lp-dash-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.lp-dash-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-dash-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.6) 0%, transparent 50%);
}
.lp-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lp-border);
}
.lp-dash-stat {
    background: var(--lp-surface);
    padding: 16px;
    text-align: center;
}
.lp-dash-stat .v {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lp-primary);
    letter-spacing: -.02em;
}
.lp-dash-stat .l {
    font-size: .6875rem;
    font-weight: 600;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px;
}
.lp-float-card {
    position: absolute;
    background: var(--lp-surface);
    border-radius: var(--lp-radius-sm);
    padding: 14px 18px;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-border);
    animation: lpFloatCard 4s ease-in-out infinite;
}
.lp-float-card-1 {
    top: -20px; right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 0s;
}
.lp-float-card-2 {
    bottom: 40px; left: -30px;
    animation-delay: -2s;
}
@keyframes lpFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.lp-float-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.lp-float-icon.green { background: #dcfce7; color: #16a34a; }
.lp-float-icon.blue { background: #dbeafe; color: var(--lp-primary); }

/* Marquee */
.lp-marquee-wrap {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 20px 0;
    overflow: hidden;
}
.lp-marquee {
    display: flex;
    width: max-content;
    animation: lpMarquee 30s linear infinite;
}
.lp-marquee:hover { animation-play-state: paused; }
@keyframes lpMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.lp-marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-weight: 700;
    font-size: .9375rem;
    color: var(--lp-muted);
    white-space: nowrap;
}
.lp-marquee-item i {
    color: var(--lp-primary);
    font-size: 1.1rem;
}

/* Gallery — modern masonry */
.lp-gallery { padding: 0; background: var(--lp-primary-dark); }
.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 4px;
}
.lp-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.lp-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--lp-ease), filter .5s;
    filter: brightness(.85);
}
.lp-gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}
.lp-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.8) 0%, transparent 60%);
    opacity: .8;
    transition: opacity .3s;
}
.lp-gallery-item:hover::after { opacity: 1; }
.lp-gallery-caption {
    position: absolute;
    bottom: 20px; left: 20px;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: .9375rem;
    transform: translateY(8px);
    opacity: 0;
    transition: all .4s var(--lp-ease);
}
.lp-gallery-item:hover .lp-gallery-caption {
    transform: translateY(0);
    opacity: 1;
}
.lp-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.lp-gallery-item:nth-child(2) { grid-column: span 1; }
.lp-gallery-item:nth-child(3) { grid-column: span 1; }
.lp-gallery-item:nth-child(4) { grid-column: span 2; }
.lp-gallery-item:nth-child(5) { grid-column: span 2; }

/* Sections */
.lp-section { padding: 100px 0; }
.lp-section-alt { background: var(--lp-bg); }
.lp-section-dark {
    background: var(--lp-primary-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lp-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(37,99,235,.2) 0%, transparent 70%);
    pointer-events: none;
}
.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--lp-primary);
    margin-bottom: 1rem;
}
.lp-section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-cyan));
    border-radius: 2px;
}
.lp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.lp-section-sub {
    color: var(--lp-muted);
    font-size: 1.125rem;
    max-width: 540px;
    line-height: 1.7;
}

/* Bento features */
.lp-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
}
.lp-bento-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    position: relative;
    transition: all .4s var(--lp-ease);
}
.lp-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
    border-color: rgba(37, 99, 235, .2);
}
.lp-bento-card.span-4 { grid-column: span 4; }
.lp-bento-card.span-6 { grid-column: span 6; }
.lp-bento-card.span-8 { grid-column: span 8; }
.lp-bento-card.tall { grid-row: span 2; }
.lp-bento-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lp-bento-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--lp-ease);
}
.lp-bento-card:hover .lp-bento-img img { transform: scale(1.06); }
.lp-bento-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.92) 0%, rgba(15,23,42,.3) 50%, transparent 100%);
}
.lp-bento-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}
.lp-bento-content.light {
    color: var(--lp-text);
    justify-content: flex-start;
}
.lp-bento-content.light .lp-bento-icon {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: var(--lp-primary);
}
.lp-bento-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.lp-bento-content h5 {
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.lp-bento-content p {
    font-size: .875rem;
    opacity: .85;
    margin: 0;
    line-height: 1.6;
}

/* Split section */
.lp-split-img {
    border-radius: var(--lp-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--lp-shadow);
}
.lp-split-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}
.lp-split-badge {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: var(--lp-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--lp-glass-border);
    border-radius: var(--lp-radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.lp-module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.lp-module-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    font-weight: 600;
    font-size: .875rem;
    transition: all .25s var(--lp-ease);
}
.lp-module-pill:hover {
    border-color: var(--lp-primary);
    background: #eff6ff;
    transform: translateX(4px);
}
.lp-module-pill i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--lp-bg);
    color: var(--lp-primary);
    display: flex; align-items: center; justify-content: center;
}

/* Steps */
.lp-step-card {
    background: var(--lp-surface);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    height: 100%;
    transition: all .4s var(--lp-ease);
}
.lp-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow);
}
.lp-step-img { height: 200px; overflow: hidden; }
.lp-step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lp-step-card:hover .lp-step-img img { transform: scale(1.08); }
.lp-step-body { padding: 28px; }
.lp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--lp-primary), #3b82f6);
    color: #fff;
    font-weight: 800;
    font-size: .875rem;
    border-radius: 10px;
    margin-bottom: 14px;
}

/* Stats band */
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.lp-stat-item .num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, #fff, var(--lp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-stat-item .lbl {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

/* Pricing */
.lp-price-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    height: 100%;
    overflow: hidden;
    transition: all .4s var(--lp-ease);
    position: relative;
}
.lp-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow);
}
.lp-price-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--lp-surface), var(--lp-surface)) padding-box,
                linear-gradient(135deg, var(--lp-accent), var(--lp-primary), var(--lp-cyan)) border-box;
    box-shadow: var(--lp-shadow-lg);
}
.lp-price-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-primary), var(--lp-cyan));
}
.lp-price-body { padding: 32px 28px; }
.lp-price-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--lp-text);
    line-height: 1;
}
.lp-price-amount small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-muted);
}
.lp-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-border);
    font-size: .9375rem;
    font-weight: 500;
}
.lp-price-features li:last-child { border: none; }
.lp-price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: all .25s;
}
.lp-price-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary), #3b82f6);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .35);
}
.lp-price-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .45);
    color: #fff;
}
.lp-price-btn-outline {
    background: transparent;
    border: 2px solid var(--lp-border);
    color: var(--lp-text);
}
.lp-price-btn-outline:hover {
    border-color: var(--lp-primary);
    background: #eff6ff;
    color: var(--lp-primary);
}

/* Period toggle */
.lp-period-toggle {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
}
.lp-period-toggle-sm { padding: 4px; }
.lp-period-btn {
    border: none;
    background: transparent;
    color: var(--lp-muted);
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 20px;
    border-radius: 999px;
    transition: all .25s var(--lp-ease);
    cursor: pointer;
}
.lp-period-toggle-sm .lp-period-btn { padding: 8px 14px; font-size: .8125rem; }
.lp-period-btn.active {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-cyan));
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .25);
}
.lp-period-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    margin-left: 4px;
    border-radius: 999px;
    background: rgba(251, 191, 36, .2);
    color: #b45309;
}
.lp-period-btn.active .lp-period-badge {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

/* Signup / success pages */
.lp-signup-section { padding-top: 120px; min-height: 80vh; }
.lp-signup-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px;
    box-shadow: var(--lp-shadow);
}
.lp-signup-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
}
.lp-signup-pkg {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lp-primary);
    margin-bottom: 4px;
}
.lp-signup-price {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--lp-text);
}
.lp-signup-price small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-muted);
}
.lp-form-section-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lp-muted);
    margin-bottom: 12px;
}
.lp-input {
    border-radius: 12px;
    border-color: var(--lp-border);
    padding: 10px 14px;
}
.lp-input:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.lp-signup-note {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .875rem;
    color: var(--lp-muted);
}
.lp-success-icon { font-size: 4rem; display: block; margin-bottom: 12px; }
.lp-success-table td { padding: 10px 0; vertical-align: middle; }
.lp-ref-badge {
    display: inline-block;
    font-family: ui-monospace, monospace;
    font-size: .95rem;
    letter-spacing: .04em;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--lp-primary-dark);
    color: #fff;
}
.lp-payment-card { border-left: 4px solid #f59e0b; }

/* FAQ */
.lp-faq .accordion-item {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border) !important;
    border-radius: var(--lp-radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.lp-faq .accordion-button {
    font-weight: 700;
    font-size: 1rem;
    padding: 22px 28px;
    background: transparent;
    box-shadow: none !important;
}
.lp-faq .accordion-button:not(.collapsed) {
    color: var(--lp-primary);
    background: #eff6ff;
}
.lp-faq .accordion-body {
    padding: 0 28px 24px;
    color: var(--lp-muted);
    line-height: 1.7;
}

/* CTA */
.lp-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.lp-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.lp-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(37,99,235,.75) 100%);
}
.lp-cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(251,191,36,.3) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.lp-cta .container { position: relative; z-index: 1; text-align: center; color: #fff; }
.lp-cta h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.04em;
    max-width: 700px;
    margin: 0 auto 1rem;
}

/* Footer */
.lp-footer {
    background: #020617;
    color: rgba(255, 255, 255, .55);
    padding: 80px 0 32px;
}
.lp-footer h5, .lp-footer h6 { color: #fff; font-weight: 800; letter-spacing: -.02em; }
.lp-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .2s; }
.lp-footer a:hover { color: var(--lp-accent); }

.lp-signup-section .lp-reveal {
    opacity: 1;
    transform: none;
}

/* Floating contact buttons */
.lp-float-stack {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.lp-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}
.lp-float-btn:hover {
    color: #fff;
    transform: scale(1.1) translateY(-2px);
}
.lp-float-btn.phone {
    background: linear-gradient(135deg, var(--lp-primary), #3b82f6);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}
.lp-float-btn.phone:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 235, .5);
}
.lp-float-btn.whatsapp {
    background: #25d366;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
}
.lp-float-btn.whatsapp:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
}

/* WhatsApp (legacy single button — kullanılmıyor) */
.lp-wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 1050;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
    transition: transform .3s var(--lp-ease);
    text-decoration: none;
}
.lp-wa-float:hover { color: #fff; transform: scale(1.12); }

/* Contact modal */
.lp-contact-opt {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    text-decoration: none;
    color: var(--lp-text);
    font-weight: 600;
    transition: all .3s var(--lp-ease);
    margin-bottom: 12px;
}
.lp-contact-opt:hover {
    border-color: var(--lp-primary);
    background: #eff6ff;
    transform: translateX(6px);
    color: var(--lp-primary);
}
.lp-contact-opt i { font-size: 2rem; }
.lp-contact-opt.phone i { color: var(--lp-primary); }
.lp-contact-opt.whatsapp i { color: #25d366; }

/* Scroll reveal */
.lp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--lp-ease), transform .8s var(--lp-ease);
}
.lp-reveal.visible { opacity: 1; transform: translateY(0); }
.lp-reveal-delay-1 { transition-delay: .1s; }
.lp-reveal-delay-2 { transition-delay: .2s; }
.lp-reveal-delay-3 { transition-delay: .3s; }

/* Responsive */
@media (max-width: 991.98px) {
    .lp-hero { padding: 120px 0 80px; text-align: center; min-height: auto; }
    .lp-hero .lead { margin-left: auto; margin-right: auto; }
    .lp-hero-actions, .lp-hero-chips { justify-content: center !important; }
    .lp-hero-visual { margin-top: 3rem; max-width: 520px; margin-left: auto; margin-right: auto; }
    .lp-dash { transform: none !important; }
    .lp-float-card-1 { right: 0; top: -16px; }
    .lp-float-card-2 { left: 0; bottom: 20px; }
    .lp-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .lp-gallery-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 200px; }
    .lp-gallery-item:nth-child(1) { grid-column: span 2 !important; min-height: 280px; }
    .lp-bento-card.span-4, .lp-bento-card.span-6, .lp-bento-card.span-8 { grid-column: span 12; }
    .lp-bento-card.tall { grid-row: span 1; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-section { padding: 72px 0; }
    .lp-cta-bg { background-attachment: scroll; }
}

@media (max-width: 575.98px) {
    .lp-gallery-grid { grid-template-columns: 1fr; }
    .lp-gallery-item:nth-child(1) { grid-column: span 1 !important; }
    .lp-module-grid { grid-template-columns: 1fr; }
    .lp-marquee-item { padding: 0 20px; font-size: .8125rem; }
    .lp-float-stack { bottom: 20px; right: 16px; }
    .lp-float-btn { width: 52px; height: 52px; font-size: 1.3rem; }
}
