/* =============================================
   PumpPOS Marketing Website — Design System
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-primary-rgb: 37, 99, 235;
    --color-secondary: #10b981;
    --color-secondary-rgb: 16, 185, 129;
    --color-danger: #ef4444;
    --color-warning: #f59e0b;
    --color-info: #06b6d4;
    --color-bg: #ffffff;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    --color-bg-card: #ffffff;
    --color-bg-card-dark: #1e293b;
    --color-text: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-light: #94a3b8;
    --color-border: #e2e8f0;
    --color-border-dark: #334155;
    --section-padding: 100px 0;
    --card-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Basics ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- RTL Support ---------- */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .cta-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    direction: rtl;
}

[dir="rtl"] .pricing-features li i {
    margin-right: 0;
    margin-left: 10px;
}

/* ---------- Typography ---------- */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff, #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-success {
    color: var(--color-secondary) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 10px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-secondary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-primary);
}

.navbar.scrolled .logo {
    color: var(--color-text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .lang-toggle {
    border-color: var(--color-border);
    color: var(--color-text);
}

.navbar.scrolled .lang-toggle:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--color-text);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a4e 40%, var(--color-primary-dark) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(var(--color-primary-rgb), 0.25) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(var(--color-secondary-rgb), 0.15) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 32px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-platforms {
    margin-top: 28px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}


/* ---------- Hero Infographic Slider ---------- */
.hero-slider {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    aspect-ratio: 16 / 9;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    background: #0f172a;
    width: 100%;
    height: 100%;
}


.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-swiper-pagination {
    bottom: 12px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.55);
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.4);
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 560px;
    border-radius: 20px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Device Mockup */
.device-mockup {
    perspective: 1200px;
}

.mockup-screen {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotateY(-8deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-screen:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #0f172a;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.mockup-content {
    padding: 20px;
}

.mock-bar {
    height: 32px;
    background: #334155;
    border-radius: 8px;
    margin-bottom: 16px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mock-card {
    height: 64px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.3), rgba(var(--color-secondary-rgb), 0.2));
    border-radius: 10px;
}

.mock-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-row {
    height: 24px;
    background: #334155;
    border-radius: 6px;
    opacity: 0.6;
}

.mock-row:nth-child(even) {
    opacity: 0.4;
    width: 85%;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--color-primary);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* ---------- Sections ---------- */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--color-bg-dark);
    color: #fff;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark h3 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.6);
}

.section-gradient {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a1a4e 50%, var(--color-bg-dark) 100%);
    color: #fff;
}

.section-gradient .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-gradient h3,
.section-gradient p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-top: 16px;
    line-height: 1.8;
}

/* ---------- Platforms Custom Layout ---------- */
.section-platforms {
    background: radial-gradient(circle at center, #1f2937 0%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.platforms-header {
    text-align: center;
    margin-bottom: 50px;
}

.platforms-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    letter-spacing: -0.01em;
}

.platforms-header h2 span {
    color: #f8fafc;
}

.platforms-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 16px auto 0;
    font-weight: 400;
}

.platforms-visual {
    text-align: center;
    margin-bottom: 60px;
}

.platforms-img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    transition: var(--transition);
}

.platforms-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pf-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pf-icon .fa-bolt {
    color: #f97316;
}

.pf-icon .fa-mobile-screen-button {
    color: #f97316;
}

.pf-icon .fa-cloud {
    color: #3b82f6;
}

.pf-icon .fa-circle-half-stroke {
    color: #f97316;
}

.pf-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 4px;
}

.pf-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
    display: grid;
    gap: 24px;
}

.cards-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

/* ---------- Features Custom Layout ---------- */
.section-features {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: -0.01em;
}

.features-header p {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 16px auto 0;
    font-weight: 400;
}

.features-layout {
    display: grid;
    grid-template-columns: 10fr 8fr 7fr;
    gap: 40px;
    align-items: center;
}

.features-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: var(--transition);
}

.tank-img {
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ui-img {
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.features-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fl-icon {
    font-size: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.fl-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.fl-text p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.card {
    padding: 32px;
    border-radius: var(--card-radius);
    transition: var(--transition);
}

/* ---------- Accounting Custom Layout ---------- */
.section-accounting {
    background-color: #0b111e;
    /* Extremely dark blue approximating the slide background */
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.accounting-header {
    text-align: center;
    margin-bottom: 70px;
}

.accounting-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.accounting-header h2 span {
    color: #fff;
    /* Title accent is just white in slide */
}

.accounting-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 16px auto 0;
    font-weight: 300;
}

.accounting-layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 20px;
    align-items: center;
}

.accounting-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 20px;
}

.al-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.al-bullet {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    /* Slide's bright blue dot */
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 10px #3b82f6;
}

.al-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.al-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 400;
}

.accounting-visual {
    text-align: center;
}

.accounting-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: var(--transition);
    /* Image already has background, blending it naturally */
}

/* ---------- Security Custom Layout ---------- */
.section-security {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.security-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.security-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.security-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-top: 10px;
    font-weight: 400;
}

.security-layout {
    display: grid;
    grid-template-columns: 8fr 6fr;
    gap: 50px;
    align-items: center;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sl-bullet {
    width: 14px;
    height: 14px;
    background-color: #3b82f6;
    /* Slide's bright blue dot */
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    border: 3px solid rgba(59, 130, 246, 0.3);
    /* Adds the dark ring effect around the neon blue dot */
    background-clip: padding-box;
}

.sl-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: inline-block;
}

.sl-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-weight: 300;
    display: inline;
}

.security-visual {
    position: relative;
}

.security-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: var(--transition);
}

.security-img.shadow-glow {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.security-img:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    margin: 16px 0 10px;
}

.card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.card-elevated {
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.card-elevated:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-glass p {
    color: rgba(255, 255, 255, 0.6);
}

.card-glass-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.card-glass-light:hover {
    background: rgba(255, 255, 255, 0.14);
}

.card-glass-light h3 {
    color: #fff;
}

.card-glass-light p {
    color: rgba(255, 255, 255, 0.7);
}

.card-stat {
    background: #fff;
    border: 1px solid var(--color-border);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Icons */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-icon.primary {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
}

.card-icon.success {
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
}

.card-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.card-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.card-icon.info {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-info);
}

.card-icon.muted {
    background: rgba(100, 116, 139, 0.1);
    color: var(--color-text-secondary);
}

.card-glass-light .card-icon,
.section-gradient .card-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---------- Comparison Table ---------- */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
}

[dir="rtl"] .comparison-table td:first-child,
[dir="rtl"] .comparison-table th:first-child {
    text-align: right;
}

.comparison-table .highlight {
    background: rgba(var(--color-primary-rgb), 0.08);
}

.comparison-table th.highlight {
    background: rgba(var(--color-primary-rgb), 0.15);
    color: var(--color-primary-light);
}

.comparison-table td {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-table td i {
    font-size: 1.2rem;
}

/* ---------- CTA Section ---------- */
.section-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #1a1a4e 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin: 16px 0 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-secondary {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.cta-link:hover {
    color: #fff;
}

.cta-link i {
    font-size: 1.1rem;
}

/* ---------- Pricing Page ---------- */
.pricing-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a4e 40%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 140px 0 60px;
}

.pricing-hero .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.toggle-label.active {
    color: #fff;
}

.save-badge {
    background: var(--color-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Toggle Switch */
.switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    transition: var(--transition);
}

.switch .slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.switch input:checked+.slider {
    background: var(--color-primary);
}

.switch input:checked+.slider::before {
    transform: translateX(24px);
}

.pricing-cards-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.15);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.pricing-card-header p {
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.pricing-card-price {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card-price .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.pricing-card-price .amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text);
    line-height: 1;
}

.pricing-card-price .period {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.pricing-features li i {
    color: var(--color-secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.trust-item i {
    color: var(--color-primary);
}

/* ---------- FAQ ---------- */
.faq-container {
    max-width: 750px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: inherit;
    font-family: inherit;
    gap: 16px;
}

.faq-question i {
    transition: var(--transition);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-brand .logo {
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .platforms-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-visual-left,
    .features-visual-right {
        order: -1;
        /* Alternatively, just let them flow naturally, but we probably want text visible or images stacked. Let's keep natural order but maybe constrain width */
        max-width: 500px;
        margin: 0 auto;
    }

    .features-visual-right {
        order: 3;
    }

    .features-list {
        order: 2;
    }

    .accounting-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-visual {
        order: 2;
        margin: 0 auto;
        max-width: 600px;
    }

    .security-list {
        order: 3;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-layout.reverse .split-content {
        order: unset;
    }

    .split-layout.reverse .split-visual {
        order: unset;
    }

    .cards-grid.four {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--color-text) !important;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .hamburger {
        display: flex;
    }

    .btn-sm {
        display: none;
    }

    .platforms-features {
        grid-template-columns: 1fr;
    }

    .cards-grid.three,
    .cards-grid.four,
    .cards-mini-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .cta-secondary {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ---------- Trusted Clients ---------- */
.section-clients {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 100px 0 80px;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.clients-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.clients-marquee {
    overflow: hidden;
    padding: 12px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.clients-track-left {
    animation: marqueeLeft 40s linear infinite;
}

.clients-track-right {
    animation: marqueeRight 45s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.client-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.client-card:hover {
    background: rgba(var(--color-primary-rgb), 0.15);
    border-color: rgba(var(--color-primary-rgb), 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.15);
}

.client-icon {
    font-size: 1.2rem;
}

.client-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

.clients-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.clients-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.2), rgba(var(--color-secondary-rgb), 0.15));
    border: 1px solid rgba(var(--color-primary-rgb), 0.25);
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.clients-trust-badge i {
    color: var(--color-warning);
    font-size: 1.2rem;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.card,
.stat-item,
.pricing-card {
    opacity: 0;
    transform: translateY(20px);
}

.card.visible,
.stat-item.visible,
.pricing-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* ---------- Urdu Slider Layout ---------- */
.urdu-slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
}

.urdu-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.urdu-slide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-bottom: 2px solid #1a1a1a;
}

.urdu-slide-img {
    width: 100%;
    display: block;
    height: auto;
}

/* ---------- Urdu Full Width Slider ---------- */
.urdu-hero-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.urdu-hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.urdu-hero-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.urdu-hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Custom Swiper Controls */
.urdu-hero-slider .swiper-button-next,
.urdu-hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.urdu-hero-slider .swiper-button-next:hover,
.urdu-hero-slider .swiper-button-prev:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}

.urdu-hero-slider .swiper-button-next::after,
.urdu-hero-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.urdu-hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}

.urdu-hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Fix the slider height problem */
.urdu-hero-slider {
    margin-top: 80px;
    height: calc(100vh - 80px);
    /* Fill the viewport minus the navbar */
    min-height: 500px;
    max-height: calc(100vh - 80px);
    /* Strictly constrain height */
}

.urdu-hero-slider .swiper {
    width: 100%;
    height: 100%;
    /* Important: Swiper needs a definitive height */
}

.urdu-hero-slider .swiper-slide {
    height: 100%;
    /* Important: Slides must match Swiper height */
}

/* Make sure footer comes right underneath */
.urdu-slider-container+footer {
    margin-top: 0;
}

/* ---------- Help Center Modal & FAB ---------- */
.fab-help {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 900;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-help:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--color-primary-dark);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-danger);
}

.modal-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
    margin-bottom: 8px;
    color: var(--color-primary);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

html[dir="rtl"] .fab-help {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 16px;
}
/* ---------- Navigation Dropdown ---------- */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--color-text-secondary) !important;
    font-size: 0.88rem !important;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu a i {
    width: 24px;
    font-size: 1rem;
    color: var(--color-primary);
    text-align: center;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: var(--color-primary) !important;
    transform: translateX(5px);
}

/* RTL Dropdown */
[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .dropdown-menu a:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .dropdown-toggle i {
    margin-left: 0;
    margin-right: 4px;
}

/* Navbar Scrolled Dropdown */
.navbar.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

/* ---------- Features Page Styles ---------- */
.features-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a4e 100%);
    padding: 160px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.features-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 70%);
}

.feature-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--color-border);
}

.feature-section:nth-child(even) {
    background: #f8fafc;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.feature-content h2 {
    margin-bottom: 16px;
}

.feature-surtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feature-points {
    list-style: none;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.feature-points li i {
    color: var(--color-secondary);
    font-size: 0.8rem;
}

.feature-visual img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.feature-visual img:hover {
    transform: translateY(-10px);
}

.feature-section:nth-child(even) .feature-grid {
    direction: ltr; /* Ensure grid stays standard for flip */
}

.feature-section:nth-child(even) .feature-grid .feature-content {
    grid-column: 2;
}

.feature-section:nth-child(even) .feature-grid .feature-visual {
    grid-column: 1;
    grid-row: 1;
}

/* RTL Page support */
[dir="rtl"] .feature-section:nth-child(even) .feature-grid .feature-content {
    grid-column: 1;
}

[dir="rtl"] .feature-section:nth-child(even) .feature-grid .feature-visual {
    grid-column: 2;
}


/* Comparison Table for Features */
.comparison-section {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: #fff;
}

.features-comparison .comparison-table {
    background: rgba(255,255,255,0.03);
}

.features-comparison .comparison-table th,
.features-comparison .comparison-table td {
    border-color: rgba(255,255,255,0.05);
}

