:root {
    --primary: #1a56db;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --success: #10b981;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --gradient-primary: linear-gradient(135deg, #1a56db 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand img {
    height: 40px;
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-custom .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

.btn-nav-cta {
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.02)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.hero-badge .badge-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: #fff;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item { text-align: left; }
.hero-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}
.hero-stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-bar .trust-item i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card .feature-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card .feature-icon.icon-blue { background: #dbeafe; color: #1d4ed8; }
.feature-card .feature-icon.icon-green { background: #d1fae5; color: #059669; }
.feature-card .feature-icon.icon-purple { background: #ede9fe; color: #7c3aed; }
.feature-card .feature-icon.icon-orange { background: #ffedd5; color: #ea580c; }

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   SOFTWARE MOCKUP
   ============================================ */
.mockup-section {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.mockup-section .section-label { color: #60a5fa; }
.mockup-section .section-title { color: #fff; }
.mockup-section .section-subtitle { color: rgba(255,255,255,0.6); }

.mockup-window {
    background: #1a1f2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: #12161f;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dots { display: flex; gap: 8px; }
.mockup-dots .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-title {
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #34d399;
    font-weight: 600;
}

.status-pulse {
    width: 8px; height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.mockup-body {
    display: flex;
    min-height: 420px;
}

.mockup-sidebar {
    width: 180px;
    background: #141822;
    padding: 16px 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.sidebar-item {
    padding: 10px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.sidebar-item.active {
    color: #fff;
    background: rgba(26,86,219,0.2);
    border-left: 3px solid var(--primary);
}

.mockup-content {
    flex: 1;
    padding: 24px;
    overflow: hidden;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-stat-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-views .mockup-stat-icon { background: rgba(59,130,246,0.15); color: #60a5fa; }
.stat-likes .mockup-stat-icon { background: rgba(16,185,129,0.15); color: #34d399; }
.stat-subs .mockup-stat-icon { background: rgba(168,85,247,0.15); color: #c084fc; }

.mockup-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.mockup-stat-value { font-size: 1.3rem; font-weight: 700; color: #fff; }
.mockup-stat-change { font-size: 0.7rem; color: #34d399; margin-top: 2px; }

.mockup-log {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    max-height: 180px;
    overflow: hidden;
}

.log-header {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.log-live {
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

.log-entries { display: flex; flex-direction: column; gap: 6px; }

.log-entry {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: logSlideUp 0.35s ease;
}

@keyframes logSlideUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.log-time { color: rgba(255,255,255,0.4); min-width: 55px; }

.log-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    min-width: 56px;
    text-align: center;
}

.log-view { background: rgba(59,130,246,0.25); color: #93c5fd; }
.log-like { background: rgba(16,185,129,0.25); color: #6ee7b7; }
.log-sub { background: rgba(168,85,247,0.25); color: #d8b4fe; }
.log-comment { background: rgba(245,158,11,0.25); color: #fcd34d; }

.log-entry.entry-view { color: rgba(147,197,253,0.85); }
.log-entry.entry-like { color: rgba(110,231,183,0.85); }
.log-entry.entry-sub { color: rgba(216,180,254,0.85); }
.log-entry.entry-comment { color: rgba(252,211,77,0.85); }

.mockup-progress { display: flex; flex-direction: column; gap: 12px; }

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.progress-pct { color: #fff; font-weight: 600; }

.progress-bar-mock {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease;
}

.fill-views { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.fill-likes { background: linear-gradient(90deg, #10b981, #34d399); }
.fill-subs { background: linear-gradient(90deg, #8b5cf6, #c084fc); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-section);
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-connector {
    position: absolute;
    top: 52px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    display: none;
}

@media (min-width: 768px) {
    .step-connector { display: block; }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: #fff;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.benefit-item:last-child { border-bottom: none; }

.benefit-item .benefit-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #ecfdf5;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 40px rgba(26, 86, 219, 0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.pricing-card .plan-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-card .plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card .plan-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-card .plan-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f8fafc;
}

.pricing-card .plan-features li:last-child { border-bottom: none; }

.pricing-card .plan-features li i.fa-check {
    color: var(--success);
    margin-top: 3px;
}

.pricing-card .plan-features li i.fa-xmark {
    color: #cbd5e1;
    margin-top: 3px;
}

.pricing-card .plan-features li.disabled {
    color: #94a3b8;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background: var(--primary);
    color: #fff;
}

.btn-pricing-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.3);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-pricing-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 16px;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card .author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card .author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}

.footer h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer a:hover { color: #fff; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    margin-top: 40px;
}

.social-links a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.7);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   UTILITIES
   ============================================ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[type="submit"], .btn { cursor: pointer !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section { padding: 80px 0 60px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-item .stat-number { font-size: 1.4rem; }
    .pricing-card { margin-bottom: 24px; }
    .mockup-sidebar { display: none; }
    .mockup-stats-row { grid-template-columns: 1fr; }
    .mockup-body { min-height: auto; }
    .log-entry { font-size: 0.65rem; }
}

/* ============================================
   PAYMENT MODAL OVERRIDES
   ============================================ */
img#permnyBtn {
    margin: 10px 5% 10px 10% !important;
    height: 70px !important;
}

.payeerPayButton {
    margin: 5px 0% -28px 18% !important;
}
