.service-hero { padding: 6rem 10% 3rem; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2rem; }
.service-hero-content .tagline { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(0,0,0,0.06); padding: 6px 10px; border-radius: 999px; }
.hero-lead { display: grid; gap: 8px; margin-top: 12px; }
.hero-lead p { margin: 0; color: var(--text-light); }
.hero-buttons-spaced { margin-top: 16px; }
.service-hero-visual { display: flex; justify-content: center; }

/* Tablet Styles */
.tablet {
    width: min(640px, 90vw);
    height: 420px;
    background: #111;
    border-radius: 36px;
    border: 4px solid #333;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    position: relative;
    margin: 0 auto;
}

.tablet-bezel {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 24px;
    position: relative;
    padding: 12px;
    border: 1px solid #222;
}

.tablet-camera {
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #f4f6f8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

/* Dashboard Sidebar */
.dash-sidebar {
    width: 64px;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #999;
    cursor: pointer;
    transition: 0.2s;
}

.sidebar-icon:hover { background: rgba(0,0,0,0.04); color: #333; }
.sidebar-icon.active { background: #111; color: #ccff00; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.sidebar-icon.bottom { margin-top: auto; }

/* Dashboard Main */
.dash-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
}

.brand-dot {
    width: 10px;
    height: 10px;
    background: #ccff00;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(204,255,0,0.2);
}

.dash-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 12px 6px 6px;
    border-radius: 99px;
    border: 1px solid rgba(0,0,0,0.06);
    font-weight: 700;
    font-size: 0.9rem;
}

.profile-img {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
}

/* Stats Row */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.stat-icon.i-1 { background: rgba(204,255,0,0.15); color: #88aa00; }
.stat-icon.i-2 { background: rgba(0,122,255,0.1); color: #007aff; }
.stat-icon.i-3 { background: rgba(255,45,85,0.1); color: #ff2d55; }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label { font-size: 0.75rem; color: #888; font-weight: 700; }
.stat-value { font-size: 1.2rem; font-weight: 900; color: #111; line-height: 1.2; }
.stat-trend { font-size: 0.7rem; font-weight: 800; margin-top: 2px; display: flex; align-items: center; gap: 3px; }
.stat-trend.up { color: #00c853; }

/* Content Row */
.dash-content-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    flex: 1;
    min-height: 0;
}

.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h4 { margin: 0; font-size: 0.95rem; font-weight: 800; }
.more-btn { color: #ccc; cursor: pointer; }

/* Chart Mockup */
.chart-mockup {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    padding-top: 10px;
    gap: 8px;
}

.bar {
    flex: 1;
    background: #f0f0f0;
    border-radius: 6px;
    min-height: 10%;
}

.bar.b1 { height: 40%; background: #eee; }
.bar.b2 { height: 65%; background: #eee; }
.bar.b3 { height: 50%; background: #eee; }
.bar.b4 { height: 85%; background: #ccff00; }
.bar.b5 { height: 60%; background: #eee; }
.bar.b6 { height: 75%; background: #eee; }
.bar.b7 { height: 55%; background: #eee; }

/* Post List */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 12px;
    background: #f8f9fa;
}

.post-thumb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
}

.post-thumb.t1 { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.post-thumb.t2 { background: #000; }

.post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-title { font-weight: 800; font-size: 0.85rem; }
.p-date { font-size: 0.7rem; color: #999; font-weight: 700; }
.p-stat { font-size: 0.8rem; font-weight: 800; color: #555; }

.service-details { padding: 2rem 10% 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.feature { background: #fff; border: none; border-radius: 24px; padding: 32px 24px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 14px 40px rgba(0,0,0,0.06); position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; align-items: center; text-align: center; }
.feature::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(#111 1.2px, transparent 1.2px); background-size: 16px 16px; opacity: 0.08; z-index: 0; }
.feature:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,0.12); }
.feature .f-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 20px; background: #111; color: #ffffff; position: relative; z-index: 1; font-size: 1.8rem; margin-bottom: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.feature h3, .feature p { position: relative; z-index: 1; }
.feature h3 { margin-top: 4px; letter-spacing: -0.4px; font-size: 1.25rem; font-weight: 800; }
.feature p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.5; }
.cta-row { margin-top: 1.5rem; display: flex; gap: 12px; }

.app-benefits-section { padding: 2rem 10% 5rem; }
.app-benefits-grid { display: grid; grid-template-columns: 30% 70%; gap: 1.2rem; align-items: stretch; }
.benefits-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; box-shadow: 0 18px 55px rgba(0,0,0,0.06); padding: 18px; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.benefits-card::before { content: ''; position: absolute; inset: 14px; background-image: radial-gradient(#000 1.5px, transparent 1.5px); background-size: 12px 12px; border-radius: 16px; opacity: 0.05; }
.benefits-card::after { content: ''; position: absolute; top: -120px; right: -120px; width: 240px; height: 240px; background: var(--accent-color); opacity: 0.16; filter: blur(30px); border-radius: 50%; }
.benefits-title { position: relative; z-index: 1; display: grid; gap: 8px; margin-bottom: 12px; }
.benefits-pill { justify-self: start; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 10px; background: rgba(0,0,0,0.04); border: none; font-weight: 900; }
.benefits-title h2 { margin: 0; letter-spacing: -0.4px; }
.qr-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; position: relative; z-index: 1; }
.qr-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 800; color: #111; }
.qr-bullet { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 10px; display: grid; place-items: center; background: rgba(0,0,0,0.04); }
.qr-bullet i { color: #111; }

.package-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; box-shadow: 0 18px 55px rgba(0,0,0,0.06); padding: 18px; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.package-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #00c853 0%, var(--accent-color) 60%, #00c853 100%); box-shadow: 0 10px 22px rgba(0, 200, 83, 0.18); }
.package-card::after { content: ''; position: absolute; top: -120px; left: -120px; width: 220px; height: 220px; background: var(--accent-color); opacity: 0.12; filter: blur(28px); border-radius: 50%; }
.package-top { position: relative; z-index: 1; display: grid; gap: 6px; }
.package-top h3 { margin: 0; letter-spacing: -0.3px; }
.package-sub { color: var(--text-light); font-weight: 700; font-size: 0.9rem; }
.package-badge { justify-self: start; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 10px; background: rgba(204,255,0,0.22); font-weight: 900; }
.package-points { position: relative; z-index: 1; display: grid; gap: 10px; margin-top: 12px; }
.package-points .pp { display: flex; gap: 10px; align-items: flex-start; font-weight: 800; }
.package-points .pp i { margin-top: 3px; color: #00c853; }
.package-cta { margin-top: auto; justify-content: center; }

.overlay-open { overflow: hidden; }
.details-overlay { position: fixed; inset: 0; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.details-overlay.open { opacity: 1; pointer-events: auto; }
.details-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.35); backdrop-filter: blur(10px); }
.details-drawer { position: absolute; left: 0; right: 0; bottom: 0; height: 50vh; width: 100vw; background: rgba(255,255,255,0.96); border-top: 1px solid rgba(0,0,0,0.08); box-shadow: 0 -30px 80px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.28s cubic-bezier(0.25, 0.8, 0.25, 1), border-radius 0.28s cubic-bezier(0.25, 0.8, 0.25, 1); display: grid; grid-template-rows: auto 1fr; border-top-left-radius: 5px; border-top-right-radius: 5px; overflow: hidden; }
.details-overlay.open .details-drawer { transform: translateY(0); }
.details-drawer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #00c853 0%, var(--accent-color) 60%, #00c853 100%); box-shadow: 0 6px 18px rgba(0, 200, 83, 0.25); }
.details-drawer.expanded { height: 100vh; }
.drawer-header { padding: 18px 18px 12px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; border-bottom: none; position: relative; z-index: 1; }
.drawer-title h2 { margin: 8px 0 0; font-size: 1.35rem; letter-spacing: -0.3px; }
.drawer-pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 10px; background: #fff; border: 1px solid rgba(0,0,0,0.06); font-weight: 800; }
.netpos-pill { border: none; background: rgba(0,0,0,0.04); font-weight: 900; }
.drawer-close { width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.08); background: #fff; cursor: pointer; display: grid; place-items: center; }
.drawer-body { padding: 14px 18px 18px; overflow: auto; }
.compare-table-wrap { border: none; border-radius: 18px; background: #fff; box-shadow: 0 18px 50px rgba(0,0,0,0.08); overflow: hidden; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.98rem; letter-spacing: -0.2px; }
.compare-table thead th { text-align: left; padding: 14px 14px; background: #fafafa; border-bottom: none; position: sticky; top: 0; z-index: 2; font-weight: 900; }
.compare-table tbody td { padding: 12px 14px; border-bottom: none; vertical-align: middle; font-weight: 700; }
.compare-table tbody tr:nth-child(even) td:not(.col-neta) { background: rgba(0,0,0,0.018); }
.compare-table tbody tr:hover td:not(.col-neta) { background: rgba(0,0,0,0.03); }
.compare-table .col-neta { background: rgba(204,255,0,0.14); font-weight: 900; }
.compare-table .cell { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 999px; border: none; background: rgba(0,0,0,0.04); font-weight: 900; font-variant-numeric: tabular-nums; }
.compare-table .cell.good { background: rgba(204,255,0,0.22); }
.compare-table .cell.neutral { background: rgba(0,0,0,0.03); }
.drawer-cta { display: flex; gap: 12px; margin-top: 14px; }

@media (max-width: 1024px) {
  .service-hero { grid-template-columns: 1fr; }
  .service-hero-visual { justify-content: flex-start; }
}
@media (max-width: 968px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .app-benefits-grid { grid-template-columns: 1fr; }
  .package-card { order: 2; }
  .benefits-card { order: 1; }
}
@media (max-width: 680px) {
  .tablet { height: auto; aspect-ratio: 1.4/1; }
  .dash-sidebar { width: 50px; }
  .dash-stats { gap: 10px; }
  .stat-card { padding: 10px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .stat-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .dash-content-row { grid-template-columns: 1fr; }
  .content-card.big { display: none; } /* Simplify for mobile */
}