:root {
    --bg-color: #0f0f1e;
    --text-color: #e0e0e0;
    --primary-color: #0066cc;
    --primary-hover: #0052a3;
    --secondary-color: #1a1a2e;
    --accent-color: #ff4d4d;
    --card-bg: #16213e;
    --gradient-1: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    --gradient-2: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    --gradient-3: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-mono);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #1a1a2e;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: #1a1a2e;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

h4 {
    color: #1a1a2e;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 2px 15px rgba(102, 126, 234, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 24px;
    height: 24px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.3));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 77, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero h1,
.hero h2,
.hero h3 {
    color: #fff;
}

.hero h1 {
    text-shadow: 0 4px 30px rgba(255, 77, 77, 0.5);
    -webkit-text-fill-color: #fff;
    letter-spacing: -1px;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}

.hero-sub {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.hero-value {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Glitch Effect - Serious version */
.glitch {
    position: relative;
    display: inline-block;
    width: 100%;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff4d4d;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 10s infinite linear alternate-reverse;
    opacity: 0.5;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 rgba(255, 255, 255, 0.3);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 8s infinite linear alternate-reverse;
    opacity: 0.5;
}

@keyframes glitch-anim {
    0% { clip: rect(17px, 9999px, 14px, 0); }
    20% { clip: rect(93px, 9999px, 54px, 0); }
    40% { clip: rect(39px, 9999px, 64px, 0); }
    60% { clip: rect(79px, 9999px, 15px, 0); }
    80% { clip: rect(23px, 9999px, 72px, 0); }
    100% { clip: rect(47px, 9999px, 37px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(69px, 9999px, 76px, 0); }
    20% { clip: rect(4px, 9999px, 19px, 0); }
    40% { clip: rect(86px, 9999px, 6px, 0); }
    60% { clip: rect(11px, 9999px, 94px, 0); }
    80% { clip: rect(56px, 9999px, 30px, 0); }
    100% { clip: rect(29px, 9999px, 84px, 0); }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.about-section {
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.about-section h2,
.about-section h3,
.about-section h4 {
    color: #1a1a2e !important;
}

.about-section p {
    color: #333 !important;
}

.solution-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    opacity: 0.5;
}

.solution-section .container {
    position: relative;
    z-index: 1;
}

.solution-section h2,
.solution-section h3,
.solution-section h4 {
    color: #ffffff;
}

.pricing-section {
    background: #f5f7fa;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-section h2,
.pricing-section h3,
.pricing-section h4 {
    color: #1a1a2e !important;
}

.pricing-section p {
    color: #333 !important;
}

.pricing-intro {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 3rem;
}

.what-you-get {
    margin: 2rem 0;
    text-align: left;
}

.what-you-get h4 {
    color: #1a1a2e !important;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.4);
}

.card h3 {
    margin-bottom: 1rem;
    color: #1a1a2e !important;
}

.card p {
    color: #333 !important;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
}

.feature .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    color: #ffffff;
}

.feature p {
    color: rgba(255, 255, 255, 0.85);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #66b3ff;
    font-weight: bold;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #444;
}

.solution-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing */
.pricing-card {
    background: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 204, 0.3);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: var(--gradient-1);
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    transform: rotate(3deg);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
}

.pricing-card h3 {
    color: #1a1a2e !important;
}

.pricing-card .price {
    margin: 2rem 0;
}

.original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
    margin-right: 10px;
}

.current {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.period {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.benefits {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.benefits li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    color: #333 !important;
    line-height: 1.6;
}

.benefits li::before {
    content: "✓";
    color: #0066cc;
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits li span {
    flex: 1;
}

.benefits li strong {
    color: #1a1a2e;
    font-weight: 600;
}

.recurring-cost {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: #f0f7ff;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #004080;
    border: 1px solid rgba(0, 102, 204, 0.25);
    line-height: 1.6;
}

.recurring-cost a {
    color: #0066cc;
    text-decoration: underline;
    text-decoration-color: rgba(0, 102, 204, 0.3);
    transition: all 0.2s;
    font-weight: 500;
}

.recurring-cost a:hover {
    color: #0052a3;
    text-decoration-color: #0052a3;
}

.small-print {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}

/* Trust Section */
.trust-section {
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.trust-section h2,
.trust-section h3,
.trust-section h4 {
    color: #1a1a2e !important;
}

.trust-section p {
    color: #333 !important;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.use-case-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.use-case-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    color: #1a1a2e !important;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.use-case-card p {
    color: #333 !important;
    font-size: 0.95rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0f7ff;
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.badge-icon {
    font-size: 2rem;
    color: #0066cc;
    font-weight: bold;
    flex-shrink: 0;
}

.badge-content strong {
    display: block;
    color: #1a1a2e !important;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.badge-content p {
    color: #444 !important;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(0, 102, 204, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section h4 {
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration-color: #0066cc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Legal Sections */
.legal-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.legal-section h2,
.legal-section h3,
.legal-section h4 {
    color: #1a1a2e !important;
}

.legal-section h2 {
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h3 {
    color: #1a1a2e;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin: -10px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #0066cc;
    transition: all 0.3s;
}

.mobile-menu-btn:hover span {
    background: #0052a3;
}

/* Form */
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background: #fff;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4d4d;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #00cc66;
}

/* News Alert */
.news-alert {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.08) 0%, rgba(204, 0, 0, 0.05) 100%);
    border: 1px solid rgba(255, 77, 77, 0.25);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(255, 77, 77, 0.1);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ff4d4d;
    font-family: var(--font-mono);
    font-weight: 600;
}

.news-links {
    list-style: none;
    padding-left: 2rem;
}

.news-links li {
    margin-bottom: 0.5rem;
    position: relative;
}

.news-links li::before {
    content: "»";
    position: absolute;
    left: -1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.news-links a {
    color: #555;
    text-decoration: underline;
    text-decoration-color: rgba(255, 77, 77, 0.3);
    transition: all 0.2s;
}

.news-links a:hover {
    color: #ff4d4d;
    text-decoration-color: #ff4d4d;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-links.active {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-sub {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 16px;
    }

    .current {
        font-size: 3rem;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        top: -10px;
        right: -10px;
    }

    .benefits {
        margin: 1.5rem 0;
    }

    .benefits li {
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .news-alert {
        padding: 1rem;
    }

    .news-header {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .news-links {
        padding-left: 1.5rem;
    }

    .news-links li {
        font-size: 0.9rem;
    }

    .use-cases {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .current {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    margin-bottom: 2rem;
}

.trust-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.check-icon {
    color: #00cc66;
    font-weight: bold;
}

.mini-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.mini-qr-img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mini-qr-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-icon {
    font-size: 0.9em;
    margin-right: 5px;
}

/* Trust Header */
.trust-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e !important;
}

/* Footnote Reference */
.footnote-ref {
    text-decoration: none;
    color: inherit !important;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 2px;
    display: inline-block;
}

.footnote-ref:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.recurring-cost {
    scroll-margin-top: 150px;
    transition: all 0.3s ease;
    position: relative;
}

.recurring-cost:target,
.recurring-cost.highlight-anim {
    animation: flash-attention 2s ease-out forwards;
}

@keyframes flash-attention {
    0% {
        background-color: #f0f7ff;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
    10%, 30%, 50% {
        background-color: rgba(255, 77, 77, 0.1);
        transform: scale(1.02);
        border-color: #ff4d4d;
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
    }
    20%, 40% {
        background-color: rgba(255, 77, 77, 0.2);
        transform: scale(1.02);
        border-color: #ff4d4d;
        box-shadow: 0 0 25px rgba(255, 77, 77, 0.4);
    }
    100% {
        background-color: #f0f7ff;
        transform: scale(1);
        border-color: rgba(0, 102, 204, 0.25);
        box-shadow: none;
    }
}

/* Mobile responsiveness for Trust Bar */
@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        gap: 1rem;
        border-radius: 16px;
        width: 100%;
    }
}
