/* RADSCALE-Inspired Design Styles */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Hanken+Grotesk:wght@400;600;900&display=swap');

:root {
    --primary-blue: #1b264c;
    --accent-green: #8bd96e;
    --light-gray: #ececec;
    --text-dark: #1b264c;
    --bg-white: #ffffff;
    --selection-blue: #2e49a6cc;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

::selection {
    background: var(--selection-blue);
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Hanken Grotesk', sans-serif;
    color: var(--bg-white);
    font-weight: 900;
    line-height: 1.2;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Header Navigation */
.radscale-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.radscale-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.radscale-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.radscale-nav a:hover {
    color: var(--accent-green);
}

/* Hero Section */
.radscale-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.radscale-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 217, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Benefit List with Green Arrows */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefit-item-radscale {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.benefit-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Buttons */
.btn-primary-radscale {
    background: var(--primary-blue);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-radscale:hover {
    background: #0f1a3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 38, 76, 0.2);
    color: white;
}

.btn-secondary-radscale {
    background: var(--accent-green);
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary-radscale:hover {
    background: #7bc85f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 217, 110, 0.3);
}

/* Product Cards */
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.product-card-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-card-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card-link:hover {
    color: var(--accent-green);
}

/* Tabbed Interface */
.tab-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab-button.active {
    color: var(--primary-blue);
    border-bottom-color: var(--accent-green);
    background: var(--accent-green);
    border-radius: 8px 8px 0 0;
}

.tab-button:hover {
    color: var(--primary-blue);
}

/* Solution Cards */
.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.solution-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.solution-card-content {
    padding: 2rem;
}

.solution-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.solution-card-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Statistics */
.stats-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: white;
}

.stat-item-radscale {
    text-align: center;
}

.stat-value-radscale {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    font-family: 'Hanken Grotesk', sans-serif;
}

.stat-label-radscale {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Testimonials */
.testimonial-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card-radscale {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-radscale {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar-radscale {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name-radscale {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    color: #718096;
    font-size: 0.9rem;
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.badge-item {
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.875rem;
    border: 2px solid #e2e8f0;
}

/* Footer */
.radscale-footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-column h4 {
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .product-cards,
    .solution-cards {
        grid-template-columns: 1fr;
    }

    .stat-value-radscale {
        font-size: 2rem;
    }
}

/* Decorative Elements */
.decorative-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green) 0%, transparent 100%);
    margin: 3rem 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-green);
    color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
