:root {
    --primary: #FF8C00; /* IronPulse Orange */
    --dark: #1e1e1e;
    --light: #f4f4f4;
    --text: #333;
    --green: #2ecc71;
    --yellow: #f1c40f;
    --red: #e74c3c;
}

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

body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text); background: #fff; }

.container { max-width: 1100px; margin: auto; padding: 0 2rem; }

/* Navbar */
.navbar { background: #fff; padding: 1rem 0; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 180px; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 2rem; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; }

/* Hero */
.hero { padding: 100px 0; background: var(--dark); color: #fff; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; }
.hero .accent { color: var(--primary); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; opacity: 0.9; }

/* Buttons */
.btn-primary { background: var(--primary); color: #fff; padding: 0.8rem 1.5rem; border-radius: 5px; text-decoration: none; display: inline-block; font-weight: bold; }
.btn-secondary { border: 1px solid #fff; color: #fff; padding: 0.8rem 1.5rem; border-radius: 5px; text-decoration: none; margin-left: 1rem; }

/* Traffic Light Cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.card { padding: 2rem; border-radius: 10px; background: var(--light); text-align: center; border-top: 5px solid #ccc; }
.card.green { border-color: var(--green); }
.card.yellow { border-color: var(--yellow); }
.card.red { border-color: var(--red); }
.light { height: 20px; width: 20px; border-radius: 50%; margin: 0 auto 1rem; }
.green .light { background: var(--green); box-shadow: 0 0 10px var(--green); }
.yellow .light { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
.red .light { background: var(--red); box-shadow: 0 0 10px var(--red); }

/* Features */
.features { padding: 80px 0; text-align: center; }
.feature { padding: 2rem; }
.feature i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }

footer { padding: 2rem 0; background: var(--dark); color: #888; text-align: center; font-size: 0.9rem; }


/* --- PRICING SECTION --- */
.pricing-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.pricing-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

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

/* Featured / Most Popular Plan */
.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Pricing Typography */
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

/* List Styling */
.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Footer Note */
.support-footer {
    text-align: center;
    margin-top: 3rem;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}


/* --- TECH PAGE SPECIFICS --- */
.tech-header { padding: 60px 0; background: #252525; color: #fff; text-align: left; }
.tech-content { margin-top: -40px; padding-bottom: 80px; }

.tech-block { 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    padding: 2rem; 
    margin-bottom: 2rem; 
    border-left: 4px solid var(--dark);
}

.tech-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.mapping-note { font-size: 0.85rem; color: #666; margin-bottom: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }

/* Status Badges */
.badge { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
.badge.green { background: #d4f8e2; color: #1b8d4b; }
.badge.yellow { background: #fff3cd; color: #856404; }
.badge.red { background: #f8d7da; color: #721c24; }

/* Technical Tables */
.tech-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.tech-table th { text-align: left; padding: 12px; background: #f8f9fa; font-size: 0.9rem; border-bottom: 2px solid #eee; }
.tech-table td { padding: 12px; border-bottom: 1px solid #eee; font-size: 0.9rem; }

.status-pill { font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.status-pill.green { background: var(--green); color: #fff; }
.status-pill.red { background: var(--red); color: #fff; }

/* Findings List */
.finding-item { padding: 1rem; background: #fcfcfc; border: 1px solid #eee; border-radius: 6px; }
.severity-tag { padding: 2px 6px; border-radius: 3px; font-size: 0.7rem; color: #fff; margin-right: 8px; }
.severity-tag.high { background: var(--red); }
.asset-list { margin-top: 8px; font-family: monospace; font-size: 0.85rem; color: #555; }