@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background: #170f2c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

h1 {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 20px;
}

h3 {
    font-weight: 500;
    font-size: 35px;
    line-height: 41px;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
}

h5 {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
}

h6 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 3px;
    font-weight: 600;
}

p { line-height: 1.7; }

.wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===================== HEADER ===================== */
header {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
}

header .announcement-bar {
    background: #836dd4;
    position: relative;
}

header .announcement-bar .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px 10px 20px;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap;
    max-width: 1240px;
}

header .announcement-bar p {
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    margin: 0;
}

header .announcement-bar .read-more {
    padding: 6px 15px;
    font-size: 12px;
    color: #333;
    background: #fff;
    line-height: normal;
    border-radius: 4px;
}

header .announcement-bar .read-more-hire {
    padding: 6px 15px;
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
    line-height: normal;
    border-radius: 4px;
}

.nav-bar {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
}

.nav-bar.scrolled {
    background: #170f2c;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 6px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img, .logo svg {
    height: 28px;
    width: auto;
    display: block;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 10, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(131, 109, 212, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 998;
    gap: 2px;
}

.nav-menu.mobile-open li {
    width: 100%;
}

.nav-menu.mobile-open a {
    padding: 12px 12px;
    width: 100%;
    display: block;
    border-radius: 8px;
    font-size: 16px;
    transition: background 0.15s;
}

.nav-menu.mobile-open a:hover,
.nav-menu.mobile-open a:active {
    background: rgba(131, 109, 212, 0.1);
}

.nav-menu.mobile-open a.prime_button {
    text-align: center;
    margin-top: 8px;
    padding: 12px 20px !important;
    border-radius: 8px;
}

.nav-menu.mobile-open a.ghost_button {
    text-align: center;
    margin-top: 4px;
    padding: 12px 18px !important;
    border-radius: 8px;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    padding: 4px 6px;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.nav-menu a.ghost_button,
.nav-menu a.prime_button {
    padding: revert;
}

.ghost_button {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 18px !important;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.prime_button {
    background: #2187ff;
    border-radius: 4px;
    padding: 8px 20px !important;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.prime_button:hover { background: #1a6fd6; }

.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    -webkit-tap-highlight-color: transparent;
}

.navbar-toggler span {
    display: block;
    height: 2.5px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler span:nth-child(1) { width: 26px; }
.navbar-toggler span:nth-child(2) { width: 20px; }
.navbar-toggler span:nth-child(3) { width: 14px; }

.navbar-toggler.active span:nth-child(1) {
    width: 22px;
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.navbar-toggler.active span:nth-child(3) {
    width: 22px;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.content {
    padding-top: 95px;
    overflow: visible;
}

.main {
    position: relative;
    padding-bottom: 0;
    overflow: visible;
    margin-top: -95px;
    padding-top: 95px;
}

.home .main {
    margin-bottom: 0;
}

.main:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(251.55deg, rgba(254, 88, 88, .74) 1.8%, rgba(0, 0, 0, 0) 48.64%), linear-gradient(74.55deg, rgba(254, 61, 0, .42) .8%, rgba(0, 0, 0, 0) 34.56%), linear-gradient(110.97deg, #0094ff .98%, rgba(0, 0, 0, 0) 49.84%), linear-gradient(108.51deg, #5320e2 50.35%, #49f4ff 100.3%);
    z-index: -1;
    opacity: .5;
}




.main .wrapper {
    padding: 90px 10px 320px;
    position: relative;
    z-index: 2;
}

.main .heading {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 20px;
}

.main h5 {
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -290px;
    padding: 0 20px;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
}


.hero-platforms-section {
    position: relative;
    z-index: 1;
    padding: 40px 0 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}


.hero-stat .num {
    font-family: 'Saira', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.hero-stat .label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2187ff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover { background: #1a6fd6; transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.hero-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.hero-platforms-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-platforms-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hero-platforms-icons svg {
    flex-shrink: 0;
}

/* ===================== MAIL FEATURE ===================== */
.mail-feature {
    padding-top: 40px;
}

.mail-feature .heading {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.mail-feature .heading h3 {
    margin-bottom: 25px;
}

.mail-feature .block {
    padding: 50px 0;
}

.mail-feature .block:nth-child(odd) {
    background-color: #22173d;
}

.mail-feature .block .wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mail-feature .block .text svg.feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 26px;
}

.mail-feature .block .text h4 {
    margin-bottom: 20px;
}

.mail-feature .block .text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 26px;
}

.mail-feature .block .image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.cta-block {
    text-align: center;
    margin-top: 50px;
}

.cta-block a {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.cta-block a:hover { background: rgba(255,255,255,0.05); }

/* ===================== PROVIDERS SECTION ===================== */
.providers-section {
    padding: 80px 0;
    background: #170f2c;
}

.providers-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.providers-section > .wrapper > p {
    text-align: center;
    color: rgba(255,255,255,0.6);
    margin-bottom: 50px;
    font-size: 16px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 50px;
}

.provider-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
}

.provider-card:hover {
    border-color: rgba(131, 109, 212, 0.4);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.provider-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.provider-card-head svg, .provider-card-head img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.provider-card-head h6 {
    margin: 0;
    font-size: 15px;
    line-height: 19px;
}

.provider-card-head .badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    background: rgba(131, 109, 212, 0.2);
    color: #a29bfe;
    white-space: nowrap;
}

.provider-card p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================== FEATURES OVERVIEW CHIPS ===================== */
.features-overview {
    padding: 50px 0 60px;
    background: #1e143a;
}
.features-overview .wrapper {
    max-width: 1100px;
    padding: 0 20px;
}
.features-overview h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.feature-chips .chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: rgba(131,109,212,0.08);
    border: 1px solid rgba(131,109,212,0.18);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
}
.feature-chips .chip::before {
    content: '✓';
    color: #00d68f;
    font-weight: 700;
    margin-right: 7px;
    font-size: 12px;
}

/* ===================== COMPARISON TABLE ===================== */

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.comparison-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead th {
    background: rgba(131, 109, 212, 0.15);
    padding: 14px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a29bfe;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    text-align: left;
    min-width: 180px;
}

.comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #fff;
}

.comparison-table tbody tr:hover {
    background: rgba(131, 109, 212, 0.05);
}

.comparison-table .check { color: #00d68f; font-size: 18px; }
.comparison-table .cross { color: rgba(255,255,255,0.15); font-size: 18px; }
.comparison-table .star { color: #f0932b; font-size: 14px; }
.comparison-table .unlimited { color: #00d68f; font-weight: 600; font-size: 12px; }
.comparison-table .premium { 
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.comparison-table .highlight-col {
    background: rgba(131, 109, 212, 0.06);
}

.table-note {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* --- Sticky first column for mobile tables --- */
@media only screen and (max-width: 999px) {
    .comparison-table thead th:first-child,
    .comparison-table tbody td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        background: #22173d;
        border-right: 1px solid rgba(131,109,212,0.2);
    }
    .comparison-table thead th:first-child {
        background: #2a1c4a;
        z-index: 3;
    }
    .compare-competitors thead th:first-child,
    .compare-competitors tbody td:first-child {
        background: #170f2c;
    }
    .compare-competitors thead th:first-child {
        background: #1e143a;
        z-index: 3;
    }
    .compare-competitors tbody tr:hover td:first-child {
        background: #1e143a;
    }
    .table-scroll {
        position: relative;
        scroll-snap-type: x proximity;
    }
    .table-scroll::after {
        content: '← Swipe to compare →';
        display: block;
        text-align: center;
        font-size: 11px;
        color: rgba(255,255,255,0.25);
        padding: 10px 0 0;
        letter-spacing: 0.5px;
    }
}

/* ===================== CAL FEATURE ===================== */
.cal-feature {

	background: #170f2c;
	background-size: 600px 600px;
    padding: 50px 0;
}

.cal-feature .wrapper {
    max-width: 500px;
    padding: 0 10px;
}

.cal-feature .block {
    margin-bottom: 40px;
}

.cal-feature .block1 {
    margin-bottom: 50px;
}

.cal-feature .block1 .left {
    margin-bottom: 30px;
}

.cal-feature .block1 .left h2 {
    font-size: 40px;
    line-height: 46px;
}

.cal-feature .block1 .right img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cal-feature .block1 .text {
    padding: 0;
}

.cal-feature .block3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.green-box, .maroon-box, .blue-box, .yellow-box, .light_green-box, .purple-box {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.green-box { background: linear-gradient(180deg, #d4f4dd 0%, #bfefd0 100%); }
.maroon-box { background: linear-gradient(180deg, #ffd6e7 0%, #ffb3d9 100%); }
.blue-box { background: linear-gradient(180deg, #d6edff 0%, #b3e0ff 100%); }
.yellow-box { background: linear-gradient(180deg, #fff5cc 0%, #ffecb3 100%); }
.light_green-box { background: linear-gradient(180deg, #e8f9d6 0%, #d6f5b3 100%); }
.purple-box { background: linear-gradient(180deg, #e8dbff 0%, #d6c4ff 100%); }

.green-box img, .maroon-box img, .blue-box img, .yellow-box img, .light_green-box img, .purple-box img {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.green-box .text, .maroon-box .text, .blue-box .text, .yellow-box .text, .light_green-box .text, .purple-box .text {
    padding: 20px;
}

.cal-feature .block4 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.cal-feature .block4 .text-block h2 {
    font-size: 40px;
    line-height: 46px;
}

.cal-feature .block5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cal-feature h6 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.cal-feature p {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.cal-feature .block1 h6 { color: #fff; }
.cal-feature .block1 p { color: rgba(255,255,255,0.8); }

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid {
    padding: 60px 0;
    background: #170f2c;
}

.testimonial-grid h3 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-grid .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    padding: 0 20px;
}

.testimonial-grid .tblock {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
}

.testimonial-grid .tblock p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

.testimonial-grid .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-grid .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(131, 109, 212, 0.3);
}

.testimonial-grid .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.testimonial-grid .stars svg {
    width: 14px;
    height: 14px;
    fill: #f0932b;
}

.testimonial-grid .author strong {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
}

.testimonial-grid .author small {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* ===================== LEARN MORE ===================== */
.learn_more {
    background: linear-gradient(135deg, #6c5ce7 0%, #836dd4 50%, #5320e2 100%);
    padding: 80px 20px;
    text-align: center;
}

.learn_more h2 { margin-bottom: 15px; }
.learn_more h5 { margin-bottom: 30px; color: rgba(255,255,255,0.85); }

.cta-container a {
    display: inline-block;
    background: #fff;
    color: #6c5ce7;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s;
}

.cta-container a:hover { transform: translateY(-2px); }

/* ===================== FAQ ===================== */
.faq {
    padding: 60px 20px;
	background: #170f2c;
	background-size: 600px 600px;
}

.faq-page {
    padding-top: 140px;
}

.faq-section-title {
    color: #a29bfe;
    margin: 40px 0 20px;
    font-size: 22px;
}

.faq .wrapper {
    max-width: 950px;
}

.faq h3 {
    margin-bottom: 40px;
    text-align: center;
}

.faq-card {
    border-bottom: 1px solid rgba(225,225,225,0.15);
    padding: 22px 0;
}

.faq-acordion-btn {
    border: 0;
    background: transparent;
    color: #fefefe;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
    gap: 15px;
    cursor: pointer;
    font-family: inherit;
}

.faq-acordion-btn::after {
    content: "+";
    font-size: 24px;
    flex-shrink: 0;
    color: #836dd4;
}

.faq-acordion-btn.active::after { content: "−"; }

.collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapse.show {
    max-height: 1200px;
}

.card-body {
    background: transparent;
    font-size: 16px;
    line-height: 26px;
    padding: 15px 0 0;
    color: rgba(255,255,255,0.7);
}

/* ===================== FOOTER ===================== */
footer {
    background: #0e0a1c;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
}

footer .logo img, footer .logo svg {
    height: 45px;
    margin-bottom: 12px;
}

footer p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 22px;
}

footer .footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

footer .footer-col h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: color 0.2s;
}

footer ul li a:hover { color: #fff; }

footer .footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-bottom p {
    margin: 0;
    font-size: 13px;
}

/* ===================== FLOATING ===================== */
.floating {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.floating a {
    padding: 12px 40px;
    width: 100%;
    background-color: #836dd4;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 600;
}

/* Add bottom padding to body for floating CTA on mobile */
body { padding-bottom: 50px; }

/* ===================== TERMS PAGE ===================== */
.page-content {
    padding: 140px 20px 80px;
}

.page-content .wrapper {
    max-width: 800px;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.page-content h4 {
    margin-top: 30px;
    color: #a29bfe;
}

.page-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-size: 16px;
}

.page-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-content ul li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-size: 16px;
}

/* ===================== COMPARE PAGE ===================== */
.compare-hero {
    padding: 60px 20px 40px;
    text-align: center;
}

.compare-hero h1 {
    font-size: 36px;
    line-height: 42px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.compare-hero h5 {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.7);
}

.compare-table-section {
    padding: 0 0 60px;
}

.compare-table-section .wrapper {
    max-width: 1100px;
    padding: 0 20px;
}

.compare-competitors {
    min-width: 900px;
}

.compare-competitors thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.compare-competitors .highlight-col {
    background: rgba(131, 109, 212, 0.08);
}

.compare-competitors thead th.highlight-col {
    background: rgba(131, 109, 212, 0.25);
    color: #fff;
}

.compare-section-header {
    background: rgba(131, 109, 212, 0.08);
    font-weight: 700;
    color: #a29bfe;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 16px;
}

.highlight-value {
    color: #00d68f;
}

.text-accent {
    color: #a29bfe;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.badge-green {
    background: rgba(0, 214, 143, 0.15);
    color: #00d68f;
}

.cta-block-spaced {
    margin-top: 40px;
}

.tg-support-link {
    color: #26a5e4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tg-support-link:hover {
    color: #4dc1f0;
}

/* ===================== DASHBOARD ===================== */


/* ===================== RESPONSIVE ===================== */

/* --- Very small screens (phones ≤ 480px) --- */
@media only screen and (max-width: 480px) {
    h1 { font-size: 32px; line-height: 38px; letter-spacing: -0.5px; margin-bottom: 20px; }
    h2 { font-size: 28px; line-height: 34px; margin-bottom: 16px; }
    h3 { font-size: 24px; line-height: 30px; }
    h4 { font-size: 20px; line-height: 26px; }
    h5 { font-size: 16px; line-height: 24px; margin-bottom: 20px; }
    body { font-size: 16px; line-height: 22px; }

    .main .wrapper { padding: 60px 16px 240px; }
    .main .heading { margin: 0 auto 16px; }
    .hero-image-wrapper { margin-top: -220px; padding: 0 10px; }

    .hero-buttons { gap: 10px; }
    .btn-primary, .btn-outline { padding: 12px 22px; font-size: 15px; }

    .hero-platforms-label { font-size: 11px; }
    .hero-platforms-icons svg { width: 22px; height: 22px; }

    .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .provider-card { padding: 14px; }

    .mail-feature .heading { padding: 0 16px; }
    .mail-feature .block { padding: 35px 0; }
    .mail-feature .block .wrapper { gap: 16px; padding: 0 16px; }
    .mail-feature .block .text p { font-size: 14px; line-height: 22px; }

    .cal-feature .wrapper { padding: 0 16px; }

    .features-overview { padding: 35px 0 40px; }
    .features-overview h4 { font-size: 11px; letter-spacing: 1px; margin-bottom: 16px; }
    .feature-chips { gap: 6px; }
    .feature-chips .chip { padding: 5px 10px; font-size: 11px; }

    .testimonial-grid .wrapper { padding: 0 10px; gap: 14px; }
    .testimonial-grid .tblock { min-width: 260px; padding: 20px; }

    .learn_more { padding: 50px 16px; }
    .learn_more h2 { font-size: 26px; line-height: 32px; }
    .cta-container a { padding: 14px 30px; font-size: 16px; }

    .faq { padding: 50px 12px; }
    .faq-acordion-btn { font-size: 16px; line-height: 24px; gap: 10px; }
    .card-body { font-size: 14px; line-height: 23px; }

    footer { padding: 30px 16px 16px; }
    footer .footer-links { gap: 24px 30px; }

    .compare-hero h1 { font-size: 26px; line-height: 32px; }
    .compare-hero h5 { font-size: 15px; }
    .compare-table-section .wrapper { padding: 0 10px; }

    .page-content { padding: 120px 16px 60px; }
    .faq-page { padding-top: 110px; }
    .page-content h1 { font-size: 28px; }

    header .announcement-bar .wrapper { padding: 6px 14px; gap: 8px; flex-wrap: nowrap; }
    header .announcement-bar p { font-size: 11px; line-height: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    header .announcement-bar p strong { font-weight: 600; }
    header .announcement-bar .read-more { padding: 4px 10px; font-size: 10px; flex-shrink: 0; white-space: nowrap; }
}

/* --- Small phones to tablets (481-679px) --- */
@media only screen and (min-width: 481px) and (max-width: 679px) {
    h1 { font-size: 38px; line-height: 44px; }
    h2 { font-size: 34px; line-height: 40px; }
    h3 { font-size: 30px; line-height: 36px; }

    .main .wrapper { padding: 70px 16px 280px; }
    .hero-image-wrapper { margin-top: -260px; }
    .provider-grid { grid-template-columns: repeat(2, 1fr); }

    header .announcement-bar .wrapper { padding: 7px 16px; flex-wrap: nowrap; }
    header .announcement-bar p { font-size: 12px; line-height: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    header .announcement-bar .read-more { flex-shrink: 0; }
}

@media only screen and (min-width: 500px) {
    body { padding-bottom: 0; }
    .floating {
        bottom: unset;
        top: 40%;
        left: unset;
        right: 0;
        width: auto;
        writing-mode: vertical-lr;
        transform: rotate(-180deg);
    }
    .floating a {
        padding: 30px 10px;
        border-radius: 0 10px 10px 0;
    }
}

@media only screen and (min-width: 680px) {
    .wrapper { max-width: 640px; }
    .content { padding-top: 100px; }
    .provider-grid { grid-template-columns: repeat(3, 1fr); }
    .main .wrapper { padding: 80px 16px 300px; }
    .hero-image-wrapper { margin-top: -270px; }
}

@media only screen and (min-width: 1000px) {
    .wrapper { max-width: 800px; }
    h1 { font-size: 60px; line-height: 64px; letter-spacing: -3px; }
    h3 { font-size: 39px; line-height: 45px; }
    h4 { font-size: 28px; line-height: 34px; }
    h5 { font-size: 22px; line-height: 32px; }

    .content { padding-top: 100px; }
    .nav-menu { display: flex; position: static; flex-direction: row; background: none; padding: 0; border: none; gap: 15px; }
    .nav-menu.mobile-open { position: static; flex-direction: row; background: none; padding: 0; border: none; }
    .navbar-toggler { display: none !important; }
    .main { padding-bottom: 0; }
    .home .main { margin-bottom: 0; }
    .main .wrapper { padding-top: 60px; }
    .mail-feature .heading { max-width: 950px; }
    .mail-feature .block { padding: 70px 0; }
    .mail-feature .block .wrapper { flex-direction: row; gap: 40px; }
    .mail-feature .block:nth-child(odd) .wrapper { flex-direction: row-reverse; }
    .mail-feature .block .image { flex-basis: 900px; }
    .mail-feature .block .text { flex-basis: 450px; }

    .cal-feature { padding: 70px 0; }
    .cal-feature .wrapper { max-width: 1000px; }
    .cal-feature .block { margin-bottom: 60px; }
    .cal-feature .block1 { display: flex; flex-direction: row; align-items: flex-start; gap: 60px; margin-bottom: 70px; }
    .cal-feature .block1 .left { flex: 1; margin-bottom: 0; }
    .cal-feature .block1 .right { flex: 1; }
    .cal-feature .block3, .cal-feature .block5 { flex-direction: row; gap: 30px; margin-bottom: 70px; }
    .cal-feature .block4 { flex-direction: row; align-items: flex-start; gap: 60px; margin-bottom: 70px; }
    .cal-feature .block4 .blue-box { flex: 1; }
    .cal-feature .block4 .text-block { flex: 1; }
    .green-box, .maroon-box, .yellow-box, .light_green-box, .purple-box { flex: 1; }

    .provider-grid { grid-template-columns: repeat(4, 1fr); }
    .providers-section .wrapper { max-width: 1000px; }

    .compare-table-section .wrapper { max-width: 1100px; }
    .compare-hero h1 { font-size: 48px; line-height: 54px; }

    footer .wrapper { flex-direction: row; justify-content: space-between; }

    .floating a { padding: 30px 14px; font-size: 20px; line-height: 24px; }
}

@media only screen and (min-width: 1300px) {
    .wrapper { max-width: 1000px; }
    .providers-section .wrapper { max-width: 1200px; }
    .provider-grid { grid-template-columns: repeat(5, 1fr); }
}

@media screen and (min-width: 1600px) {
    .wrapper { max-width: 1220px; }
    .mail-feature .heading { max-width: 1220px; }
    .mail-feature .block .image { flex-basis: 966px; margin-right: -50px; }
    .mail-feature .block .text { flex-basis: 350px; }
    .mail-feature .block:nth-child(odd) .image { margin-left: -50px; margin-right: 0; }
    .cal-feature .wrapper { max-width: 1220px; }
    .providers-section .wrapper { max-width: 1350px; }
    .features-overview .wrapper { max-width: 1300px; }
    .provider-grid { grid-template-columns: repeat(5, 1fr); }
}

@media only screen and (min-width: 1900px) {
    body { font-size: 20px; line-height: 28px; }
    h1 { font-size: 70px; line-height: 74px; }
    h3 { font-size: 50px; line-height: 56px; }
    h4 { font-size: 32px; line-height: 38px; }
    h5 { font-size: 22px; line-height: 32px; }
    h6 { font-size: 22px; line-height: 30px; }
    .providers-section .wrapper { max-width: 1500px; }
    .provider-grid { grid-template-columns: repeat(7, 1fr); }
}
