body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

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

.container-small {
    max-width: 420px;
    padding: 80px 20px;
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-top: 60px;
}

p {
    font-size: 1.1rem;
    max-width: 900px;
}

.subhead {
    color: #b3b3b3;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
}

.highlight-text, .hero h1 span {
    color: #ff3b3b;
    font-weight: bold;
}

.hero {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #0f1012, #131112);
    border-bottom: 1px solid #222;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.card, .plan {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.plan.highlight {
    border: 2px solid #b30000;
    box-shadow: 0 0 25px rgba(179, 0, 0, 0.25);
}

.field {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: #fff;
    font-size: 0.95rem;
}

.hint {
    color: #888;
    font-size: 0.85rem;
    margin-top: 6px;
}

.alt {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.alt a {
    color: #ff4d4d;
    text-decoration: none;
}

.cta {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.cta a, a.cta, .cta button {
    display: inline-block;
    width: 100%; 
    max-width: 300px; 
    padding: 16px 30px;
    background: #ff3b3b;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cta a, a.cta {
    width: auto;
}

.cta a.secondary, a.cta.secondary {
    background: transparent;
    color: #ff3b3b;
    border: 2px solid #ff3b3b;
    margin-left: 15px;
}

.cta a:hover, .cta button:hover {
    background: #e60000;
}

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

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 5px;
}

.bullets, ul.features {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.bullets li, ul.features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid #242424;
}

.header {
    background-color: #141114;
    display: flex; 
    align-items: center;
    gap: 20px;
    padding: 10px 20px; 
}

.header img {
    margin-right: auto;
}

.header h2 a {
    color: white;
    text-decoration: none; 
    font-size: 12px;
}

footer {
    margin-top: 60px;
    padding: 30px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.code-container {
    position: relative;
    background: #282c34;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.code-block {
    margin: 0;
    overflow-x: auto;
    color: #abb2bf;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #61afef;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.copy-button:hover {
    background: #528bff;
}

/* --- Toggle Switch Styling --- */
.toggle-wrapper input[type="checkbox"] {
    display: none; /* Hide the actual checkbox */
}

.toggle-switch {
    display: inline-block;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input[type="checkbox"]:checked + .toggle-switch {
    background-color: #4CAF50;
}

input[type="checkbox"]:checked + .toggle-switch::after {
    transform: translateX(24px);
}

.tooltip-wrapper {
    position: relative;
    margin-left: 8px;
    display: inline-block;
    cursor: help;
}

.tooltip-icon {
    background: #e0e0e0;
    color: #666;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%; 
    left: 50%;
    margin-left: -110px; 
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 1.4;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgb(20, 17, 20) !important;
}

.seo-blurb {
  max-width: 800px;
  margin-top: 1rem;
  color: #bbb;
  font-size: 0.95rem;
}

.card {
  margin: 2rem auto; 
  padding: 2rem;     
  background: #111; 
  border-radius: 12px;
}

.clients {
    text-align: center;
}

.clients-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logos img {
    max-height: 48px;
    max-width: 160px;
    filter: grayscale(100%) brightness(0.85);
    opacity: 0.85;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.client-logos a:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.hero-banner {
    position: relative;
    background-image: url('/assets/images/paid-traffic-fraud.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.85)
    );
    width: 100%;
    padding: 5rem 0;
}

.hero-banner h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.1rem;
    max-width: 720px;
    line-height: 1.6;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-list i {
    color: #4da3ff; /* or your brand accent */
    margin-top: 0.2rem;
    min-width: 20px;
}

.stance-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.stance-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.stance-strip .fa-xmark {
    color: #ff6b6b;
}

.stance-strip .fa-check {
    color: #4caf50;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.solution-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Mobile: stack image on top */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
        text-align: center;
    }

    .solution-image img {
        max-width: 100%;
    }
}

.dataTables_filter input, 
.paginate_button {
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    border: 1px solid #444 !important;
}

.paginate_button.current {
    background-color: #007bff !important;
    color: white !important;
}

.raw-traffic-table td {
    color: #e0e0e0 !important;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.raw-traffic-table b, 
.raw-traffic-table strong {
    color: #00d1b2 !important;
}

#trafficReportTable_info {
    color: white;
}

#trafficReportTable_filter{
    color: white;
}

#trafficReportTable_length{
    color: white;
    
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.client-card {
    background: rgba(255, 255, 255, 0.05); 
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.client-card img {
    max-width: 150px;
    height: auto;
    filter: grayscale(1);
    opacity: 0.8;
    margin-bottom: 20px;
}

.client-card img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
    flex-grow: 1; 
}

cite {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}