/* =====================================================
   style_pricing.css
   QuickTally — Pricing Page Styles
===================================================== */

/* =====================================================
   RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: linear-gradient(135deg, #9ef5f7, #cafbfc);
    color: #333;
    padding-top: 88px;
}

/* =====================================================
   HEADER / NAVIGATION
===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #1200ff;
    box-shadow: 0 3px 15px #00000026;
}

.header-container {
    max-width: 1275px;
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area h2 {
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
}

.logo-area p {
    color: #ffffff;
    font-size: 15px;
    margin-top: 4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: .3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* =====================================================
   PAGE TITLE
===================================================== */
.page-title {
   
    text-align: center;
    padding: 6px 0;
}

.page-title h2 {
    font-size: 35px;
    color: #111;
    line-height: 1.1;
}

/* =====================================================
   LAYOUT CONTAINERS
===================================================== */
.container {
    max-width: 1250px;
    margin: auto;
    padding: 2px 10px 10px;
}

.bottom-container {
    max-width: 1150px;
    margin: 10px auto 0;
    padding: 0 10px;
}

/* =====================================================
   PRICING TABLE
===================================================== */
.pricing-table {
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    overflow-x: auto;
    box-shadow: 0 4px 15px #00000014;
    margin-bottom: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: auto;
}

thead th {
    background: #1200ff;
    color: #ffffff;
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
}

td {
    border: 2px solid #008000;
    padding: 5px;
    vertical-align: top;
}

tbody tr:hover {
    background: #ffdea6;
}

.plan-name {
    color: #1200ff;
    font-size: 17px;
    font-weight: bold;
}

.price {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #1200ff;
}

/* =====================================================
   GENERIC LISTS (scoped to avoid leaking into custom lists)
===================================================== */
td ul,
.notes ul {
    padding-left: 20px;
}

td ul li,
.notes ul li {
    margin-bottom: 5px;
}

/* =====================================================
   FEATURE LIST (two-column, arrow bullets)
===================================================== */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 3px;
    line-height: 1.4;
}

.feature-list li::before {
    content: "➜";
    color: #0000ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Divider line between columns when inside a table cell */
td .feature-list {
    position: relative;
}

td .feature-list::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    bottom: -5px;
    width: 2px;
    background: linear-gradient(to bottom, #1200ff, #4a7dff);
    border-radius: 5px;
}

.version-feature {
    color: #ba0429;
    font-weight: bold;
}

/* =====================================================
   ROCKET LIST (single-column, arrow bullets)
===================================================== */
.rocket-list {
    list-style: none;
    padding: 0;
}

.rocket-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.rocket-list li::before {
    content: "➜";
    font-size: 14px;
    position: absolute;
    left: 0;
}

/* =====================================================
   HEADINGS WITHIN FEATURE LISTS
===================================================== */
.feature-heading {
    color: #0056ff;
    font-weight: 700;
}

.smart-title {
    color: #b80685;
    font-weight: 700;
}

/* =====================================================
   NOTES SECTION
===================================================== */
.notes {
    margin-top: 0;
    padding: 5px 8px 8px;
    background: #fffea7;
    border-radius: 10px;
    box-shadow: 0 4px 15px #00000014;
}

.notes h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1200ff;
}

.notes p {
    margin-bottom: 1px;
    line-height: 1.8;
}

.notes ol {
    padding-left: 22px;
}

.notes li {
    margin-bottom: 8px;
    line-height: 1.2;
}

/* =====================================================
   CTA / BUTTONS
===================================================== */
.cta {
    text-align: center;
    margin-top: 5px;
}

.btn {
    display: inline-block;
    background: #1200ff;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: .3s;
}

.btn:hover {
    background: #0b00cc;
}

/* =====================================================
   FEATURE COLUMNS (two-box layout)
===================================================== */
.feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.feature-columns ol {
    padding-left: 32px;
}

.feature-columns li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-box {
    background: #ffffff;
    border: 2px solid #dbe7ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px #00000014;
}

.feature-box h3 {
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b00, #4a7dff);
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* =====================================================
   IMPORTANT NOTE / SUPPORT BOX
===================================================== */
.important-note {
    background: #f5eed9;
    border-left: 6px solid #ff9800;
    border-radius: 14px;
    padding: 5px 10px;
    margin-bottom: 25px;
}

.important-note h3 {
    color: #ff5722;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.important-note p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.support-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 25px #00000014;
    margin-bottom: 35px;
}

.support-box h3 {
    color: #1200ff;
    font-size: 18px;
    margin-bottom: 15px;
}

.support-box p {
    color: #222;
    font-size: 15px;
    margin-bottom: 6px;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    background: #1200ff;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
}