/* Tiknet Family Shield Landing Page — Mobile-First Responsive CSS */

:root,
[data-theme="dark"] {
    --bg-primary: #0B0F19;
    --bg-secondary: #111827;
    --bg-card: #1F2937;
    --bg-glass: rgba(31, 41, 55, 0.7);
    --border-glass: rgba(255, 255, 255, 0.1);
    
    --primary: #10B981;
    --primary-hover: #059669;
    --primary-light: rgba(16, 185, 129, 0.15);
    
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-orange: #F59E0B;
    --accent-danger: #EF4444;
    
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --text-sub: #6B7280;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --dark-card-bg: rgba(17, 24, 39, 0.6);
    --dark-card-border: rgba(255, 255, 255, 0.1);
    --dark-card-title: #F9FAFB;
    
    --glowing-card-bg: linear-gradient(145deg, rgba(31, 41, 55, 0.9) 0%, rgba(16, 185, 129, 0.08) 100%);
    --glowing-card-border: rgba(16, 185, 129, 0.4);
    --glowing-card-title: #F9FAFB;
    
    --pricing-featured-bg: linear-gradient(160deg, rgba(31, 41, 55, 0.95) 0%, rgba(16, 185, 129, 0.1) 100%);
    --pricing-featured-border: #10B981;
    
    --detail-card-bg: rgba(31, 41, 55, 0.4);
}

[data-theme="light"] {
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.88);
    --border-glass: #E2E8F0;
    
    --primary: #059669;
    --primary-hover: #047857;
    --primary-light: rgba(5, 150, 105, 0.12);
    
    --text-main: #0F172A;
    --text-muted: #334155;
    --text-sub: #64748B;
    
    --shadow-glow: 0 0 35px rgba(5, 150, 105, 0.15);
    --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --dark-card-bg: #FFF5F5;
    --dark-card-border: #FECACA;
    --dark-card-title: #991B1B;
    
    --glowing-card-bg: #F0FDF4;
    --glowing-card-border: #A7F3D0;
    --glowing-card-title: #065F46;
    
    --pricing-featured-bg: linear-gradient(160deg, #FFFFFF 0%, #ECFDF5 100%);
    --pricing-featured-border: #10B981;
    
    --detail-card-bg: #FFFFFF;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #E2E8F0;
}

[data-theme="light"] .nav-links a {
    color: #334155;
}

[data-theme="light"] .nav-links a:hover {
    color: #059669;
}

[data-theme="light"] .feature-card,
[data-theme="light"] .protection-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .scenario-card,
[data-theme="light"] .comparison-table {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .comparison-card.dark-card {
    background: #FFF5F5;
    border: 1px solid #FECACA;
    color: #0F172A;
    box-shadow: 0 4px 20px -2px rgba(239, 68, 68, 0.06);
}

[data-theme="light"] .comparison-card.dark-card .card-header h3 {
    color: #991B1B;
}

[data-theme="light"] .comparison-card.dark-card .comparison-list {
    color: #334155;
}

[data-theme="light"] .comparison-card.glowing-card {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #0F172A;
    box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.12);
}

[data-theme="light"] .comparison-card.glowing-card .card-header h3 {
    color: #065F46;
}

[data-theme="light"] .comparison-card.glowing-card .comparison-list {
    color: #334155;
}

[data-theme="light"] .pricing-card.featured {
    background: linear-gradient(160deg, #FFFFFF 0%, #ECFDF5 100%);
    border: 2px solid #10B981;
    box-shadow: 0 12px 32px -8px rgba(5, 150, 105, 0.18);
}

[data-theme="light"] .pricing-card h3,
[data-theme="light"] .pricing-card .price {
    color: #0F172A;
}

[data-theme="light"] .pricing-card p,
[data-theme="light"] .pricing-card .pricing-features {
    color: #334155;
}



[data-theme="light"] .tab-btn {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #64748B;
}

[data-theme="light"] .tab-btn.active {
    background: #FFFFFF;
    border-color: #10B981;
    color: #065F46;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

[data-theme="light"] .btn-secondary {
    background: #F1F5F9;
    color: #0F172A;
    border: 1px solid #CBD5E1;
}

[data-theme="light"] .hero-badge {
    background: rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.2);
    color: #043927;
}

[data-theme="light"] .lang-switch-container {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
}

[data-theme="light"] .lang-btn {
    color: #64748B;
}

[data-theme="light"] .lang-btn.active {
    background: #FFFFFF;
    color: #043927;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 9999px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    color: var(--text-main);
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.brand-logo-img {
    height: 58px;
    width: auto;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 16px rgba(16, 185, 129, 0.3));
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.28s ease;
}

.brand-logo:hover .brand-logo-img {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 24px rgba(16, 185, 129, 0.55));
}

.footer-logo-img {
    height: 64px;
    width: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 16px rgba(16, 185, 129, 0.35));
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
}

.brand-name .highlight {
    color: var(--primary);
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switch-container {
    display: flex;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: #FFF;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.mobile-nav-actions {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFF;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-muted);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: var(--border-glass);
}

.btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    background: radial-gradient(circle at 50% 10%, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.hero-title {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.18;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Trust Metrics */
.trust-metrics {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.metric-divider {
    width: 1px;
    height: 30px;
    background: var(--border-glass);
}

/* Phone Frame & Visuals */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-frame-wrapper {
    position: relative;
}

.phone-frame {
    width: 240px;
    height: 520px;
    background: #000;
    border-radius: 32px;
    border: 3.5px solid #1F2937;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    overflow: hidden;
    position: relative;
}

.phone-frame.large {
    width: 245px;
    height: 530px;
    border-radius: 34px;
    border: 4px solid #1E293B;
}

.phone-notch {
    width: 100px;
    height: 22px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen-img, #showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.badge-top-right {
    top: 30px;
    right: -30px;
}

.badge-bottom-left {
    bottom: 40px;
    left: -30px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.badge-icon.green { background: rgba(16, 185, 129, 0.2); color: var(--primary); }
.badge-icon.blue { background: rgba(59, 130, 246, 0.2); color: var(--accent-blue); }

.badge-info .title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #FFF;
}

.badge-info .sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header.center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comparison-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
}

.dark-card { 
    background: var(--dark-card-bg); 
    border-color: var(--dark-card-border);
}
.dark-card h3 {
    color: var(--dark-card-title);
}

.glowing-card {
    background: var(--glowing-card-bg);
    border-color: var(--glowing-card-border);
    box-shadow: var(--shadow-glow);
}
.glowing-card h3 {
    color: var(--glowing-card-title);
}

.card-header { margin-bottom: 24px; }

.card-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: inline-block;
}

.card-status.danger { background: rgba(239, 68, 68, 0.15); color: var(--accent-danger); }
.card-status.success { background: rgba(16, 185, 129, 0.15); color: var(--primary); }

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* App Showcase Carousel Section */
.app-showcase-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.showcase-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
}

.tab-btn {
    padding: 10px 20px;
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.showcase-display {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
}

.showcase-phone-container {
    display: flex;
    justify-content: center;
}

.detail-card { 
    display: none; 
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.detail-card.active {
    display: block;
    animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--primary-light);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.detail-card h3 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--text-main);
}

.detail-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.detail-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-features span { 
    color: var(--primary); 
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    background: rgba(16, 185, 129, 0.15);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 999px;
    padding: 6px;
    margin: 28px auto 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    gap: 6px;
}

.billing-toggle-btn {
    background: transparent;
    border: none;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.billing-toggle-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.billing-discount-badge {
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.billing-toggle-btn.active .billing-discount-badge {
    background: #FFFFFF;
    color: #047857;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 32px auto 0;
    align-items: stretch;
}

.pricing-card {
    padding: 34px 28px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    background: var(--pricing-featured-bg);
    border-color: var(--pricing-featured-border);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background: var(--primary);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.plan-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    margin-bottom: 12px;
}

.plan-pill.popular-pill {
    background: rgba(16, 185, 129, 0.18);
    color: #047857;
    font-weight: 800;
}

.plan-pill.sovereign-pill {
    background: rgba(99, 102, 241, 0.12);
    color: #4F46E5;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    margin: 14px 0 4px;
    color: var(--text-title);
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.savings {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    min-height: 18px;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.45;
}

.pricing-features span { color: var(--primary); font-weight: 700; }
.btn-full { width: 100%; text-align: center; }

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 { font-size: 1rem; }

.faq-icon {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 20px 18px;
    display: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #070A11;
    border-top: 1px solid var(--border-glass);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.link-group h5 { color: #FFF; font-size: 0.95rem; margin-bottom: 14px; }

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.legal-name {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-sub);
    font-size: 0.8rem;
}

.desktop-only { display: flex; }

/* 📱 Mobile First Responsive Styles (< 768px & < 480px) */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .trust-metrics { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-display { grid-template-columns: 1fr; text-align: center; padding: 24px; }
    .detail-features li { justify-content: center; }
    .footer-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .brand-logo-img { height: 44px; }
    .footer-logo-img { height: 48px; }
    .desktop-only { display: none !important; }
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.35s ease-in-out;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }
    
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 10px;
    }

    .hero-title { font-size: 2.1rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .comparison-grid, .pricing-grid, .features-grid { grid-template-columns: 1fr; }

    .floating-badge { display: none; } /* Hide floating badges on small mobile screens to prevent overlap */

    .phone-frame { width: 220px; height: 475px; border-radius: 28px; border-width: 3px; }
    .phone-frame.large { width: 225px; height: 485px; border-radius: 28px; border-width: 3px; }

    .footer-links { text-align: left; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .btn-lg { width: 100%; }
    .hero-buttons { flex-direction: column; }
    .trust-metrics { flex-direction: column; gap: 10px; }
    .metric-divider { display: none; }
}

/* ==========================================================================
   PWA TRUST BADGE & INSTALLATION MODAL
   ========================================================================== */
.pwa-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #047857;
    margin-top: 14px;
    margin-bottom: 24px;
}

[data-theme="dark"] .pwa-trust-badge {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34D399;
}

.pwa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pwaFadeIn 0.25s ease-out;
}

@keyframes pwaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pwa-modal-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    animation: pwaPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .pwa-modal-container {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.12);
    color: #F8FAFC;
}

@keyframes pwaPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.pwa-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #F1F5F9;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

[data-theme="dark"] .pwa-modal-close {
    background: #1F2937;
    color: #94A3B8;
}

.pwa-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.pwa-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pwa-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.25;
}

[data-theme="dark"] .pwa-modal-header h2 {
    color: #FFFFFF;
}

.pwa-modal-header p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 20px;
}

[data-theme="dark"] .pwa-modal-header p {
    color: #94A3B8;
}

.pwa-platform-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #F8FAFC;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
}

[data-theme="dark"] .pwa-platform-tabs {
    background: #1F2937;
    border-color: rgba(255, 255, 255, 0.08);
}

.pwa-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 9px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
}

[data-theme="dark"] .pwa-tab-btn {
    color: #94A3B8;
}

.pwa-tab-btn.active {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .pwa-tab-btn.active {
    background: #111827;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pwa-guide-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pwa-guide-content.active {
    display: flex;
}

.pwa-step-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 16px;
}

[data-theme="dark"] .pwa-step-card {
    background: #1F2937;
    border-color: rgba(255, 255, 255, 0.06);
}

.pwa-step-num {
    width: 28px;
    height: 28px;
    background: #10B981;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pwa-step-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}

[data-theme="dark"] .pwa-step-body h4 {
    color: #FFFFFF;
}

.pwa-step-body p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

[data-theme="dark"] .pwa-step-body p {
    color: #94A3B8;
}

.pwa-modal-footer {
    display: flex;
}

.btn-pwa-launch {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    transition: all 0.25s;
}

.btn-pwa-launch:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

/* ==========================================================================
   HARDWARE + SOFTWARE DUO SHOWCASE
   ========================================================================== */
.hardware-duo-section, .partner-hardware-section {
    padding: 90px 0;
    background: var(--mb-bg-card, #FFFFFF);
    border-top: 1px solid var(--mb-border, #E2E8F0);
    border-bottom: 1px solid var(--mb-border, #E2E8F0);
}

[data-theme="dark"] .hardware-duo-section,
[data-theme="dark"] .partner-hardware-section {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.08);
}

.hardware-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.hardware-duo-grid.reverse {
    grid-template-columns: 1.05fr 1fr;
}

.hardware-duo-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 16px 0;
    color: var(--mb-forest-green, #043927);
}

[data-theme="dark"] .hardware-duo-content h2 {
    color: #F9FAFB;
}

.hardware-duo-content .section-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
}

[data-theme="dark"] .hardware-duo-content .section-desc {
    color: #9CA3AF;
}

.hw-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hw-feat-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #F8FAFC;
    border: 1px solid var(--mb-border, #E2E8F0);
    border-radius: 16px;
    padding: 18px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .hw-feat-card {
    background: #1F2937;
    border-color: rgba(255, 255, 255, 0.08);
}

.hw-feat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.06);
}

.hw-feat-icon {
    font-size: 1.6rem;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hw-feat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mb-forest-green, #043927);
    margin-bottom: 4px;
}

[data-theme="dark"] .hw-feat-card h4 {
    color: #F3F4F6;
}

.hw-feat-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

[data-theme="dark"] .hw-feat-card p {
    color: #9CA3AF;
}

.hw-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--mb-border, rgba(255, 255, 255, 0.15));
}

.hw-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hw-image-frame:hover .hw-showcase-img {
    transform: scale(1.02);
}

.hw-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hw-badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

@media (max-width: 900px) {
    .hardware-duo-grid, .hardware-duo-grid.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hardware-duo-grid.reverse .hardware-duo-visual {
        order: 2;
    }
    .hardware-duo-grid.reverse .hardware-duo-content {
        order: 1;
    }
}

/* ==========================================================================
   REVISED HERO PHONE MOCKUP (FULL DASHBOARD VISIBLE)
   ========================================================================== */
.phone-notch {
    display: none !important;
}

.hero-visual .phone-frame {
    width: 245px !important;
    height: 530px !important;
    background: #0F172A !important;
    border-radius: 34px !important;
    border: 3.5px solid #1E293B !important;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
}

.hero-visual .phone-screen-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: top center !important;
    background: #FFFFFF !important;
    display: block !important;
}

.hero-visual .badge-top-right {
    top: 25px !important;
    right: -25px !important;
}

.hero-visual .badge-bottom-left {
    bottom: 30px !important;
    left: -25px !important;
}

/* ==========================================================================
   REVISED HARDWARE-ENFORCED PROTECTION SECTION (HERO SPOTLIGHT & 3-PILLAR GRID)
   ========================================================================== */
.hardware-duo-section {
    padding: 90px 0 !important;
    background: #FFFFFF !important;
    border-top: 1px solid #E2E8F0 !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

[data-theme="dark"] .hardware-duo-section {
    background: #0F172A !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.hw-centered-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px auto;
}

.hw-centered-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #043927;
    margin: 14px 0;
}

[data-theme="dark"] .hw-centered-header h2 {
    color: #FFFFFF;
}

.hw-centered-header p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

[data-theme="dark"] .hw-centered-header p {
    color: #94A3B8;
}

.hw-spotlight-visual {
    max-width: 980px;
    margin: 0 auto 36px auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

[data-theme="dark"] .hw-spotlight-visual {
    border-color: rgba(255, 255, 255, 0.12);
}

.hw-spotlight-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hw-3pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
}

.hw-pillar-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .hw-pillar-card {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.08);
}

.hw-pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.08);
}

.hw-pillar-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hw-pillar-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #043927;
    margin-bottom: 8px;
}

[data-theme="dark"] .hw-pillar-card h4 {
    color: #F8FAFC;
}

.hw-pillar-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

[data-theme="dark"] .hw-pillar-card p {
    color: #94A3B8;
}

/* ==========================================================================
   REVISED COMPARISON SECTION ("WHY TRADITIONAL APPS FAIL")
   ========================================================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    padding: 32px 28px !important;
    border-radius: 22px !important;
}

.comparison-card.dark-card {
    background: #FFF5F5 !important;
    border: 1px solid #FECACA !important;
}

[data-theme="dark"] .comparison-card.dark-card {
    background: #1F151B !important;
    border-color: rgba(239, 68, 68, 0.25) !important;
}

.comparison-card.glowing-card {
    background: #F0FDF4 !important;
    border: 1px solid #BBF7D0 !important;
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.15) !important;
}

[data-theme="dark"] .comparison-card.glowing-card {
    background: #061A14 !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
}

.comp-item-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
}

.comp-item-card.danger {
    background: #FFFFFF;
    border: 1px solid #FEE2E2;
}

[data-theme="dark"] .comp-item-card.danger {
    background: #2D1820;
    border-color: rgba(239, 68, 68, 0.2);
}

.comp-item-card.success {
    background: #FFFFFF;
    border: 1px solid #DCFCE7;
}

[data-theme="dark"] .comp-item-card.success {
    background: #0B251C;
    border-color: rgba(16, 185, 129, 0.2);
}

.comp-item-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.comp-item-body h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
}

.comp-item-card.danger .comp-item-body h4 {
    color: #991B1B;
}

[data-theme="dark"] .comp-item-card.danger .comp-item-body h4 {
    color: #FCA5A5;
}

.comp-item-card.success .comp-item-body h4 {
    color: #065F46;
}

[data-theme="dark"] .comp-item-card.success .comp-item-body h4 {
    color: #6EE7B7;
}

.comp-item-body p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.45;
    margin: 0;
}

[data-theme="dark"] .comp-item-body p {
    color: #94A3B8;
}

@media (max-width: 900px) {
    .hw-3pillar-grid {
        grid-template-columns: 1fr;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual .badge-top-right, .hero-visual .badge-bottom-left {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin: 10px 0;
    }
}
