/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #444444;
    background-color: #f6f8f9;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-red: #d00000;
    --bg-light-gray: #f6f8f9;
    --bg-white: #ffffff;
    --bg-dark-gray: #42464d;
    --text-default: #444444;
    --text-secondary: #4a4e51;
    --bg-input: #ececec;
    --success-green: #4caf50;
    --info-blue: #5bc0de;
    --danger-red: #dc381d;
    --hover-yellow: #ffc;
    --section-bg: #f4f4f4;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(66, 70, 77, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(66, 70, 77, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: rotate(360deg);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/cybersecurity-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #d00000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #cccccc;
    margin-top: 10px;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(208, 0, 0, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(208, 0, 0, 0.8)); }
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(208, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #b50000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-default);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-red), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 0 50px rgba(208, 0, 0, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.float-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.float-element:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-default);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 15px;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.about-visual {
    position: relative;
}

.canada-map {
    position: relative;
    text-align: center;
}

.map-image {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(208, 0, 0, 0.3));
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Security Section */
.security {
    background: var(--section-bg);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.security-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(208, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.security-card:hover::before {
    left: 100%;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-red), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.security-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 15px;
}

.security-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--bg-white);
}

.features-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Rules Section */
.rules {
    background: var(--section-bg);
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.rule-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
}

.rule-card.allowed {
    border-left: 5px solid var(--success-green);
}

.rule-card.prohibited {
    border-left: 5px solid var(--danger-red);
}

.rule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.rule-card.allowed .rule-icon {
    color: var(--success-green);
}

.rule-card.prohibited .rule-icon {
    color: var(--danger-red);
}

.rule-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-default);
}

.rule-card ul {
    list-style: none;
}

.rule-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.rule-card.allowed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.rule-card.prohibited li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-red);
    font-weight: bold;
}

.rules-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rule-detail {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rule-detail h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 15px;
}

.rule-detail p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.contact-feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.3);
}

.cta-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--bg-dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-flags {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-dark-gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .rules-details {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .security-card {
        padding: 30px 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: 30px 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-badge i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(208, 0, 0, 0.1), rgba(208, 0, 0, 0.05));
    border: 1px solid rgba(208, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mirror Section Enhanced */
.mirror-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 59, 59, 0.2);
    flex-wrap: wrap;
}

.mirror-header i {
    font-size: 2rem;
    color: #4caf50;
}

.mirror-header h3 {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3b3b;
    margin: 0;
}

.mirror-count {
    background: rgba(255, 59, 59, 0.1);
    color: #ff3b3b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 59, 59, 0.3);
}

.mirror-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mirror-item .mirror-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 59, 59, 0.4);
    border-radius: 12px;
    text-decoration: none;
    color: #ff5555;
    transition: all 0.15s ease;
}

.mirror-item .mirror-link:hover {
    color: #ff1a1a;
    border-color: rgba(255, 26, 26, 0.8);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.3);
    transform: translateX(5px);
}

.mirror-icon {
    font-size: 1.2rem;
    color: #ff3b3b;
}

.mirror-url {
    flex: 1;
    font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 0.95rem;
    word-break: break-all;
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 600;
}

.copy-btn {
    padding: 16px 18px;
    background: rgba(255, 59, 59, 0.15);
    border: 1px solid rgba(255, 59, 59, 0.4);
    border-radius: 12px;
    color: #ff5555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.copy-btn:hover {
    background: rgba(255, 59, 59, 0.25);
    transform: scale(1.05);
}

.mirror-warning {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-left: 4px solid #ff9800;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mirror-warning i {
    font-size: 1.5rem;
    color: #ff9800;
    flex-shrink: 0;
}

.mirror-warning p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

/* Verification Guide */
.verification-guide {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.verification-guide h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-default);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.verification-guide h3 i {
    color: var(--primary-red);
}

.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.verify-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(208, 0, 0, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: var(--section-bg);
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(208, 0, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-default);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .trust-indicators {
        justify-content: center;
    }

    .mirror-item {
        flex-direction: column;
        gap: 8px;
    }

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

    .verification-steps {
        grid-template-columns: 1fr;
    }

    .mirror-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .verification-guide {
        padding: 25px 20px;
    }
}

/* Feature Tables */
.feature-table {
    margin: 20px 0;
    overflow-x: auto;
}

.feature-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-table thead {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
}

.feature-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.feature-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

.feature-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-table tbody tr:hover {
    background: rgba(208, 0, 0, 0.05);
}

/* Checklist */
.checklist {
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: rgba(76, 175, 80, 0.05);
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.checklist-item.highlight {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #ff9800;
    font-weight: 600;
}

.checklist-item i {
    font-size: 1.3rem;
    color: #4caf50;
    flex-shrink: 0;
}

.checklist-item.highlight i {
    color: #ff9800;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.flow-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-default);
    margin-bottom: 8px;
}

.flow-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 300;
}

/* Warning Box */
.warning-box {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.warning-box i {
    font-size: 1.5rem;
    color: #ff9800;
}

.warning-box strong {
    color: #e65100;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 25px 0;
}

.support-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.language-flag {
    font-size: 3rem;
    margin-bottom: 15px;
}

.support-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-default);
    margin-bottom: 20px;
}

.support-card ul {
    list-style: none;
    padding: 0;
}

.support-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.support-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 1.05rem;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .feature-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .flow-step {
        min-width: 100%;
    }

    .feature-table th,
    .feature-table td {
        padding: 10px;
    }
}

/* Transaction Timeline */
.transaction-timeline {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.timeline-badge.digital {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
}

.timeline-badge.physical {
    background: linear-gradient(135deg, #4caf50, #81c784);
}

.timeline-badge.vendor {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.timeline-content strong {
    display: block;
    color: var(--text-default);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Registration Steps */
.registration-steps {
    margin: 25px 0;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reg-step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.reg-step.highlight {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.1));
    border-left-color: #ff9800;
}

.reg-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reg-step.highlight .reg-number {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    font-size: 1.5rem;
}

.reg-text {
    flex: 1;
    color: var(--text-default);
    font-size: 1.05rem;
}

.reg-text strong {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .transaction-timeline {
        flex-direction: column;
    }

    .timeline-item {
        min-width: 100%;
    }
}


/* ============================================
   NEW SECTIONS CSS FOR SERVICE & ACCESS PAGES
   ============================================ */

/* Quick Start Grid */
.quickstart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.quickstart-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
}

.quickstart-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin: 20px 0;
}

.quickstart-step h3 {
    color: var(--text-dark);
    margin: 15px 0 10px;
    font-size: 20px;
}

.quickstart-step p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0 15px;
}

.step-link {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.step-link:hover {
    color: #ff4444;
}

/* Workflow Diagrams */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.workflow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.workflow-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.workflow-step i {
    font-size: 36px;
    color: var(--primary-red);
    margin: 10px 0;
}

.workflow-step h4 {
    margin: 10px 0 8px;
    color: var(--text-dark);
    font-size: 16px;
}

.workflow-step p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.workflow-arrow {
    font-size: 32px;
    color: var(--primary-red);
    font-weight: 700;
}

/* Product Evaluation Tables */
.evaluation-table, .comparison-table, .amount-table, .status-table, .focus-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.evaluation-table thead, .comparison-table thead, .amount-table thead, .status-table thead, .focus-table thead {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
}

.evaluation-table th, .comparison-table th, .amount-table th, .status-table th, .focus-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.evaluation-table td, .comparison-table td, .amount-table td, .status-table td, .focus-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.evaluation-table tbody tr:hover, .comparison-table tbody tr:hover, .amount-table tbody tr:hover, .focus-table tbody tr:hover {
    background: #f8f9fa;
}

.recommended-row {
    background: #e8f5e9 !important;
}

.danger-row {
    background: #ffebee !important;
}

/* Vendor Badges */
.vendor-badges, .badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.badge-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.vendor-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.vendor-badge.verified {
    background: #4caf50;
    color: white;
}

.vendor-badge.fe {
    background: #ff9800;
    color: white;
}

.vendor-badge.level {
    background: #2196f3;
    color: white;
}

.vendor-badge.dispute {
    background: #9c27b0;
    color: white;
}

.badge-recommended {
    background: #4caf50;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-danger {
    background: var(--primary-red);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.metric-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-red);
}

.metric-icon {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.metric-card h4 {
    color: var(--text-dark);
    margin: 10px 0 15px;
    font-size: 18px;
}

.metric-details p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.metric-note {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 8px;
    font-size: 13px;
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Connection Flow Diagrams */
.connection-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.flow-node {
    text-align: center;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.flow-node.you {
    border: 3px solid #2196f3;
}

.flow-node.vpn {
    border: 3px solid #4caf50;
}

.flow-node.tor {
    border: 3px solid #9c27b0;
}

.flow-node.wtn {
    border: 3px solid var(--primary-red);
}

.flow-node i {
    font-size: 32px;
    margin-bottom: 10px;
}

.flow-node span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin: 5px 0;
}

.flow-node small {
    font-size: 11px;
    color: var(--text-gray);
}

.flow-arrow {
    font-size: 28px;
    color: var(--primary-red);
    font-weight: 700;
}

/* Connection Type Cards */
.connection-type-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.connection-type-card.recommended {
    border-color: #4caf50;
    background: linear-gradient(to bottom, #e8f5e9, white);
}

.connection-type-card.advanced {
    border-color: #ff9800;
}

.connection-type-card.danger {
    border-color: var(--primary-red);
    background: linear-gradient(to bottom, #ffebee, white);
}

.connection-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
}

.recommended .connection-badge {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.connection-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 15px 0;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pros {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #4caf50;
}

.cons {
    background: #ffebee;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-red);
}

.pros h5, .cons h5 {
    margin: 0 0 15px;
    font-size: 16px;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Warning and Note Boxes */
.warning-box, .danger-warning, .step-warning, .timer-warning {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-warning.critical, .danger-warning {
    background: #ffebee;
    border-left-color: var(--primary-red);
}

.warning-box i, .danger-warning i, .step-warning i {
    font-size: 20px;
    color: #ff9800;
    margin-top: 2px;
}

.step-warning.critical i, .danger-warning i {
    color: var(--primary-red);
}

.note-box, .step-note {
    background: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 14px;
}

.security-tip {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.important-notice i {
    font-size: 28px;
    color: #ff9800;
}

/* Order Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.processing {
    background: #fff3cd;
    color: #856404;
}

.status-badge.shipped {
    background: #cce5ff;
    color: #004085;
}

.status-badge.delivered {
    background: #d4edda;
    color: #155724;
}

.status-badge.completed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.disputed {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.cancelled {
    background: #e2e3e5;
    color: #383d41;
}

/* Review Components */
.review-red-flags, .review-green-flags {
    margin: 25px 0;
}

.red-flag-list, .green-flag-list {
    display: grid;
    gap: 15px;
}

.flag-item {
    background: white;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid #ffc107;
}

.red-flag-list .flag-item {
    border-left-color: var(--primary-red);
}

.green-flag-list .flag-item {
    border-left-color: #4caf50;
}

.flag-item i {
    font-size: 24px;
    margin-top: 2px;
}

.red-flag-list .flag-item i {
    color: var(--primary-red);
}

.green-flag-list .flag-item i {
    color: #4caf50;
}

/* Vendor Comparison Table */
.vendor-comparison-table {
    width: 100%;
    margin: 25px 0;
}

.verdict-row {
    font-weight: 700;
    background: #f8f9fa !important;
}

.verdict-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.verdict-badge.best {
    background: #4caf50;
    color: white;
}

.verdict-badge.good {
    background: #2196f3;
    color: white;
}

.verdict-badge.caution {
    background: #ff9800;
    color: white;
}

/* Exit Scam Indicators */
.scam-indicators {
    margin: 25px 0;
}

.indicator {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.indicator.critical {
    border: 3px solid var(--primary-red);
    background: linear-gradient(to bottom, #ffebee, white);
}

.indicator.warning {
    border: 3px solid #ff9800;
    background: linear-gradient(to bottom, #fff3e0, white);
}

.indicator h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    color: var(--text-dark);
}

.indicator i {
    font-size: 28px;
}

.indicator.critical i {
    color: var(--primary-red);
}

.indicator.warning i {
    color: #ff9800;
}

/* Strategies Grid */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.strategy {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-red);
}

.strategy strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

/* Dispute Process Steps */
.process-steps-detailed {
    margin: 30px 0;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-red);
}

.process-step h4 {
    color: var(--text-dark);
    margin: 10px 0 15px;
    font-size: 20px;
}

.dispute-reasons-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.explanation-example {
    background: #263238;
    color: #aed581;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.explanation-example pre {
    margin: 10px 0 0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.outcomes-table table {
    width: 100%;
    margin: 15px 0;
}

.outcomes-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

/* Advanced Security Measures */
.measure-cards {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.measure-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.measure-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.measure-header i {
    font-size: 36px;
    color: var(--primary-red);
    margin-right: 15px;
}

.measure-header h4 {
    flex: 1;
    color: var(--text-dark);
    font-size: 20px;
    margin: 0;
}

.difficulty {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty.medium {
    background: #ff9800;
    color: white;
}

.difficulty.hard {
    background: var(--primary-red);
    color: white;
}

.measure-content {
    margin-top: 20px;
}

.benefits, .implementation, .use-case, .resources, .limitations, .workflow, .recommendations {
    margin: 20px 0;
}

.benefits strong, .implementation strong, .use-case strong, .resources strong, .limitations strong, .workflow strong, .recommendations strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

.kill-switch-setup, .firewall-rules, .mixing-strategy, .monero-alternative {
    margin: 20px 0;
}

.firewall-rules pre {
    background: #263238;
    color: #aed581;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.6;
}

/* Compartmentalization Table */
.compartment-table {
    width: 100%;
    margin: 25px 0;
}

.compartment-table td:last-child {
    color: var(--primary-red);
    font-weight: 600;
}

.compartment-violation h4 {
    color: var(--text-dark);
    margin: 25px 0 15px;
    font-size: 18px;
}

.violations-list {
    display: grid;
    gap: 15px;
}

.violation {
    background: #ffebee;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-red);
}

.violation i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 20px;
}

.violation strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.violation p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-gray);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tip {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-red);
}

.tip h4 {
    color: var(--text-dark);
    margin: 0 0 12px;
    font-size: 16px;
}

.tip p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .workflow-diagram, .connection-flow-diagram {
        flex-direction: column;
    }
    
    .workflow-arrow, .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .metrics-grid, .quickstart-grid, .strategies-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .measure-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR MAIN PAGE EXPANSION
   ============================================ */

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.2);
}

.category-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.category-card h3 {
    color: var(--text-dark);
    margin: 15px 0;
    font-size: 22px;
    text-align: center;
}

.category-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 15px 0;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.category-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.category-features li i {
    color: #4caf50;
    margin-right: 10px;
}

/* Category Stats */
.category-stats {
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-stats h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.advantage-icon {
    font-size: 56px;
    color: var(--primary-red);
    margin: 20px 0;
}

.advantage-card h3 {
    color: var(--text-dark);
    margin: 15px 0;
    font-size: 20px;
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Comparison Table Full */
.comparison-table-full {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table-full thead {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
}

.comparison-table-full th {
    padding: 18px;
    font-weight: 600;
    text-align: left;
}

.comparison-table-full th.highlight {
    background: #b30000;
}

.comparison-table-full td {
    padding: 15px 18px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table-full td.highlight {
    background: #e8f5e9;
    font-weight: 600;
}

.comparison-table-full tbody tr:hover {
    background: #f8f9fa;
}

.comparison-summary {
    margin-top: 40px;
}

.summary-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-red);
}

.summary-card h3 {
    color: var(--text-dark);
    margin: 0 0 20px;
}

.summary-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 15px 0;
}

/* Beginner Timeline */
.beginner-timeline {
    margin: 40px 0;
}

.timeline-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-red);
}

.timeline-step .timeline-badge {
    font-size: 36px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin: 10px 0 15px;
    font-size: 22px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 15px 0;
}

.timeline-content ul, .timeline-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.timeline-content li {
    margin: 10px 0;
    line-height: 1.6;
}

.step-tip, .step-warning, .step-critical {
    margin: 20px 0;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-tip {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
}

.step-warning {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
}

.step-critical {
    background: #ffebee;
    border-left: 5px solid var(--primary-red);
}

.step-tip i {
    color: #4caf50;
    font-size: 20px;
}

.step-warning i {
    color: #ff9800;
    font-size: 20px;
}

.step-critical i {
    color: var(--primary-red);
    font-size: 20px;
}

/* Beginner Resources */
.beginner-resources {
    margin-top: 50px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card i {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.resource-card h4 {
    color: var(--text-dark);
    margin: 15px 0;
    font-size: 18px;
}

.resource-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Vendor Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--text-dark);
    margin: 10px 0;
    font-size: 18px;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Requirements Table */
.requirements-table {
    width: 100%;
    margin: 25px 0;
}

/* Vendor Fees */
.vendor-fees {
    margin: 40px 0;
}

.fee-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.fee-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-red);
}

.fee-card h4 {
    color: var(--text-dark);
    margin: 0 0 15px;
    font-size: 18px;
}

.fee-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 15px 0;
}

.fee-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin: 15px 0 0;
}

/* Vendor CTA */
.vendor-cta {
    margin-top: 40px;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-box h3 {
    margin: 0 0 15px;
    font-size: 28px;
}

.cta-box p {
    margin: 15px 0 25px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* History Timeline */
.history-timeline {
    margin: 40px 0;
    position: relative;
}

.history-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-red);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.history-item.current {
    border-left-color: #4caf50;
    background: linear-gradient(to right, #e8f5e9, white);
}

.history-year {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
    min-width: 120px;
    text-align: center;
}

.history-content h3 {
    color: var(--text-dark);
    margin: 0 0 15px;
    font-size: 22px;
}

.history-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 10px 0;
}

.history-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.stat-pill {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Timeline Achievements */
.timeline-achievements {
    margin-top: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.achievement {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.achievement-icon {
    font-size: 56px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.achievement h4 {
    color: var(--text-dark);
    margin: 10px 0;
    font-size: 20px;
}

.achievement p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.trust-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-red);
}

.trust-icon {
    font-size: 56px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.trust-card h3 {
    color: var(--text-dark);
    margin: 15px 0;
    font-size: 20px;
}

.trust-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 15px 0;
}

.trust-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

/* Community Engagement */
.community-engagement {
    margin-top: 50px;
}

.engagement-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.metric {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.metric i {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 10px 0;
}

.metric-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .categories-grid,
    .advantages-grid,
    .benefits-grid,
    .fee-breakdown,
    .achievements-grid,
    .trust-indicators,
    .engagement-metrics {
        grid-template-columns: 1fr;
    }
    
    .history-item {
        flex-direction: column;
        text-align: center;
    }
    
    .history-year {
        font-size: 36px;
    }
    
    .comparison-table-full {
        font-size: 12px;
    }
    
    .comparison-table-full th,
    .comparison-table-full td {
        padding: 10px;
    }
}

/* ============================================
   UNIQUE FONTS & VISUAL ELEMENTS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Roboto+Mono:wght@400;500;700&family=Playfair+Display:wght@400;700;900&family=Space+Grotesk:wght@300;500;700&display=swap');

/* Unique Typography Classes */
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-mono { font-family: 'Roboto Mono', monospace; }
.font-playfair { font-family: 'Playfair Display', serif; }
.font-space { font-family: 'Space Grotesk', sans-serif; }

/* CSS Progress Bars */
.progress-bar-container {
    background: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    height: 30px;
    margin: 15px 0;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #ff4444, #ff6666);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    transition: width 1s ease;
    box-shadow: 0 2px 8px rgba(208, 0, 0, 0.4);
}

.progress-bar.green {
    background: linear-gradient(90deg, #4caf50, #66bb6a, #81c784);
}

.progress-bar.blue {
    background: linear-gradient(90deg, #2196f3, #42a5f5, #64b5f6);
}

.progress-bar.orange {
    background: linear-gradient(90deg, #ff9800, #ffa726, #ffb74d);
}

/* CSS Pie Charts */
.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.pie-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Bar Charts */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    gap: 15px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-red), #ff4444);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    color: white;
    font-weight: 700;
    box-shadow: 0 -4px 15px rgba(208, 0, 0, 0.3);
}

.bar:hover {
    transform: translateY(-10px);
}

.bar-label {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.bar-value {
    font-size: 16px;
    margin-bottom: auto;
}

/* Infographic Boxes */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-red);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(208, 0, 0, 0.25);
}

.info-box-icon {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-box-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Poppins', sans-serif;
    margin: 10px 0;
}

.info-box-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Comparison Slider */
.comparison-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-side {
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.comparison-side.left {
    background: linear-gradient(135deg, #ffebee, white);
    border: 2px solid #ef5350;
}

.comparison-side.right {
    background: linear-gradient(135deg, #e8f5e9, white);
    border: 2px solid #66bb6a;
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.comparison-side.left .comparison-badge {
    background: #ef5350;
}

.comparison-side.right .comparison-badge {
    background: #66bb6a;
}

/* Icon Lists with Unique Styles */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.styled-list li {
    padding: 15px 20px;
    margin: 10px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.styled-list li:hover {
    box-shadow: 0 4px 15px rgba(208, 0, 0, 0.15);
    transform: translateX(5px);
}

.styled-list li i {
    font-size: 24px;
    color: var(--primary-red);
    min-width: 24px;
}

/* Callout Boxes */
.callout {
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 6px solid;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Space Grotesk', sans-serif;
}

.callout.info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #2196f3;
}

.callout.success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left-color: #4caf50;
}

.callout.warning {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left-color: #ff9800;
}

.callout.danger {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-left-color: #f44336;
}

.callout-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.callout-title i {
    font-size: 24px;
}

/* Feature Cards with Icons */
.icon-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.icon-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.icon-feature:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.icon-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 20px rgba(208, 0, 0, 0.3);
}

.icon-feature h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 15px 0;
    font-size: 18px;
}

.icon-feature p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Step Flow Diagram */
.step-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.step-node {
    flex: 1;
    min-width: 150px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.step-node::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--primary-red);
    font-weight: 700;
}

.step-node:last-child::after {
    display: none;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(208, 0, 0, 0.4);
}

/* Dotted Connection Lines */
.connection-line {
    border-top: 3px dotted var(--primary-red);
    margin: 30px 0;
    position: relative;
}

.connection-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--primary-red);
    border-radius: 50%;
}

/* Percentage Circles */
.percentage-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-red) 0% var(--percentage), #e0e0e0 var(--percentage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.percentage-inner {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-red);
}

/* Animated Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-red), #ff4444, #ff6666, var(--primary-red));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-slider {
        grid-template-columns: 1fr;
    }
    
    .bar-chart {
        height: 250px;
        flex-wrap: wrap;
    }
    
    .step-flow {
        flex-direction: column;
    }
    
    .step-node::after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -35px;
        left: 50%;
    }
}
