/* ──────────────────────────────────────────────────────────────
   Ooping Landing Page  |  frontend.css
   ────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
.olp-wrap {
    --olp-primary:       #1C5C1C;
    --olp-primary-dark:  #134013;
    --olp-accent:        #4CAF50;
    --olp-accent-light:  #81C784;
    --olp-green-bg:      #F0FDF4;
    --olp-green-border:  #BBF7D0;
    --olp-dark:          #0D1B0D;
    --olp-text:          #1A2E1A;
    --olp-muted:         #5A7A5A;
    --olp-border:        #E5F0E5;
    --olp-white:         #FFFFFF;
    --olp-radius:        16px;
    --olp-radius-sm:     8px;
    --olp-shadow-sm:     0 2px 8px rgba(28,92,28,.08);
    --olp-shadow-md:     0 8px 32px rgba(28,92,28,.12);
    --olp-shadow-lg:     0 20px 60px rgba(28,92,28,.15);
    --olp-transition:    0.3s cubic-bezier(.4,0,.2,1);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--olp-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Reset ── */
.olp-wrap *, .olp-wrap *::before, .olp-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.olp-wrap a { text-decoration: none; color: inherit; }
.olp-wrap ul { list-style: none; }
.olp-wrap img { max-width: 100%; display: block; }

/* ── Container ── */
.olp-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ── Sections ── */
.olp-section         { padding: 96px 0; }
.olp-section-alt     { background: var(--olp-green-bg); }
.olp-section-dark    { background: var(--olp-dark); color: var(--olp-white); }

/* ── Section Headings ── */
.olp-section-head         { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.olp-section-head h2      { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.olp-section-head p       { font-size: 18px; color: var(--olp-muted); line-height: 1.7; }
.olp-section-tag          { display: inline-block; background: var(--olp-green-bg); color: var(--olp-primary); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; border: 1px solid var(--olp-green-border); margin-bottom: 16px; }
.olp-section-head-light h2 { color: var(--olp-white); }
.olp-section-head-light p  { color: rgba(255,255,255,.7); }
.olp-tag-light            { background: rgba(255,255,255,.12); color: var(--olp-accent-light); border-color: rgba(255,255,255,.2); }

/* ── Buttons ── */
.olp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: inherit; font-weight: 700; border-radius: 12px; border: none; cursor: pointer;
    transition: all var(--olp-transition); white-space: nowrap; text-decoration: none;
}
.olp-btn-primary {
    background: linear-gradient(135deg, var(--olp-primary) 0%, #2E7D32 100%);
    color: var(--olp-white);
    box-shadow: 0 4px 20px rgba(28,92,28,.35);
}
.olp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(28,92,28,.45); }
.olp-btn-ghost  { background: transparent; color: var(--olp-primary); border: 2px solid var(--olp-primary); }
.olp-btn-ghost:hover { background: var(--olp-green-bg); }
.olp-btn-white  { background: var(--olp-white); color: var(--olp-primary); box-shadow: 0 4px 24px rgba(0,0,0,.15); }
.olp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,0,0,.2); }
.olp-btn-sm  { font-size: 14px; padding: 10px 20px; border-radius: 10px; }
.olp-btn-lg  { font-size: 17px; padding: 16px 32px; }
.olp-btn-xl  { font-size: 18px; padding: 20px 48px; border-radius: 16px; }

/* ── Animations ── */
[data-olp-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-olp-animate].olp-visible { opacity: 1; transform: translateY(0); }
[data-olp-delay="200"] { transition-delay: .2s; }

/* ════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.olp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--olp-border);
    transition: box-shadow var(--olp-transition);
}
.olp-nav.olp-scrolled { box-shadow: var(--olp-shadow-md); }
.olp-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 32px;
}
.olp-nav-logo img  { height: 40px; }
.olp-nav-text-logo { font-size: 24px; font-weight: 800; color: var(--olp-primary); }
.olp-nav-links     { display: flex; align-items: center; gap: 4px; }
.olp-nav-links a   { font-size: 15px; font-weight: 600; padding: 8px 14px; border-radius: 8px; color: var(--olp-text); transition: all var(--olp-transition); }
.olp-nav-links a:hover { background: var(--olp-green-bg); color: var(--olp-primary); }
.olp-hamburger {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 4px;
}
.olp-hamburger span { width: 24px; height: 2px; background: var(--olp-text); border-radius: 2px; transition: all var(--olp-transition); display: block; }

/* ════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.olp-hero {
    position: relative; padding: 160px 0 96px; background: linear-gradient(160deg, #fff 0%, #F0FDF4 60%, #E8F5E9 100%);
    overflow: hidden; min-height: 100vh; display: flex; align-items: center;
}
.olp-hero-bg-shape {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none;
}
.olp-shape-1 { width: 600px; height: 600px; background: radial-gradient(circle, #C8E6C9 0%, transparent 70%); top: -200px; right: -100px; }
.olp-shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, #A5D6A7 0%, transparent 70%); bottom: -100px; left: -100px; }

.olp-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1;
}
.olp-hero-content { display: flex; flex-direction: column; gap: 24px; }

.olp-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: var(--olp-primary); font-size: 14px; font-weight: 700;
    padding: 8px 18px; border-radius: 100px; border: 1px solid var(--olp-green-border);
    width: fit-content;
}
.olp-hero-h1 {
    font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1;
    color: var(--olp-dark); letter-spacing: -.02em;
}
.olp-hero-h1 em { font-style: normal; color: var(--olp-primary); }
.olp-hero-sub { font-size: 18px; color: var(--olp-muted); line-height: 1.7; }
.olp-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.olp-hero-trust { display: flex; align-items: center; gap: 12px; }
.olp-trust-stars { color: #F59E0B; font-size: 20px; letter-spacing: 2px; }
.olp-hero-trust span { font-size: 14px; color: var(--olp-muted); }
.olp-hero-trust strong { color: var(--olp-text); }

/* Hero Visual */
.olp-hero-visual { position: relative; }
.olp-hero-img-wrap { position: relative; }
.olp-hero-img { border-radius: 20px; box-shadow: var(--olp-shadow-lg); }

/* Floating cards */
.olp-hero-float {
    position: absolute; background: var(--olp-white); border-radius: 12px;
    padding: 12px 16px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--olp-shadow-md); font-size: 13px; line-height: 1.3;
    animation: olp-float 3s ease-in-out infinite;
}
.olp-hero-float strong { display: block; font-weight: 700; color: var(--olp-dark); }
.olp-hero-float small  { color: var(--olp-muted); }
.olp-float-icon { font-size: 20px; }
.olp-float-1 { bottom: 40px; left: -24px; animation-delay: 0s; }
.olp-float-2 { top: 40px;    right: -24px; animation-delay: 1s; }
.olp-float-3 { bottom: 120px; right: -16px; animation-delay: 2s; }

@keyframes olp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Hero placeholder */
.olp-hero-placeholder { position: relative; }
.olp-placeholder-screen {
    background: var(--olp-white); border-radius: 20px; padding: 24px;
    box-shadow: var(--olp-shadow-lg); min-height: 380px;
    border: 2px dashed var(--olp-green-border);
}
.olp-ph-bar { height: 40px; background: var(--olp-green-bg); border-radius: 8px; margin-bottom: 20px; }
.olp-ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.olp-ph-card { height: 80px; background: var(--olp-border); border-radius: 12px; }
.olp-ph-green { background: linear-gradient(135deg, #C8E6C9, #A5D6A7); }
.olp-ph-green-light { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.olp-ph-list { display: flex; flex-direction: column; gap: 10px; }
.olp-ph-row { height: 12px; background: var(--olp-border); border-radius: 6px; }
.olp-ph-short { width: 60%; }
.olp-ph-hint { text-align: center; color: var(--olp-muted); font-size: 13px; margin-top: 16px; }

/* ════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════ */
.olp-stats-strip {
    background: linear-gradient(135deg, var(--olp-primary), #2E7D32);
    padding: 40px 0;
}
.olp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.olp-stat { text-align: center; padding: 16px; }
.olp-stat-number { font-size: 42px; font-weight: 800; color: var(--olp-white); line-height: 1; margin-bottom: 8px; }
.olp-stat-label  { font-size: 15px; color: rgba(255,255,255,.8); font-weight: 500; }

/* ════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.olp-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.olp-feature-card {
    background: var(--olp-white); border: 1px solid var(--olp-border);
    border-radius: var(--olp-radius); padding: 32px; transition: all var(--olp-transition);
}
.olp-feature-card:hover {
    transform: translateY(-4px); box-shadow: var(--olp-shadow-md);
    border-color: var(--olp-green-border);
}
.olp-feature-icon { font-size: 36px; margin-bottom: 16px; }
.olp-feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--olp-dark); }
.olp-feature-card p  { font-size: 15px; color: var(--olp-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════
   APPS ECOSYSTEM
═══════════════════════════════════════════════════ */
.olp-apps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.olp-app-card {
    background: var(--olp-white); border-radius: var(--olp-radius); padding: 36px 28px;
    border: 1px solid var(--olp-border); text-align: center; transition: all var(--olp-transition);
    position: relative; overflow: hidden;
}
.olp-app-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--olp-primary), var(--olp-accent));
}
.olp-app-card:hover { transform: translateY(-6px); box-shadow: var(--olp-shadow-lg); }
.olp-app-icon { font-size: 48px; margin-bottom: 12px; }
.olp-app-badge {
    display: inline-block; background: var(--olp-green-bg); color: var(--olp-primary);
    font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
    border: 1px solid var(--olp-green-border); margin-bottom: 16px;
}
.olp-app-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--olp-dark); }
.olp-app-card p  { font-size: 15px; color: var(--olp-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.olp-steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative;
}
.olp-steps-grid::before {
    content: ''; position: absolute; top: 48px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
    height: 2px; background: linear-gradient(90deg, var(--olp-green-border), var(--olp-accent-light), var(--olp-green-border));
}
.olp-step { text-align: center; padding: 24px; }
.olp-step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; background: linear-gradient(135deg, var(--olp-primary), #2E7D32);
    color: var(--olp-white); font-size: 20px; font-weight: 800; border-radius: 50%;
    margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(28,92,28,.3); position: relative; z-index: 1;
}
.olp-step-icon { font-size: 40px; margin-bottom: 16px; }
.olp-step h3   { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--olp-dark); }
.olp-step p    { font-size: 15px; color: var(--olp-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════
   PAYMENT MARQUEE
═══════════════════════════════════════════════════ */
.olp-payment-marquee-wrap { overflow: hidden; }
.olp-payment-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.olp-payment-track {
    display: flex; gap: 16px; width: max-content;
    animation: olp-marquee 25s linear infinite;
}
.olp-payment-track:hover { animation-play-state: paused; }
.olp-payment-chip {
    display: inline-flex; align-items: center; padding: 10px 24px;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.15); border-radius: 100px;
    font-size: 15px; font-weight: 600; white-space: nowrap;
    transition: all var(--olp-transition);
}
.olp-payment-chip:hover { background: rgba(255,255,255,.15); }

@keyframes olp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.olp-pricing-box {
    text-align: center; background: var(--olp-white); border: 2px solid var(--olp-green-border);
    border-radius: 24px; padding: 64px; max-width: 600px; margin: 0 auto;
    box-shadow: var(--olp-shadow-md);
}
.olp-pricing-icon    { font-size: 56px; margin-bottom: 20px; }
.olp-pricing-tagline { font-size: 18px; color: var(--olp-muted); margin-bottom: 32px; }
.olp-pricing-note    { font-size: 14px; color: var(--olp-muted); margin-top: 20px; }

/* ════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.olp-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.olp-testimonial-card {
    background: var(--olp-white); border: 1px solid var(--olp-border); border-radius: var(--olp-radius);
    padding: 32px; transition: all var(--olp-transition);
}
.olp-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--olp-shadow-md); }
.olp-t-stars  { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.olp-t-review { font-size: 16px; line-height: 1.7; color: var(--olp-text); margin-bottom: 24px; font-style: italic; }
.olp-t-author { display: flex; align-items: center; gap: 14px; }
.olp-t-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.olp-t-avatar-initial {
    background: linear-gradient(135deg, var(--olp-primary), var(--olp-accent));
    color: var(--olp-white); display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px;
}
.olp-t-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--olp-dark); }
.olp-t-author small  { font-size: 13px; color: var(--olp-muted); }

/* ════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.olp-faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.olp-faq-inner .olp-section-head { text-align: left; margin: 0; max-width: 100%; }
.olp-faq-list { display: flex; flex-direction: column; gap: 0; }
.olp-faq-item { border-bottom: 1px solid var(--olp-border); }
.olp-faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: none; padding: 22px 0; font-family: inherit;
    font-size: 17px; font-weight: 600; color: var(--olp-dark); cursor: pointer; text-align: left;
    transition: color var(--olp-transition);
}
.olp-faq-q:hover { color: var(--olp-primary); }
.olp-faq-q[aria-expanded="true"] { color: var(--olp-primary); }
.olp-faq-icon { font-size: 22px; flex-shrink: 0; transition: transform var(--olp-transition); line-height: 1; }
.olp-faq-q[aria-expanded="true"] .olp-faq-icon { transform: rotate(45deg); }
.olp-faq-a { overflow: hidden; }
.olp-faq-a p { padding: 0 0 20px; font-size: 16px; color: var(--olp-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.olp-cta-banner {
    background: linear-gradient(135deg, var(--olp-primary) 0%, #1B5E20 50%, var(--olp-primary-dark) 100%);
    padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
.olp-cta-bg-shape {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: rgba(255,255,255,.05);
}
.olp-cta-shape-1 { width: 500px; height: 500px; top: -200px; left: -100px; }
.olp-cta-shape-2 { width: 400px; height: 400px; bottom: -200px; right: -100px; }
.olp-cta-inner   { position: relative; z-index: 1; }
.olp-cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--olp-white); margin-bottom: 20px; }
.olp-cta-banner p  { font-size: 18px; color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }

/* ════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.olp-footer { background: #0a140a; color: rgba(255,255,255,.75); padding: 72px 0 0; }
.olp-footer-grid {
    display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 48px; padding-bottom: 48px;
}
.olp-footer-logo     { height: 40px; margin-bottom: 16px; }
.olp-footer-text-logo{ font-size: 26px; font-weight: 800; color: var(--olp-white); margin-bottom: 16px; }
.olp-footer-brand p  { font-size: 15px; line-height: 1.7; max-width: 320px; }
.olp-footer-social   { display: flex; gap: 16px; margin-top: 24px; }
.olp-footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75); transition: all var(--olp-transition);
}
.olp-footer-social a:hover { background: var(--olp-primary); color: var(--olp-white); }
.olp-footer-social svg { width: 18px; height: 18px; }

.olp-footer-links-col h4,
.olp-footer-contact-col h4 { font-size: 14px; font-weight: 700; color: var(--olp-white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.olp-footer-links-col ul li,
.olp-footer-contact-col ul li { margin-bottom: 10px; }
.olp-footer-links-col a,
.olp-footer-contact-col a { font-size: 15px; color: rgba(255,255,255,.6); transition: color var(--olp-transition); }
.olp-footer-links-col a:hover,
.olp-footer-contact-col a:hover { color: var(--olp-accent-light); }

.olp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
    text-align: center;
}
.olp-footer-bottom p { font-size: 14px; color: rgba(255,255,255,.4); }

/* ════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .olp-features-grid  { grid-template-columns: repeat(2, 1fr); }
    .olp-apps-grid      { grid-template-columns: repeat(2, 1fr); }
    .olp-faq-inner      { grid-template-columns: 1fr; }
    .olp-faq-inner .olp-section-head { margin-bottom: 32px; }
    .olp-footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .olp-section       { padding: 64px 0; }
    .olp-hero          { padding: 120px 0 64px; min-height: auto; }
    .olp-hero-inner    { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .olp-hero-btns     { justify-content: center; }
    .olp-hero-trust    { justify-content: center; }
    .olp-hero-visual   { order: -1; }
    .olp-float-1, .olp-float-2, .olp-float-3 { display: none; }
    .olp-nav-links, .olp-nav-cta { display: none; }
    .olp-nav-links.olp-open {
        display: flex; flex-direction: column; position: fixed;
        top: 72px; left: 0; right: 0; background: var(--olp-white);
        padding: 24px; border-bottom: 1px solid var(--olp-border);
        box-shadow: var(--olp-shadow-md); gap: 4px; z-index: 999;
    }
    .olp-nav-links.olp-open + .olp-nav-cta { display: block; }
    .olp-hamburger      { display: flex; }
    .olp-stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .olp-features-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
    .olp-apps-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
    .olp-steps-grid     { grid-template-columns: 1fr 1fr; gap: 16px; }
    .olp-steps-grid::before { display: none; }
    .olp-testimonials-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
    .olp-footer-grid    { grid-template-columns: 1fr; gap: 32px; }
    .olp-section-head p { font-size: 16px; }
    .olp-pricing-box    { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .olp-stats-grid  { grid-template-columns: 1fr 1fr; }
    .olp-stat-number { font-size: 32px; }
    .olp-hero-btns   { flex-direction: column; }
    .olp-btn-lg      { width: 100%; justify-content: center; }

    /* Tighten card padding on very small screens */
    .olp-feature-card  { padding: 18px 14px; }
    .olp-feature-icon  { font-size: 28px; margin-bottom: 10px; }
    .olp-feature-card h3 { font-size: 14px; }
    .olp-feature-card p  { font-size: 13px; }

    .olp-app-card      { padding: 20px 14px; }
    .olp-app-icon      { font-size: 36px; }
    .olp-app-card h3   { font-size: 16px; }
    .olp-app-card p    { font-size: 13px; }
    .olp-app-badge     { font-size: 11px; }

    .olp-step          { padding: 16px 12px; }
    .olp-step-number   { width: 44px; height: 44px; font-size: 16px; }
    .olp-step-icon     { font-size: 30px; }
    .olp-step h3       { font-size: 15px; }
    .olp-step p        { font-size: 13px; }

    .olp-testimonial-card { padding: 16px 12px; }
    .olp-t-review      { font-size: 13px; }
    .olp-t-author strong { font-size: 13px; }
}

/* ════════════════════════════════════════════════
   PHONE MOCKUP (shared between hero carousel + screenshots)
═══════════════════════════════════════════════════ */
.olp-phone-mockup { display: flex; justify-content: center; }
.olp-phone-body {
    width: 230px; height: 470px;
    background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 40%, #2c2c2e 100%);
    border-radius: 44px; padding: 14px 12px;
    position: relative; overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 0 0 2px rgba(0,0,0,.5),
        0 30px 80px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.12);
}
.olp-phone-shine {
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, transparent 100%);
    border-radius: 44px 44px 0 0; pointer-events: none; z-index: 3;
}
.olp-phone-di {
    width: 100px; height: 30px; background: #0a0a0a;
    border-radius: 0 0 20px 20px; margin: 0 auto 6px;
    position: relative; z-index: 4;
    box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.olp-phone-screen {
    width: 100%; flex: 1;
    height: calc(100% - 56px);
    background: #000; border-radius: 30px; overflow: hidden;
    position: relative;
}
.olp-phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.olp-phone-screen-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a2e1a, #2e4a2e); }
.olp-phone-btn-volu,
.olp-phone-btn-vold {
    position: absolute; left: -3px; width: 3px; height: 36px;
    background: #3a3a3c; border-radius: 2px 0 0 2px;
}
.olp-phone-btn-volu { top: 100px; }
.olp-phone-btn-vold { top: 148px; }
.olp-phone-btn-pwr  {
    position: absolute; right: -3px; top: 120px;
    width: 3px; height: 52px; background: #3a3a3c; border-radius: 0 2px 2px 0;
}

/* ════════════════════════════════════════════════
   HERO PHONE CAROUSEL
═══════════════════════════════════════════════════ */
.olp-hc-stage {
    position: relative; overflow: hidden;
    padding: 24px 0 16px; touch-action: pan-y;
    user-select: none;
}
.olp-hc-track {
    display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.olp-hc-card {
    flex: 0 0 auto;
    display: flex; flex-direction: column; align-items: center;
    padding: 0 16px;
    transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .45s ease;
}
.olp-hc-label {
    margin-top: 20px; font-size: 15px; font-weight: 600;
    color: var(--olp-muted); text-align: center;
}

/* Dots */
.olp-hc-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 28px;
}
.olp-hc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--olp-green-border); border: none; cursor: pointer; padding: 0;
    transition: all .3s ease;
}
.olp-hc-dot.active {
    width: 24px; border-radius: 4px;
    background: var(--olp-primary);
}

/* ════════════════════════════════════════════════
   DELIVERABLES / PACKAGE
═══════════════════════════════════════════════════ */
.olp-del-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.olp-del-item {
    background: var(--olp-white); border: 1.5px solid var(--olp-green-border);
    border-radius: var(--olp-radius); padding: 20px 16px;
    display: flex; align-items: center; gap: 14px;
    transition: all var(--olp-transition);
    position: relative;
}
.olp-del-item:hover {
    border-color: var(--olp-accent); transform: translateY(-2px);
    box-shadow: var(--olp-shadow-sm);
}
.olp-del-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
    background: var(--olp-green-bg); display: flex; align-items: center; justify-content: center;
}
.olp-del-icon { font-size: 22px; line-height: 1; }
.olp-del-text { flex: 1; font-size: 15px; font-weight: 600; color: var(--olp-dark); line-height: 1.4; }
.olp-del-check {
    width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
    background: linear-gradient(135deg, var(--olp-primary), var(--olp-accent));
    color: var(--olp-white); font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════════
   POWERFUL FEATURES — TABBED
═══════════════════════════════════════════════════ */
.olp-ftabs-wrap {
    background: var(--olp-white); border: 1px solid var(--olp-border);
    border-radius: 20px; overflow: hidden;
    box-shadow: var(--olp-shadow-sm);
}
.olp-ftabs-nav {
    display: flex; flex-wrap: wrap; gap: 8px;
    background: var(--olp-green-bg); padding: 16px;
    border-bottom: 1px solid var(--olp-border);
}
.olp-ftab-btn {
    font-family: inherit; font-size: 13px; font-weight: 700;
    padding: 8px 16px; border: 2px solid var(--olp-border);
    background: var(--olp-white); color: var(--olp-muted);
    cursor: pointer; border-radius: 100px;
    transition: all var(--olp-transition); white-space: nowrap;
}
.olp-ftab-btn:hover { border-color: var(--ftc, var(--olp-primary)); color: var(--ftc, var(--olp-primary)); }
.olp-ftab-btn.active {
    background: var(--ftc, var(--olp-primary));
    border-color: var(--ftc, var(--olp-primary));
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.olp-ftabs-body { padding: 28px 32px 32px; }
.olp-ftab-panel { display: none; }
.olp-ftab-panel.active { display: block; }
.olp-ftab-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.olp-ftab-item {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--olp-green-bg); border-radius: 10px;
    padding: 12px 14px; font-size: 14px; font-weight: 500; color: var(--olp-text);
    transition: background var(--olp-transition);
}
.olp-ftab-item:hover { background: #e8f5e8; }
.olp-ftab-check {
    font-size: 15px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ════════════════════════════════════════════════
   SCREENSHOTS SLIDER — PHONE SHELL
═══════════════════════════════════════════════════ */
.olp-pss-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 60px; flex-wrap: wrap;
}

/* Phone body (reuses phone-body sizing) */
.olp-pss-phone-body {
    width: 230px; height: 470px;
    background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 40%, #2c2c2e 100%);
    border-radius: 44px; padding: 14px 12px;
    position: relative; overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 0 0 2px rgba(0,0,0,.5),
        0 30px 80px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.12);
    flex-shrink: 0;
}
.olp-pss-shine {
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, transparent 100%);
    border-radius: 44px 44px 0 0; pointer-events: none; z-index: 3;
}
.olp-pss-di {
    width: 100px; height: 30px; background: #0a0a0a;
    border-radius: 0 0 20px 20px; margin: 0 auto 6px;
    position: relative; z-index: 4;
    box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.olp-pss-screen {
    width: 100%; height: calc(100% - 56px);
    background: #000; border-radius: 30px; overflow: hidden;
    position: relative;
}
.olp-pss-track {
    display: flex; height: 100%;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.olp-pss-slide {
    flex: 0 0 100%; height: 100%;
}
.olp-pss-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.olp-pss-slide-empty { width: 100%; height: 100%; background: linear-gradient(135deg, #1a2e1a, #2e4a2e); }
.olp-pss-volu, .olp-pss-vold {
    position: absolute; left: -3px; width: 3px; height: 36px;
    background: #3a3a3c; border-radius: 2px 0 0 2px;
}
.olp-pss-volu { top: 100px; }
.olp-pss-vold { top: 148px; }
.olp-pss-pwr  {
    position: absolute; right: -3px; top: 120px;
    width: 3px; height: 52px; background: #3a3a3c; border-radius: 0 2px 2px 0;
}

/* Controls panel */
.olp-pss-panel {
    display: flex; flex-direction: column; gap: 24px;
    max-width: 340px; flex: 1;
}
.olp-pss-label {
    font-size: 20px; font-weight: 700; color: var(--olp-white);
    min-height: 56px; line-height: 1.4;
}
.olp-pss-thumbs {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.olp-pss-thumb {
    width: 60px; height: 60px; border-radius: 12px; overflow: hidden;
    border: 2px solid rgba(255,255,255,.15); cursor: pointer; padding: 0;
    background: #333; transition: all var(--olp-transition);
    flex-shrink: 0;
}
.olp-pss-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.olp-pss-thumb.active {
    border-color: var(--olp-accent); transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(76,175,80,.4);
}
.olp-pss-nav {
    display: flex; align-items: center; gap: 16px;
}
.olp-pss-prev, .olp-pss-next {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08); color: var(--olp-white);
    font-size: 18px; cursor: pointer; transition: all var(--olp-transition);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.olp-pss-prev:hover, .olp-pss-next:hover {
    background: var(--olp-primary); border-color: var(--olp-primary);
}
.olp-pss-dots {
    display: flex; gap: 6px; flex: 1; justify-content: center; flex-wrap: wrap;
}
.olp-pss-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.25); border: none; cursor: pointer; padding: 0;
    transition: all .3s ease;
}
.olp-pss-dot.active {
    background: var(--olp-accent); width: 20px; border-radius: 4px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .olp-del-grid    { grid-template-columns: repeat(2, 1fr); }
    .olp-ftab-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Hero carousel — show single card full width */
    .olp-hc-card     { padding: 0 8px; }

    /* Deliverables — 2 column on mobile */
    .olp-del-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .olp-del-item    { padding: 14px 12px; gap: 10px; }
    .olp-del-icon-wrap { width: 36px; height: 36px; border-radius: 10px; }
    .olp-del-icon    { font-size: 18px; }
    .olp-del-text    { font-size: 13px; }
    .olp-del-check   { width: 22px; height: 22px; font-size: 11px; }

    /* Feature tabs */
    .olp-ftab-btn    { font-size: 12px; padding: 7px 13px; }
    .olp-ftabs-body  { padding: 20px 16px; }
    .olp-ftab-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .olp-ftab-item   { font-size: 13px; padding: 10px 12px; }

    /* Screenshots slider — stack vertically */
    .olp-pss-wrap    { flex-direction: column; gap: 32px; }
    .olp-pss-panel   { max-width: 100%; width: 100%; align-items: center; }
    .olp-pss-label   { text-align: center; font-size: 17px; min-height: auto; }
    .olp-pss-thumbs  { justify-content: center; }
}

@media (max-width: 480px) {
    /* Deliverables — still 2 col on small mobile */
    .olp-del-grid    { grid-template-columns: 1fr 1fr; }
    .olp-del-text    { font-size: 12px; }

    /* Feature tabs — keep 2 col on small mobile */
    .olp-ftab-grid   { grid-template-columns: 1fr 1fr; gap: 6px; }
    .olp-ftab-item   { font-size: 12px; padding: 9px 10px; }

    /* Phone mockup size — slightly smaller */
    .olp-phone-body, .olp-pss-phone-body {
        width: 200px; height: 410px;
    }
    .olp-phone-di, .olp-pss-di { width: 88px; height: 26px; }
}
