:root {
    --primary: #14919b;
    --primary-dark: #0d7a83;
    --primary-light: #52c4cf;
    --accent: #323e4d;
    --accent-light: #4b5a6d;
    --emerald: #10b981;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --violet: #7c3aed;
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(14, 165, 233, 0.2);
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.8);
    --text: #323e4d;
    --text-muted: #5a6a7c;
    --text-faint: #8191a5;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 10px 40px rgba(20, 145, 155, 0.05), 0 2px 10px rgba(20, 145, 155, 0.02);
    --shadow-lg: 0 20px 50px rgba(20, 145, 155, 0.08);
    --shadow-glow: 0 0 40px rgba(20, 145, 155, 0.1);
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .01em
}

.btn .material-icons-round {
    font-size: 18px
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 10px
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 14px
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(20, 145, 155, .25)
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 8px 25px rgba(20, 145, 155, .4), 0 0 15px rgba(20, 145, 155, .1)
}

.btn-outline {
    background: 0 0;
    color: var(--primary);
    border: 2px solid rgba(20, 145, 155, .4)
}

.btn-outline:hover {
    border-color: var(--primary-dark);
    background: rgba(20, 145, 155, .05);
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.btn-glass {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.btn-glass:hover {
    background: rgba(14, 165, 233, .08);
    border-color: rgba(14, 165, 233, .2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05)
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition)
}

.glass-card:hover {
    background: #fff;
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.w-full {
    width: 100%;
    justify-content: center
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    transition: var(--transition);
    cursor: pointer
}

.store-btn:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow)
}

.store-btn .material-icons-round {
    font-size: 22px
}

.store-btn svg {
    width: 20px;
    height: 20px
}

.store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.store-btn div span {
    font-size: 10px;
    opacity: .7
}

.store-btn div strong {
    font-size: 14px;
    font-weight: 700
}

.store-btn.small {
    padding: 8px 14px
}

.store-btn.small div strong {
    font-size: 13px
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(14, 165, 233, .12);
    border: 1px solid rgba(14, 165, 233, .25);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: var(--transition)
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .03)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text)
}

.logo-img {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(20, 145, 155, .15))
}

.logo:hover .logo-img {
    transform: scale(1.05)
}

.logo-accent {
    color: var(--primary-light)
}

.logo-ai {
    font-size: 11px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: .05em
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links a {
    padding: 8px 14px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition)
}

.nav-links a:not(.btn):hover {
    color: var(--text);
    background: var(--bg-card)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition)
}

.premium-features {
    padding: 100px 0
}

.feature-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition)
}

.feature-link:hover {
    transform: translateX(4px);
    color: var(--primary)
}

.app-promo {
    padding: 100px 0;
    background: radial-gradient(circle at 70% 50%, rgba(14, 165, 233, .05), transparent 50%)
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px
}

.promo-image {
    position: relative;
    display: flex;
    justify-content: center
}

.phone-showcase {
    position: relative;
    width: 280px;
    border-radius: 40px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .08), 0 10px 30px rgba(0, 0, 0, .04)
}

.promo-phone-img {
    width: 100%;
    border-radius: 32px;
    display: block
}

.blog-preview {
    padding: 60px 0;
    border-top: 1px solid var(--border)
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px
}

.blog-grid-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

@media (max-width:1024px) {
    .blog-grid-mini {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .blog-grid-mini {
        grid-template-columns: 1fr
    }
}

.blog-card-mini {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0
}

.blog-img-mini {
    height: 200px;
    background-size: cover;
    background-position: center
}

.blog-content-mini {
    padding: 24px
}

.blog-content-mini time {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
    margin-bottom: 8px
}

.blog-content-mini h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.4
}

.blog-content-mini .read-more {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center
}

.badge-hipaa {
    background: rgba(16, 185, 129, .1) !important;
    border-color: rgba(16, 185, 129, .3) !important;
    color: var(--emerald) !important
}

.security-hl {
    padding: 60px 0
}

.security-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .03), rgba(139, 92, 246, .03));
    border: 1px solid var(--border)
}

.security-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.security-header .material-icons-round {
    font-size: 32px;
    color: var(--primary)
}

.security-content p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 32px
}

.security-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.s-badge {
    display: flex;
    flex-direction: column;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow)
}

.s-badge span {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px
}

.security-icon-large .material-icons-round {
    font-size: 120px;
    color: var(--primary-light);
    opacity: .15
}

@media (max-width:768px) {
    .security-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center
    }

    .security-header {
        justify-content: center
    }

    .security-icon-large {
        display: none
    }

    .security-badges {
        justify-content: center
    }
}

.footer {
    background: #f8fafc;
    border-top: 1px solid var(--border);
    color: var(--text)
}

.store-hero-links {
    display: flex;
    gap: 16px
}

@media (max-width:968px) {
    .promo-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px
    }

    .promo-image {
        order: -1
    }

    .section-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px
    }

    .store-hero-links {
        justify-content: center
    }
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .95)), url("hero-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 145, 155, .15), transparent 70%);
    top: -100px;
    left: -200px;
    animation: 8s ease-in-out infinite orbFloat
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(50, 62, 77, .12), transparent 70%);
    bottom: -80px;
    right: -100px;
    animation: 10s ease-in-out infinite reverse orbFloat
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent)
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(30px, -30px) scale(1.05)
    }
}

.hero-inner {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(14, 165, 233, .1);
    border: 1px solid rgba(14, 165, 233, .3);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: .6s both fadeInUp
}

.hero-badge .material-icons-round {
    font-size: 16px
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 54px);
    color: var(--text);
    margin-bottom: 20px;
    animation: .6s .1s both fadeInUp
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    animation: .6s .2s both fadeInUp
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    animation: .6s .3s both fadeInUp
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
    animation: .6s .4s both fadeInUp
}

.stat {
    text-align: center
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text)
}

.stat span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-devices {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 420px;
    animation: .8s .5s both fadeInUp
}

.device {
    position: absolute
}

.device-laptop {
    left: 0;
    bottom: 0;
    width: 75%
}

.laptop-screen {
    background: #0f172a;
    border-radius: 12px 12px 0 0;
    padding: 12px;
    border: 2px solid #1e293b;
    box-shadow: 0 0 0 1px #334155, 0 40px 80px rgba(0, 0, 0, .8), 0 0 40px rgba(14, 165, 233, .1)
}

.laptop-base {
    background: #1e293b;
    height: 14px;
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.laptop-notch {
    width: 60px;
    height: 6px;
    background: #0f172a;
    border-radius: 3px
}

.device-phone {
    right: 0;
    bottom: 30px;
    width: 24%;
    min-width: 140px;
    z-index: 2
}

.phone-body {
    background: #f8fafc;
    border-radius: 28px;
    border: 4px solid #e2e8f0;
    padding: 12px 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .1), 0 0 20px rgba(14, 165, 233, .03)
}

.phone-notch {
    width: 50px;
    height: 6px;
    background: #1e293b;
    border-radius: 4px;
    margin: 0 auto 10px
}

.phone-screen {
    overflow: hidden;
    border-radius: 18px
}

.mock-dashboard {
    display: flex;
    background: #0b1629;
    border-radius: 8px;
    height: 240px;
    overflow: hidden
}

.mock-dashboard.small {
    height: 260px
}

.mock-sidebar {
    width: 40px;
    background: #0d1f38;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mock-logo-dot {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    margin-bottom: 8px
}

.mock-nav-item {
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08)
}

.mock-nav-item.active {
    background: var(--primary)
}

.mock-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mock-title-bar {
    height: 8px;
    width: 45%;
    background: rgba(255, 255, 255, .15);
    border-radius: 4px
}

.mock-avatar {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    opacity: .6
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px
}

.mock-card {
    height: 50px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06)
}

.mock-card.c1 {
    border-top: 2px solid var(--primary)
}

.mock-card.c2 {
    border-top: 2px solid var(--emerald)
}

.mock-card.c3 {
    border-top: 2px solid var(--violet)
}

.mock-card.c4 {
    border-top: 2px solid var(--amber)
}

.mock-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1
}

.mock-row {
    height: 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06)
}

.mock-row.short {
    width: 70%
}

.mock-mobile {
    background: #0b1629;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 8px 6px;
    gap: 8px;
    min-height: 180px
}

.mock-mobile.large {
    min-height: 280px;
    padding: 14px 12px 8px;
    gap: 10px
}

.mob-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mob-title {
    height: 8px;
    width: 50%;
    background: rgba(255, 255, 255, .15);
    border-radius: 4px
}

.mob-icon {
    width: 20px;
    height: 20px;
    background: rgba(14, 165, 233, .3);
    border-radius: 8px
}

.mob-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, .2), rgba(139, 92, 246, .1));
    border-radius: 10px;
    height: 56px;
    border: 1px solid rgba(14, 165, 233, .2)
}

.mob-card.large-card {
    height: 80px
}

.mob-section-title {
    height: 6px;
    width: 40%;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px
}

.mob-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.mob-item {
    height: 28px;
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .05)
}

.mob-nav {
    display: flex;
    justify-content: space-around;
    padding: 6px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.mob-tab {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, .06);
    border-radius: 6px
}

.mob-tab.active {
    background: var(--primary)
}

.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .015)
}

.trust-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-faint);
    font-weight: 600;
    margin-bottom: 24px
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.trust-logo {
    color: var(--text-faint);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition)
}

.trust-logo:hover {
    color: var(--text-muted)
}

.features {
    padding: 100px 0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .02));
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition)
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow)
}

.feature-card:hover::before {
    opacity: 1
}

.card-highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, .08), rgba(139, 92, 246, .06));
    border-color: rgba(14, 165, 233, .2);
    grid-row: span 1
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px
}

.feature-icon .material-icons-round {
    font-size: 24px
}

.icon-ai {
    background: linear-gradient(135deg, rgba(14, 165, 233, .2), rgba(139, 92, 246, .15));
    color: var(--primary-light)
}

.icon-blue {
    background: rgba(96, 165, 250, .15);
    color: #60a5fa
}

.icon-violet {
    background: rgba(139, 92, 246, .15);
    color: var(--accent-light)
}

.icon-emerald {
    background: rgba(16, 185, 129, .15);
    color: #6ee7b7
}

.icon-amber {
    background: rgba(245, 158, 11, .15);
    color: #fcd34d
}

.icon-rose {
    background: rgba(244, 63, 94, .15);
    color: #fda4af
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text)
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(14, 165, 233, .1);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.platform {
    padding: 100px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.platform-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto
}

.platform-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    color: var(--text-muted);
    background: 0 0;
    transition: var(--transition)
}

.platform-tab .material-icons-round {
    font-size: 18px
}

.platform-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, .2)
}

.platform-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.platform-panel.active {
    display: grid
}

.platform-info h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px
}

.platform-info p {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px
}

.platform-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px
}

.platform-list .material-icons-round {
    font-size: 18px;
    color: var(--emerald)
}

.preview-browser {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #1e293b;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 0 1px #334155, 0 0 60px rgba(14, 165, 233, .08)
}

.browser-chrome {
    background: #1e293b;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.browser-dots {
    display: flex;
    gap: 5px
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
    display: block
}

.browser-dots span:first-child {
    background: #f43f5e
}

.browser-dots span:nth-child(2) {
    background: #f59e0b
}

.browser-dots span:last-child {
    background: #10b981
}

.browser-url {
    background: #0f172a;
    color: #64748b;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
    font-family: monospace
}

.browser-body {
    background: #0b1629
}

.phone-showcase {
    display: flex;
    justify-content: center
}

.showcase-phone {
    width: 200px
}

.showcase-phone .phone-screen {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px
}

.mobile-preview {
    display: flex;
    justify-content: center
}

.how-it-works {
    padding: 100px 0
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    position: relative
}

.step-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: rgba(14, 165, 233, .08);
    line-height: 1;
    margin-bottom: -10px
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(14, 165, 233, .1);
    border: 1px solid rgba(14, 165, 233, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-light)
}

.step-icon .material-icons-round {
    font-size: 28px
}

.step h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

.step-arrow {
    color: var(--text-faint);
    flex-shrink: 0
}

.step-arrow .material-icons-round {
    font-size: 28px
}

.pricing {
    border-top: 1px solid var(--border)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start
}

.pricing-card {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition)
}

.pricing-card:hover {
    border-color: var(--border-hover)
}

.card-popular {
    background: linear-gradient(135deg, rgba(14, 165, 233, .06), rgba(139, 92, 246, .04));
    border-color: rgba(14, 165, 233, .3);
    box-shadow: 0 0 0 1px rgba(14, 165, 233, .1), var(--shadow-glow)
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 8px
}

.plan-price {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 12px
}

.plan-price span {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted)
}

.plan-price em {
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    color: var(--text-muted)
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border)
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text)
}

.plan-features .material-icons-round {
    font-size: 18px;
    color: var(--emerald)
}

.plan-features li.disabled,
.plan-features li.disabled .material-icons-round {
    color: var(--text-faint)
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    gap: 0;
    margin-top: 20px
}

.billing-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: 0 0;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.billing-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, .35)
}

.save-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(16, 185, 129, .15);
    color: #6ee7b7;
    letter-spacing: .02em
}

.billing-btn.active .save-badge {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.plan-price .price-amount {
    font-style: normal
}

.plan-yearly-note {
    font-size: 13px;
    font-weight: 700;
    color: #6ee7b7;
    margin-bottom: 8px;
    margin-top: -4px
}

.testimonials {
    padding: 100px 0
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition)
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover)
}

.card-featured {
    background: linear-gradient(135deg, rgba(14, 165, 233, .06), rgba(139, 92, 246, .04));
    border-color: rgba(14, 165, 233, .25)
}

.stars {
    font-size: 18px;
    color: var(--amber);
    margin-bottom: 16px;
    letter-spacing: 2px
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: #fff
}

.a1 {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark))
}

.a2 {
    background: linear-gradient(135deg, var(--violet), var(--accent))
}

.a3 {
    background: linear-gradient(135deg, var(--emerald), #059669)
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text)
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted)
}

.blog {
    padding: 100px 0;
    border-top: 1px solid var(--border)
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition)
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow)
}

.blog-img {
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, #0d1f38, #1e293b);
    overflow: hidden
}

.blog-featured .blog-img {
    height: 240px
}

.blog-img-1 {
    background: linear-gradient(135deg, rgba(14, 165, 233, .3), rgba(139, 92, 246, .3)), linear-gradient(to br, #0d1f38, #1a0533)
}

.blog-img-2 {
    background: linear-gradient(135deg, rgba(16, 185, 129, .3), rgba(6, 95, 70, .3)), linear-gradient(to br, #021b11, #0a301e)
}

.blog-img-3 {
    background: linear-gradient(135deg, rgba(244, 63, 94, .25), rgba(139, 0, 30, .2)), linear-gradient(to br, #1a0010, #300020)
}

.blog-img-4 {
    background: linear-gradient(135deg, rgba(245, 158, 11, .25), rgba(180, 83, 9, .2)), linear-gradient(to br, #1a0a00, #2d1400)
}

.blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.blog-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px
}

.blog-chip {
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff
}

.blog-body {
    padding: 24px
}

.blog-meta {
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 10px
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4
}

.blog-card h3 a {
    color: inherit;
    transition: var(--transition)
}

.blog-card h3 a:hover {
    color: var(--primary-light)
}

.blog-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition)
}

.read-more .material-icons-round {
    font-size: 16px;
    transition: var(--transition)
}

.read-more:hover {
    color: var(--primary)
}

.read-more:hover .material-icons-round {
    transform: translateX(4px)
}

.blog-column {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.blog-small .blog-img {
    height: 100px
}

.blog-small .blog-body {
    padding: 16px
}

.blog-small h3 {
    font-size: 14px;
    margin-bottom: 6px
}

.blog-small p {
    font-size: 12px
}

.cta-banner {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(14, 165, 233, .08), transparent);
    border-top: 1px solid var(--border)
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, .12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.cta-inner {
    position: relative
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-store {
    padding: 12px 20px
}

.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border)
}

.footer-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding-bottom: 60px
}

.footer-brand .logo {
    margin-bottom: 16px
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px
}

.social-links {
    display: flex;
    gap: 10px
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition)
}

.social-links a .material-icons-round {
    font-size: 18px
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(14, 165, 233, .08)
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 20px
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col ul a {
    font-size: 14px;
    color: var(--text-faint);
    transition: var(--transition)
}

.footer-col ul a:hover {
    color: var(--primary-light)
}

.footer-store-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-faint)
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s, transform .6s
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .platform-panel.active {
        grid-template-columns: 1fr
    }

    .platform-preview {
        display: none
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(5, 12, 23, .98);
        backdrop-filter: blur(20px);
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
        gap: 8px
    }

    .hamburger,
    .nav-links.open {
        display: flex
    }

    .hero-devices {
        display: none
    }

    .blog-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .steps {
        flex-direction: column
    }

    .step-arrow {
        transform: rotate(90deg)
    }

    .footer-links {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch
    }

    .cta-actions {
        flex-direction: column;
        align-items: center
    }

    .hero-stats {
        gap: 12px
    }

    .stat-divider {
        display: none
    }
}

.pricing {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-subtle) 50%, var(--bg) 100%);
    overflow: hidden
}

.pricing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4
}

.pricing-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 145, 155, .12), transparent 70%);
    top: -150px;
    right: -100px
}

.pricing-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(50, 62, 77, .08), transparent 70%);
    bottom: -100px;
    left: -80px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
    align-items: start
}

.pricing-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.pricing-grid.four-col .pricing-card-inner {
    padding: 40px 32px
}

.pricing-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover)
}

.pricing-card-inner {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%
}

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(20, 145, 155, .08);
    border: 1px solid rgba(20, 145, 155, .15)
}

.pricing-icon .material-icons-round {
    font-size: 26px;
    color: var(--primary)
}

.pricing-icon.featured-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 8px 20px rgba(20, 145, 155, .3)
}

.pricing-icon.featured-icon .material-icons-round {
    color: #fff
}

.pricing-icon.business-icon {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: none;
    box-shadow: 0 8px 20px rgba(30, 41, 59, .25)
}

.pricing-icon.business-icon .material-icons-round {
    color: #fff
}

.pricing-header {
    text-align: left;
    margin-bottom: 24px
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px
}

.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

.price-block {
    margin-bottom: 24px
}

.price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.1
}

.price sup {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
    color: var(--text-muted)
}

.price small {
    font-size: 16px;
    color: var(--text-faint);
    font-weight: 500
}

.price.business-price {
    font-size: 42px;
    background: linear-gradient(135deg, var(--text), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.price-note {
    font-size: 13px;
    color: var(--text-faint);
    margin-top: 4px
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px
}

.pricing-features {
    margin-bottom: 32px;
    flex-grow: 1
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5
}

.pricing-features li strong {
    color: var(--text);
    font-weight: 700
}

.check-icon {
    font-size: 18px !important;
    color: var(--emerald) !important;
    flex-shrink: 0
}

.feature-excluded {
    opacity: .45
}

.feature-excluded .material-icons-round {
    color: var(--text-faint) !important;
    font-size: 18px !important
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: #fff;
    box-shadow: 0 20px 50px rgba(20, 145, 155, .12), 0 0 0 1px rgba(20, 145, 155, .05);
    transform: translateY(-8px);
    z-index: 2
}

.pricing-card.featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(20, 145, 155, .18), 0 0 40px rgba(20, 145, 155, .06)
}

.pricing-card.featured .pricing-header h3 {
    color: var(--primary)
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(20, 145, 155, .3)
}

.pricing-card.business {
    background: linear-gradient(160deg, #1e293b, #0f172a);
    border-color: rgba(255, 255, 255, .06)
}

.pricing-card.business:hover {
    border-color: rgba(255, 255, 255, .12)
}

.pricing-card.business .pricing-header h3 {
    color: #fff
}

.pricing-card.business .plan-desc {
    color: rgba(255, 255, 255, .55)
}

.pricing-card.business .pricing-divider {
    background: rgba(255, 255, 255, .08)
}

.pricing-card.business .pricing-features li {
    color: rgba(255, 255, 255, .6)
}

.pricing-card.business .pricing-features li strong {
    color: #fff
}

.pricing-card.business .check-icon {
    color: var(--primary-light) !important
}

.pricing-card.business .price-note {
    color: rgba(255, 255, 255, .4)
}

.btn-business {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: var(--transition);
    white-space: nowrap;
    background: rgba(255, 255, 255, .06);
    color: #fff !important;
    backdrop-filter: blur(8px)
}

.btn-business:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-business .material-icons-round {
    font-size: 18px
}

@media (max-width:968px) {

    .pricing-grid,
    .pricing-grid.four-col {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto
    }

    .pricing-card.featured {
        transform: none
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px)
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.faq-item {
    padding: 28px 24px
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.faq-item h4 .material-icons-round {
    font-size: 20px;
    color: var(--primary)
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7
}

@media (max-width:768px) {
    .faq-grid {
        grid-template-columns: 1fr
    }
}

.pricing-grid.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:768px) {
    .pricing-grid.two-col {
        grid-template-columns: 1fr
    }
}

/* Pricing Comparison Table */
.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text);
    background: var(--bg-subtle);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-table th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 700;
    color: var(--text);
    width: 25%;
}

.comparison-table tr:hover td {
    background: rgba(20, 145, 155, 0.02);
}

.table-check {
    color: var(--emerald);
    font-weight: 900;
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 16px;
        font-size: 13px;
    }
}