/* ============================================
   ORCA PLAYER — Global Stylesheet
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lexend:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Backgrounds */
    --bg-primary:   #121417;
    --bg-secondary: #181B20;
    --bg-card:      #1F232A;

    /* Accent Colors */
    --accent-primary:      #3A7AFE;
    --accent-primary-dark: #2a62d5;
    --accent-primary-rgb:  58, 122, 254;
    --accent-secondary:    #F2B705;
    --accent-success:      #06d6a0;
    --accent-danger:       #e63946;

    /* Text */
    --text-primary:   #F1F3F5;
    --text-body:      #C4C8CE;
    --text-secondary: #9DA3AB;
    --text-muted:     #8B919A;

    /* Borders & Shadows */
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow:  0 0 32px rgba(58, 122, 254, 0.2);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Lexend', sans-serif;

    /* Layout */
    --container-width: 1280px;
    --header-height:   108px;
    --border-radius:   6px;

    /* Transitions */
    --transition: 0.2s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: color var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    outline: none;
}

input,
select,
textarea {
    font-family: var(--font-body);
    outline: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-muted   { color: var(--text-muted); }
.text-accent  { color: var(--accent-primary); }
.text-gold    { color: var(--accent-secondary); }
.text-success { color: var(--accent-success); }
.text-danger  { color: var(--accent-danger); }
.text-primary { color: var(--text-primary); }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }

/* ============================================
   SECTION HEADER (reusable across all pages)
   ============================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--accent-secondary);
    color: #000;
    font-weight: 700;
}
.btn-gold:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
}

.btn-success {
    background: var(--accent-success);
    color: #000;
    font-weight: 700;
}
.btn-success:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--accent-danger);
    color: #fff;
}
.btn-danger:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: all var(--transition);
}

.card:hover {
    border-color: rgba(var(--accent-primary-rgb), 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.card-flat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-blue    { background: rgba(58,122,254,0.12);  color: var(--accent-primary);   border: 1px solid rgba(58,122,254,0.2);  }
.badge-green   { background: rgba(6,214,160,0.12);   color: var(--accent-success);   border: 1px solid rgba(6,214,160,0.2);   }
.badge-gold    { background: rgba(242,183,5,0.12);   color: var(--accent-secondary); border: 1px solid rgba(242,183,5,0.2);   }
.badge-red     { background: rgba(230,57,70,0.12);   color: var(--accent-danger);    border: 1px solid rgba(230,57,70,0.2);   }
.badge-muted   { background: rgba(139,145,154,0.12); color: var(--text-muted);       border: 1px solid rgba(139,145,154,0.2); }

/* Live dot animation */
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 13px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition);
}

.form-input:focus {
    border-color: var(--accent-primary);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input.error {
    border-color: var(--accent-danger);
}

.form-select {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 13px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    transition: border-color var(--transition);
}

.form-select:focus {
    border-color: var(--accent-primary);
}

.form-error {
    font-size: 13px;
    color: var(--accent-danger);
    margin-top: 4px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   ALERT / NOTICE BOXES
   ============================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--border-radius);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-info    { background: rgba(58,122,254,0.08);  border: 1px solid rgba(58,122,254,0.2);  color: #93b4fd; }
.alert-success { background: rgba(6,214,160,0.08);   border: 1px solid rgba(6,214,160,0.2);   color: var(--accent-success); }
.alert-warning { background: rgba(242,183,5,0.08);   border: 1px solid rgba(242,183,5,0.2);   color: var(--accent-secondary); }
.alert-danger  { background: rgba(230,57,70,0.08);   border: 1px solid rgba(230,57,70,0.2);   color: var(--accent-danger); }

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    height: 1px;
    background: var(--border-color);
    margin: 32px 0;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
    margin: 24px 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: static;
    height: var(--header-height);
    padding-block: 14px;
    background: rgba(12, 14, 17, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 2px solid rgba(58,122,254,0.35);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar-links a {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: color var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--text-primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* No longer needed — navbar is not sticky */
.page-top {
    padding-top: 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo svg {
    height: 32px;
    width: auto;
    display: block;
    fill: #ffffff;
}

.footer-logo span {
    color: var(--accent-primary);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(58,122,254,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
    z-index: 900;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: var(--accent-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(58,122,254,0.6);
}
.scroll-top-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition);
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    box-shadow: var(--shadow-card);
    animation: toastIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.toast.hiding {
    opacity: 0;
}

.toast-success { border-left: 3px solid var(--accent-success); }
.toast-error   { border-left: 3px solid var(--accent-danger);  }
.toast-info    { border-left: 3px solid var(--accent-primary);  }
.toast-warning { border-left: 3px solid var(--accent-secondary);}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TABLE
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 12px 16px;
    text-align: left;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* ============================================
   STAT CARDS (for dashboard)
   ============================================ */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(58,122,254,0.05), var(--bg-card));
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price sup {
    font-size: 22px;
    vertical-align: super;
    font-weight: 600;
    font-family: var(--font-body);
}

.pricing-price sub {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin: 12px 0 28px;
    line-height: 1.6;
}

.pricing-divider {
    height: 1px;
    background: var(--border-color);
    margin: 28px 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.pricing-feature .check {
    color: var(--accent-success);
    font-size: 15px;
    flex-shrink: 0;
}

.pricing-feature .cross {
    color: var(--text-muted);
    font-size: 15px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid-4      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .navbar-links { gap: 20px; }
}

@media (max-width: 900px) {
    .navbar-links      { display: none; }
    .navbar-actions    { display: none; }
    .navbar-mobile-btn { display: block; font-size: 32px; padding: 6px 8px; }
}

@media (max-width: 768px) {
    .navbar-logo img { height: 32px; }
    .footer-logo img  { height: 28px; }
    .footer-logo svg  { height: 28px; }

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }

    .section    { padding: 64px 0; }
    .section-sm { padding: 40px 0; }

    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .modal { padding: 28px 20px; }

    .toast-container { bottom: 16px; right: 16px; left: 16px; }
    .toast { min-width: unset; }
}

@media (max-width: 480px) {
    .navbar-logo img { height: 28px; }
    .footer-logo img  { height: 24px; }
    .footer-logo svg  { height: 24px; }

    .container { padding: 0 16px; }
    .grid-4    { grid-template-columns: 1fr; }

    .btn-lg { padding: 14px 24px; font-size: 15px; }

    .pricing-card { padding: 24px 20px; }

    .stat-value { font-size: 28px; }

    .section    { padding: 48px 0; }
    .section-sm { padding: 24px 0; }
    .section-title { font-size: 22px; }
    .section-desc  { font-size: 14px; }

    .scroll-top-btn { bottom: 16px; right: 16px; }
}
