:root {
    --cream: #fffbe5;
    --cream-dark: #fff5cc;
    --blue-light: #dcf2fb;
    --blue: #006ea6;
    --blue-dark: #005580;
    --orange: #fcaf1b;
    --orange-hover: #e89d0f;
    --orange-light: #fff3d6;
    --text: #231f20;
    --text-muted: #5a5657;
    --text-light: #757575;
    --white: #ffffff;
    --border: rgba(35, 31, 32, 0.08);
    --border-strong: rgba(35, 31, 32, 0.12);
    --shadow-sm: 0 1px 2px rgba(35, 31, 32, 0.04), 0 2px 8px rgba(35, 31, 32, 0.04);
    --shadow-md: 0 4px 12px rgba(35, 31, 32, 0.06), 0 12px 40px rgba(35, 31, 32, 0.08);
    --shadow-lg: 0 8px 24px rgba(35, 31, 32, 0.08), 0 24px 64px rgba(35, 31, 32, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
    --main-tabs-height: 57px;
    --filters-bar-height: 76px;
    --pricing-sticky-offset: calc(var(--header-height) + var(--main-tabs-height) + var(--filters-bar-height));
    --sidebar-width: 220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/*img,
svg {
    display: block;
    max-width: 100%;
}*/

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blue-dark);
}

ul {
    list-style: none;
}

/*.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}*/

.hidden {
    display: none !important;
}

/* Hide product IDs from card layout */
.itemId,
.plan-price .itemId,
.plan-card .itemId,
.upgrade-item .itemId,
.single-product-card .itemId,
.cloud-price-card .itemId {
    display: none !important;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(252, 175, 27, 0.35);
}

.btn-primary:hover {
    background: var(--orange-hover);
    color: var(--text);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(252, 175, 27, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--orange);
}

.btn-secondary:hover {
    background: var(--orange-light);
    color: var(--text);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}
.border-radius-5px {
    border-radius: 0;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--header-height);
    background: rgba(255, 251, 229, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-mark {
    height: 36px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 0;
}

/* ---- Announcement ---- */
.announcement {
    /*margin-top: var(--header-height);*/
    background: var(--blue);
    color: var(--white);
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-icon {
    opacity: 0.8;
    font-size: 14px;
}

.announcement p {
    font-size: 14px;
    font-weight: 500;
}

.announcement-link {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
}

.announcement-link:hover {
    color: var(--cream);
}

/* ---- Main tabs ---- */
.main-tabs-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 150;
}

.main-tabs {
    display: flex;
    gap: 0;
}

.main-tab {
    padding: 18px 28px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: -1px;
}

.main-tab:hover {
    color: var(--text);
}

.main-tab.active {
    color: var(--text);
    border-bottom-color: var(--orange);
}

/* ---- Filters bar ---- */
.filters-bar {
    position: sticky;
    /*top: calc(var(--header-height) + var(--main-tabs-height));*/
    /*top: 115px;*/
    top: 196px;
    z-index: 140;
    background: rgba(255, 251, 229, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    box-shadow: 0 1px 0 rgba(35, 31, 32, 0.04);
}

.filters-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.sub-tabs {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 4px;
    box-shadow: var(--shadow-sm);
}

.sub-tab {
    padding: 10px 15px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.sub-tab.active {
    background: var(--blue-light);
    color: var(--blue);
}

.license-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.license-pills {
    display: flex;
    gap: 8px;
}

.license-pill {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.license-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.license-pill.active {
    background: var(--blue-light);
    border-color: var(--blue);
    color: var(--blue);
    font-weight: 600;
}

/* ---- Licence type dropdown ---- */
.license-dropdown {
    position: relative;
}

.license-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 196px;
    padding: 10px 16px 10px 18px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.license-dropdown-toggle:hover,
.license-dropdown-toggle:focus,
.license-dropdown-toggle.show {
    border-color: var(--blue);
    background: var(--white);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 110, 166, 0.1);
    outline: none;
}

.license-dropdown-toggle::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: var(--blue);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.license-dropdown-label {
    flex: 1;
    text-align: left;
    white-space: nowrap;
}

.license-dropdown-toggle.dropdown-toggle::after {
    margin-left: 0;
    border: none;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition), border-color var(--transition);
}

.license-dropdown-toggle.show.dropdown-toggle::after {
    transform: rotate(-135deg) translateY(2px);
    border-color: var(--blue);
}

.license-dropdown-menu {
    min-width: 300px;
    margin-top: 10px !important;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    box-shadow: var(--shadow-md);
    animation: licenseDropdownIn 0.2s ease;
}

@keyframes licenseDropdownIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.license-dropdown-menu h6 {
    margin: 4px 8px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.license-dropdown-menu .license-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.license-dropdown-menu .license-option+.license-option {
    margin-top: 4px;
}

.license-dropdown-menu .license-option:hover {
    background: var(--cream);
    border-color: var(--border);
}

.license-dropdown-menu .license-option:has(.countryCheckBox:checked) {
    background: var(--blue-light);
    border-color: rgba(0, 110, 166, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 110, 166, 0.08);
}

.license-dropdown-menu .license-option .form-check-input {
    position: relative;
    float: none;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    border: 2px solid var(--border-strong);
    background-color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.license-dropdown-menu .license-option .form-check-input:checked {
    background-color: var(--blue);
    border-color: var(--blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3' fill='white'/%3E%3C/svg%3E");
}

.license-dropdown-menu .license-option .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 110, 166, 0.15);
    border-color: var(--blue);
}

.license-dropdown-menu .license-option .form-check-label {
    flex: 1;
    display: block;
    padding: 0;
    cursor: pointer;
}

.license-option-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.license-option-desc {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-muted);
}

.license-dropdown-menu .license-option:has(.countryCheckBox:checked) .license-option-title {
    color: var(--blue);
}

/* ---- Hub layout (Stripe-style) ---- */
.hub-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    align-items: start;
}

.hub-sidebar {
    position: sticky;
    top: calc(var(--pricing-sticky-offset) + 16px);
}

.sidebar-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.sidebar-link:hover {
    color: var(--text);
    background: var(--cream);
}

.sidebar-link.active {
    color: var(--blue);
    background: var(--blue-light);
    border-left-color: var(--blue);
    font-weight: 600;
}

.hub-content {
    min-width: 0;
}

/* ---- Product sections ---- */
.product-section {
    margin-bottom: 80px;
    scroll-margin-top: calc(var(--pricing-sticky-offset) + 24px);
}

.product-section:last-child {
    margin-bottom: 0;
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 10px;
    border-radius: 0;
    margin-bottom: 8px;
}

.product-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ---- Plan cards ---- */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.plan-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.plan-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.plan-card.featured {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.plan-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 0;
}

.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--cream);
    padding: 4px 10px;
    border-radius: 0;
    margin-bottom: 10px;
    align-self: flex-start;
}

.plan-badge.highlight {
    background: var(--orange-light);
    color: var(--text);
}

.plan-name,
.plan-tier {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.plan-price {
    margin: 0;
}

.plan-price .amount,
.plan-price>.amount.price {
    line-height: 1.15;
}

.amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

/* Discounted price row: old + new on one line */
.plan-price .price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    line-height: 1.15;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.upgrade-price .price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    line-height: 1.2;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.plan-price .price .amount-old,
.plan-price .price del,
.plan-price .price .clsRenOldPrice,
.upgrade-price .price .amount-old,
.upgrade-price .price del,
.upgrade-price .price .clsRenOldPrice {
    display: inline;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: line-through;
}

.plan-price .price del span,
.plan-price .price .amount-old span,
.upgrade-price .price del span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.plan-price .price .amount,
.upgrade-price .price .amount {
    display: inline;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.amount-old {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: line-through;
}

.sku {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
}

.plan-effective {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.4;
}

.plan-gst {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

.plan-period {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

.plan-desc-sm {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    flex-grow: 1;
}

.auto-renew {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.45;
    cursor: pointer;
    user-select: none;
}

.auto-renew input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-strong);
    border-radius: 0;
    flex-shrink: 0;
    transition: all var(--transition);
}

.auto-renew input:checked+.checkmark {
    background: var(--blue);
    border-color: var(--blue);
}

.auto-renew input:checked+.checkmark::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    height: 100%;
}

/* Auto-renew is mandatory everywhere except TSS — hide the checkbox, keep only the label text */
#tallyprime .auto-renew,
#cloud-access .auto-renew {
    cursor: default;
    pointer-events: none;
}

#tallyprime .auto-renew .checkmark,
#cloud-access .auto-renew .checkmark {
    display: none;
}

.plan-card .btn {
    margin-top: auto;
    align-self: stretch;
}

/* ---- Card vertical rhythm (hub-content) ---- */
.hub-content .plan-card>*,
.hub-content .cloud-price-card>* {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hub-content .plan-card>.plan-badge {
    padding-bottom: 12px !important;
}

.hub-content .plan-card>.plan-name,
.hub-content .plan-card>.plan-tier,
.hub-content .cloud-price-card>h4 {
    padding-bottom: 10px !important;
}

.hub-content .plan-card>.plan-price,
.hub-content .cloud-price-card>.plan-price {
    padding-bottom: 8px !important;
}

.hub-content .plan-card>.plan-period {
    padding-bottom: 6px !important;
}

.hub-content .plan-card>.plan-effective {
    padding-bottom: 8px !important;
}

.hub-content .plan-card>.plan-gst,
.hub-content .cloud-price-card>.plan-gst {
    padding-bottom: 20px !important;
}

.hub-content .plan-card>.plan-desc-sm {
    padding-bottom: 20px !important;
}

.hub-content .plan-card>.auto-renew,
.hub-content .cloud-price-card>.auto-renew {
    padding-bottom: 20px !important;
}

.hub-content .plan-card>.btn,
.hub-content .cloud-price-card>.btn {
    margin-top: auto !important;
    align-self: stretch;
}

.hub-content .single-product-card>* {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hub-content .single-product-card .single-product-info>h3 {
    padding-bottom: 10px;
}

.hub-content .single-product-card .single-product-info>.plan-price {
    padding-bottom: 6px;
}

.hub-content .single-product-card .single-product-info>.plan-period {
    padding-bottom: 4px;
}

.hub-content .single-product-card .single-product-info>.plan-gst {
    padding-bottom: 0;
}

.hub-content .single-product-card .single-product-info>.plan-desc-sm {
    padding-top: 8px;
    padding-bottom: 0;
}

.hub-content .single-product-card>.btn {
    margin-top: 0 !important;
    align-self: center;
}

/* ---- Features strip ---- */
.features-strip {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--cream);
    border-radius: 0;
    border: 1px solid var(--border);
}

.features-strip.compact {
    padding: 24px 28px;
}

.features-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.features-strip h4 {
    font-size: 15px;
    font-weight: 700;
}

.strip-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.strip-tags span {
    font-size: 12px;
    font-weight: 500;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 12px;
    border-radius: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 16px;
}

.features-list.inline {
    grid-template-columns: repeat(2, 1fr);
}

.features-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
}

/* ---- Cloud section ---- */
.cloud-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px;
}

.cloud-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cloud-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pack-selector {
    margin-bottom: 24px;
}

.pack-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.pack-select {
    width: 100%;
    max-width: 360px;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 14px;
    border: 1px solid var(--border-strong);
    border-radius: 0;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

.cloud-pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.cloud-price-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cloud-price-card.featured {
    border-color: var(--orange);
}

.cloud-price-card h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.cloud-price-card .plan-price {
    margin: 0;
}

.cloud-price-card .plan-gst {
    margin: 0;
}

.cloud-price-card .auto-renew {
    margin: 0;
}

.cloud-price-card .btn {
    margin-top: auto;
    align-self: stretch;
}

.cloud-specs h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cloud-specs ul li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0 6px 20px;
    position: relative;
}

.cloud-specs ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.cloud-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
}

/* ---- Pricing toggle ---- */
.pricing-toggle-wrap {
    flex-shrink: 0;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 4px;
    box-shadow: var(--shadow-sm);
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.toggle-btn.active {
    background: var(--blue-light);
    color: var(--blue);
}

.toggle-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    background: var(--orange);
    color: var(--text);
    border-radius: 0;
}

/* ---- Single product card ---- */
.single-product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    transition: box-shadow var(--transition);
}

.single-product-card:hover {
    box-shadow: var(--shadow-md);
}

.single-product-card.large .amount {
    font-size: 36px;
}

/* ---- Docs by Ira: stacked single-card layout ---- */
.ira-card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.ira-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ira-card-top h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.ira-page-select {
    display: flex;
    gap: 10px;
}

.ira-page-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.ira-page-option span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.ira-page-option:hover {
    border-color: var(--blue);
}

.ira-page-option.active {
    border-color: var(--blue);
    border-width: 2px;
    background: var(--blue-light);
}

.ira-page-select-spacer {
    height: 60px;
}

.ira-card > .btn {
    width: 100%;
    min-width: 0;
}

.ira-pack-text {
    color: var(--blue);
    font-weight: 600;
}

.single-product-info {
    flex: 1;
    min-width: 0;
}

.single-product-info h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.single-product-info .plan-price,
.single-product-info .plan-period,
.single-product-info .plan-gst,
.single-product-info .plan-desc-sm {
    margin: 0;
}

.single-product-card>.btn {
    flex-shrink: 0;
    align-self: center;
    white-space: nowrap;
    width: auto;
    min-width: 160px;
}

/* ---- Quantity stepper ---- */
.quantity-input-wrapper {
    width: 34%;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid var(--border-strong);
    border-radius: 0;
    overflow: hidden;
    background: var(--white);
}

.quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cream);
    border: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background var(--transition);
}

.quantity-btn:hover:not(:disabled) {
    background: var(--border);
}

.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quantity-input,
.ira-quantity {
    width: 40px;
    height: 32px;
    border: none;
    text-align: center;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button,
.ira-quantity::-webkit-outer-spin-button,
.ira-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ---- Upgrade list ---- */
.upgrade-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .upgrade-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .upgrade-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.upgrade-list>.col-12,
.upgrade-list>.col-md-6,
.upgrade-list>.col-lg-4 {
    display: contents;
}

.upgrade-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    transition: box-shadow var(--transition);
}

.upgrade-item:hover {
    box-shadow: var(--shadow-sm);
}

.upgrade-info {
    flex: 1;
    min-width: 0;
}

.upgrade-info h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

.upgrade-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 140px;
}

.upgrade-price .amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 4px;
}

.upgrade-price .price .amount,
.upgrade-price .price>span:not(.amount-old):not(del) {
    font-size: 20px;
}

.upgrade-price .plan-gst {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
    white-space: nowrap;
}

.upgrade-item>.btn {
    flex-shrink: 0;
    align-self: center;
    white-space: nowrap;
    width: auto;
    min-width: 160px;
}

/* ---- Renew CTA ---- */
.renew-cta {
    background: var(--blue-light);
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.renew-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.renew-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.renew-content p {
    font-size: 15px;
    color: var(--text-muted);
}

.renew-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.renew-input {
    padding: 8px 20px;
    font-family: var(--font);
    font-size: 15px;
    border: 1.5px solid var(--border-strong);
    border-radius: 0;
    min-width: 280px;
    outline: none;
    transition: border-color var(--transition);
}

.renew-input:focus {
    border-color: var(--blue);
}

/* ---- Rental CTA ---- */
.rental-cta {
    padding: 48px 0 80px;
    background: var(--cream);
}

.rental-card {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--cream) 100%);
    border-radius: 0;
    border: 1px solid var(--border);
}

.rental-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.rental-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ---- Plugins ---- */
/*.section-padded { padding: 40px 0; }*/

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plugin-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.plugin-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plugin-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 10px;
    border-radius: 0;
    margin-bottom: 16px;
}

.plugin-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plugin-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.plugin-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.plugin-status {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    background: var(--orange-light);
    padding: 2px 8px;
    border-radius: 0;
}

/* ---- What's New ---- */
.whatsnew-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.whatsnew-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--cream);
    border-radius: 0;
    border: 1px solid var(--border);
    transition: transform var(--transition);
}

.whatsnew-item:hover {
    transform: translateY(-2px);
}

.whatsnew-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.whatsnew-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.whatsnew-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.steps-card {
    padding: 40px;
    background: var(--blue-light);
    border-radius: 0;
    border: 1px solid var(--border);
}

.steps-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.steps-list {
    list-style: decimal;
    padding-left: 20px;
}

.steps-list li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
    line-height: 1.5;
}

/* ---- Footer ---- */
.site-footer {
    padding: 40px 0;
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-inner p {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hub-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 24px;
    }

    .hub-sidebar {
        position: static;
        margin-bottom: 32px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar-nav {
        flex-direction: row;
        gap: 8px;
        padding-bottom: 8px;
    }

    .sidebar-label {
        display: none;
    }

    .sidebar-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 8px 16px;
    }

    .sidebar-link.active {
        border-left: none;
        border-bottom-color: var(--blue);
    }

    .cloud-pricing-row {
        grid-template-columns: 1fr;
    }

    .whatsnew-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .header-nav.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .filters-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .sub-tabs {
        overflow-x: auto;
        max-width: 24.5rem;
    }

    .license-filter {
        flex-direction: column;
        align-items: flex-start;
    }

    .license-dropdown,
    .license-dropdown-toggle {
        width: 100%;
    }

    .license-dropdown-menu {
        width: 100%;
        min-width: 0;
    }

    .plan-grid,
    .plan-grid-3,
    .plan-grid-2 {
        grid-template-columns: 1fr;
    }

    .product-header {
        flex-direction: column;
    }

    .renew-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .renew-form {
        flex-direction: column;
        width: 100%;
    }

    .renew-input {
        min-width: 0;
        width: 100%;
    }

    .upgrade-item {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 16px;
    }

    .upgrade-price {
        text-align: left;
        min-width: 0;
    }

    .upgrade-item>.btn {
        width: 100%;
        min-width: 0;
        align-self: stretch;
    }

    .single-product-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .single-product-card>.btn {
        width: 100%;
        min-width: 0;
        align-self: stretch;
    }

    .plugins-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .whatsnew-actions {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .section-padded{
        margin-top: 6rem;
    }
}

@media (max-width: 480px) {

    /*.container { padding: 0 16px; }*/
    .main-tab {
        padding: 14px 16px;
        font-size: 13px;
    }

    .amount {
        font-size: 24px;
    }
}

@media (max-width: 424px) {
    .sub-tabs{
        max-width: 21.5rem;
    }
    .sub-tab{
        font-size: 11.7px;
    }
    .license-dropdown, .license-dropdown-toggle {
        width: 100%;
    }
}

.theme-intercom {
    /* Intercom-style neutrals + Tally accents */
    --surface: #f4f4f5;
    --surface-raised: #ffffff;
    --ink: #231f20;
    --ink-muted: #6f6e77;
    --ink-faint: #9b9aa3;
    --line: rgba(35, 31, 32, 0.1);
    --line-soft: rgba(35, 31, 32, 0.06);
    --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 24, 40, 0.06);
    --shadow-card-hover: 0 2px 4px rgba(16, 24, 40, 0.06), 0 16px 40px rgba(16, 24, 40, 0.1);
    --radius-card: 20px;
    --toggle-bg: #ececee;
    --toggle-active: #231f20;
}

.theme-intercom body {
    background: var(--surface);
    color: var(--ink);
}

/* ---- Header: clean Intercom nav ---- */
.theme-intercom .site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(20px);
}

.theme-intercom .site-header.scrolled {
    box-shadow: 0 1px 0 var(--line-soft);
}

.theme-intercom .nav-link {
    color: var(--ink-muted);
    font-size: 15px;
}

.theme-intercom .nav-link:hover {
    color: var(--ink);
}

/* ---- Announcement: keep Tally blue ---- */
.theme-intercom .announcement-link:hover {
    color: var(--cream);
}

/* ---- Main tabs: Intercom text tabs ---- */
.theme-intercom .main-tabs-wrap {
    background: var(--surface-raised);
    border-bottom: 1px solid var(--line-soft);
}

.theme-intercom .main-tab {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-muted);
    padding: 20px 24px;
    border-bottom: 2px solid transparent;
}

.theme-intercom .main-tab.active {
    color: var(--ink);
    font-weight: 600;
    border-bottom-color: var(--ink);
}

.theme-intercom .main-tab:hover {
    color: var(--ink);
}

/* ---- Sticky filters: Intercom control strip ---- */
.theme-intercom .filters-bar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.04);
    padding: 16px 0;
}

.theme-intercom .sub-tabs {
    background: var(--toggle-bg);
    border: none;
    box-shadow: none;
    padding: 3px;
    border-radius: 10px;
}

.theme-intercom .sub-tab {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    border-radius: 8px;
    padding: 9px 16px;
}

.theme-intercom .sub-tab.active {
    background: var(--surface-raised);
    color: var(--ink);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
}

.theme-intercom .filter-label {
    color: var(--ink-faint);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
}

.theme-intercom .license-pill {
    background: var(--surface-raised);
    border-color: var(--line);
    color: var(--ink-muted);
    font-size: 13px;
    border-radius: 8px;
    padding: 8px 14px;
}

.theme-intercom .license-pill.active {
    background: var(--blue-light);
    border-color: transparent;
    color: var(--blue);
    box-shadow: inset 0 0 0 1px rgba(0, 110, 166, 0.15);
}

.theme-intercom .license-dropdown-toggle {
    min-width: 188px;
    background: var(--surface-raised);
    border-color: var(--line);
    border-radius: 10px;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    padding: 9px 14px 9px 16px;
}

.theme-intercom .license-dropdown-toggle:hover,
.theme-intercom .license-dropdown-toggle:focus,
.theme-intercom .license-dropdown-toggle.show {
    border-color: var(--line);
    box-shadow: 0 0 0 3px rgba(35, 31, 32, 0.06);
}

.theme-intercom .license-dropdown-toggle::before {
    background-color: var(--ink-muted);
}

.theme-intercom .license-dropdown-toggle.dropdown-toggle::after {
    border-color: var(--ink-faint);
}

.theme-intercom .license-dropdown-toggle.show.dropdown-toggle::after {
    border-color: var(--ink);
}

.theme-intercom .license-dropdown-menu {
    border-color: var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-card-hover);
    padding: 8px;
}

.theme-intercom .license-dropdown-menu h6 {
    color: var(--ink-faint);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.theme-intercom .license-dropdown-menu .license-option:hover {
    background: var(--surface);
    border-color: var(--line-soft);
}

.theme-intercom .license-dropdown-menu .license-option:has(.countryCheckBox:checked) {
    background: var(--blue-light);
    border-color: rgba(0, 110, 166, 0.15);
    box-shadow: none;
}

.theme-intercom .license-dropdown-menu .license-option .form-check-input:checked {
    background-color: var(--toggle-active);
    border-color: var(--toggle-active);
}

.theme-intercom .license-option-title {
    color: var(--ink);
}

.theme-intercom .license-option-desc {
    color: var(--ink-muted);
}

.theme-intercom .license-dropdown-menu .license-option:has(.countryCheckBox:checked) .license-option-title {
    color: var(--blue);
}

/* ---- Hub layout ---- */
.theme-intercom .hub-layout {
    padding-top: 40px;
    padding-bottom: 64px;
    gap: 40px;
}

.theme-intercom .hub-content {
    background: transparent;
}

/* ---- Sidebar: Intercom minimal nav ---- */
.theme-intercom .sidebar-label {
    color: var(--ink-faint);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}

.theme-intercom .sidebar-link {
    border-left: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ink-muted);
}

.theme-intercom .sidebar-link:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
}

.theme-intercom .sidebar-link.active {
    background: var(--surface-raised);
    color: var(--ink);
    font-weight: 600;
    box-shadow: var(--shadow-card);
    border-left: none;
}

/* ---- Product sections ---- */
.theme-intercom .product-section {
    background: var(--surface-raised);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}

.theme-intercom .product-section:last-child {
    margin-bottom: 0;
}

.theme-intercom .product-title {
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.theme-intercom .product-desc {
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.65;
}

.theme-intercom .product-tag {
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ---- Toggles (Intercom billing pill) ---- */
.theme-intercom .pricing-toggle {
    background: var(--toggle-bg);
    border: none;
    box-shadow: none;
    padding: 3px;
    border-radius: 10px;
}

.theme-intercom .toggle-btn {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    border-radius: 8px;
    padding: 9px 18px;
}

.theme-intercom .toggle-btn.active {
    background: var(--toggle-active);
    color: var(--white);
    box-shadow: none;
}

.theme-intercom .toggle-badge {
    background: var(--orange);
    color: var(--ink);
    font-size: 10px;
}

.theme-intercom .toggle-btn.active .toggle-badge {
    background: var(--orange);
    color: var(--ink);
}

/* ---- Plan cards: Intercom tier columns ---- */
.theme-intercom .plan-grid {
    gap: 12px;
}

.theme-intercom .plan-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    box-shadow: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.theme-intercom .plan-card:hover {
    transform: none;
    box-shadow: var(--shadow-card-hover);
    border-color: var(--line);
}

.theme-intercom .plan-card.featured {
    background: var(--surface-raised);
    border-color: var(--line);
    box-shadow: var(--shadow-card);
    transform: scale(1.02);
    z-index: 1;
}

.theme-intercom .plan-card.featured:hover {
    box-shadow: var(--shadow-card-hover);
}

.theme-intercom .plan-card.featured::before {
    content: 'Recommended';
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 4px 12px;
    top: -13px;
}

.theme-intercom .plan-badge {
    background: transparent;
    color: var(--ink-muted);
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.theme-intercom .plan-badge.highlight {
    background: transparent;
    color: var(--blue);
}

.theme-intercom .plan-name,
.theme-intercom .plan-tier {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.theme-intercom .amount {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0;
}

.theme-intercom .plan-price {
    margin: 0;
}

.theme-intercom .amount-old {
    font-size: 14px;
    color: var(--ink-faint);
}

.theme-intercom .sku {
    font-size: 12px;
    color: var(--ink-faint);
    margin-top: 6px;
}

.theme-intercom .plan-gst,
.theme-intercom .plan-period,
.theme-intercom .plan-desc-sm {
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.45;
}

.theme-intercom .plan-effective {
    color: var(--blue);
    font-size: 13px;
    font-weight: 500;
}

.theme-intercom .auto-renew {
    font-size: 12px;
    color: var(--ink-muted);
}

.theme-intercom .checkmark {
    border-radius: 4px;
    border-color: var(--line);
}

.theme-intercom .auto-renew input:checked+.checkmark {
    background: var(--toggle-active);
    border-color: var(--toggle-active);
}

/* ---- Buttons: Intercom shape, Tally orange ---- */
.theme-intercom .btn {
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 22px;
}

.theme-intercom .btn-primary {
    background: var(--orange);
    color: var(--ink);
    box-shadow: none;
}

.theme-intercom .btn-primary:hover {
    background: var(--orange-hover);
    box-shadow: 0 4px 12px rgba(252, 175, 27, 0.35);
    transform: none;
}

.theme-intercom .btn-secondary {
    border-color: var(--line);
    background: var(--surface-raised);
}

.theme-intercom .btn-secondary:hover {
    border-color: var(--ink);
    background: var(--surface);
}

.theme-intercom .plan-card .btn-block {
    margin-top: auto;
}

/* ---- Features strip ---- */
.theme-intercom .features-strip {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    margin-top: 24px;
    padding: 24px 28px;
}

.theme-intercom .features-strip h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.theme-intercom .strip-tags span {
    background: var(--surface-raised);
    color: var(--ink-muted);
    border: 1px solid var(--line-soft);
    font-size: 12px;
    font-weight: 500;
}

.theme-intercom .features-list li {
    font-size: 14px;
    color: var(--ink-muted);
}

.theme-intercom .features-list li::before {
    color: var(--ink);
    font-weight: 600;
}

/* ---- Cloud section ---- */
.theme-intercom .cloud-section {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 28px;
}

.theme-intercom .cloud-price-card {
    background: var(--surface-raised);
    border-radius: 14px;
    border: 1px solid var(--line-soft);
}

.theme-intercom .cloud-price-card.featured {
    border-color: var(--line);
    box-shadow: var(--shadow-card);
}

.theme-intercom .pack-select {
    border-radius: 10px;
    border-color: var(--line);
    background: var(--surface-raised);
}

.theme-intercom .cloud-specs ul li::before {
    color: var(--ink);
}

/* ---- Single product & upgrades ---- */
.theme-intercom .single-product-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 28px 32px;
}

.theme-intercom .single-product-card:hover {
    box-shadow: var(--shadow-card);
}

.theme-intercom .upgrade-item {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 20px 24px;
}

.theme-intercom .upgrade-item:hover {
    box-shadow: var(--shadow-card);
}

.theme-intercom .upgrade-info h4 {
    font-weight: 600;
    font-size: 15px;
}

/* ---- CTAs ---- */
.theme-intercom .renew-cta {
    background: var(--surface);
    border-top: 1px solid var(--line-soft);
    padding: 48px 0;
}

.theme-intercom .renew-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-card);
    padding: 40px;
}

.theme-intercom .renew-input {
    border-radius: 10px;
    border-color: var(--line);
    background: var(--surface);
}

.theme-intercom .rental-cta {
    background: var(--surface);
    padding-bottom: 64px;
}

.theme-intercom .rental-card {
    background: var(--surface-raised);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

/* ---- Plugins (Intercom add-ons) ---- */
.theme-intercom .section-padded {
    background: var(--surface);
}

.theme-intercom .section-title {
    letter-spacing: -0.03em;
}

.theme-intercom .section-lead {
    color: var(--ink-muted);
}

.theme-intercom .plugin-card {
    background: var(--surface-raised);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    box-shadow: none;
    padding: 28px;
}

.theme-intercom .plugin-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.theme-intercom .plugin-tag {
    background: var(--surface);
    color: var(--ink-muted);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
}

.theme-intercom .plugin-link {
    color: var(--blue);
    font-weight: 600;
}

/* ---- What's New ---- */
.theme-intercom .whatsnew-item {
    background: var(--surface-raised);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
}

.theme-intercom .steps-card {
    background: var(--surface-raised);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

/* ---- Footer ---- */
.theme-intercom .site-footer {
    background: var(--ink);
}

/* ---- Responsive tweaks ---- */
@media (max-width: 900px) {
    .theme-intercom .sidebar-link.active {
        border-bottom-color: var(--ink);
        box-shadow: none;
        background: var(--surface-raised);
    }

    .theme-intercom .plan-card.featured {
        transform: none;
    }

    .theme-intercom .product-section {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .theme-intercom .main-tab {
        padding: 16px 14px;
        font-size: 13px;
    }
}

/* Final overrides — beat buy-now / bootstrap p margins inside pricing cards */
.hub-content .plan-card p.plan-gst,
.hub-content .plan-card p.plan-period,
.hub-content .plan-card p.plan-desc-sm,
.hub-content .plan-card p.plan-effective,
.hub-content .cloud-price-card p.plan-gst {
    display: block;
    margin: 0 !important;
}

.hub-content .plan-card>.plan-gst,
.hub-content .cloud-price-card>.plan-gst {
    padding-bottom: 20px !important;
}

.hub-content .plan-card>.plan-desc-sm {
    padding-bottom: 20px !important;
}

.hub-content .plan-card>.plan-price {
    padding-bottom: 8px !important;
}

.hub-content .plan-card>.plan-name,
.hub-content .plan-card>.plan-tier {
    padding-bottom: 10px !important;
}

.hub-content .plan-card>.plan-badge {
    padding-bottom: 12px !important;
}

.hub-content .plan-card>.plan-period {
    padding-bottom: 6px !important;
}

.hub-content .plan-card>.plan-effective {
    padding-bottom: 8px !important;
}

.hub-content .plan-card>.auto-renew,
.hub-content .cloud-price-card>.auto-renew {
    padding-bottom: 20px !important;
}

.hub-content .plan-price .price .amount,
.hub-content .plan-price>.amount.price {
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    color: var(--text) !important;
}

/* side bar */
.sidebar-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    overflow-x: hidden;
    transition: 0.4s;
    display: none;
    z-index: 1050;
    padding-top: 25px;
    color: #231f20;
    height: 88vh;
}

.sidebar-menu .menu-content {
    padding: 20px;
}

.sidebar-menu a {
    color: #231f20;
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #231f20;
}

.menu-item.active {
    background-color: #006ea6 !important;
    color: #ffffff !important;
}
#fixed-navbar .nav-link{
    font-weight: normal;
}
.headingWhatsNew {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 20px;
    text-align: center;
}
.btn-prime-sec {
    border: 2px solid #e6b542;
    color: #fff;
    border-radius: 23px;
    font-size: .9rem;
    font-weight: 400;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    display: block;
}

.btn-prime-sec {
    font-size: 1rem;
    padding: 8px 40px;
    width: auto;
    color: #000;
    display: inline-block;
}
.splashImg {
    width: 50px !important;
    height: 60px !important;
    background-position-y: -7px !important;
    background-repeat: no-repeat;
}
.hyperLink {
    color: #007bff!important;
}

.font-weight-500 {
    font-weight: 500;
}
.featuresIcon {
    width: 2.5rem;
}
.splash{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/icons/icon-bg-yellow.svg');
    background-position: center;
    background-size: cover;
}

@media (min-width: 768px) {
    .main-tabs-wrap {
        top: 70px;
    }

    .filters-bar {
        top: 185px;
    }
}

@media (min-width: 1024px) {
    .quantity-input-wrapper {
        width: 16%;
    }

    .hub-content .plan-price .price .amount,
    .hub-content .plan-price>.amount.price {
        font-size: 25px !important;
    }

    .main-tabs-wrap {
        top: 55px;
    }

    .filters-bar {
        top: 115px;
    }
}

@media (min-width: 1200px) {
    .quantity-input-wrapper {
        width: 13%;
    }
}

@media (min-width: 1440px) {

    .hub-content .plan-price .price .amount,
    .hub-content .plan-price>.amount.price {
        font-size: 28px !important;
    }
}