/* ============================================
   Red Badger Security - Professional Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-red: #C41E3A;
    --dark-red: #8B1538;
    --accent-gray: #1F2937;
    --light-gray: #F9FAFB;
    --medium-gray: #6B7280;
    --text-gray: #6B7280;
    --border-gray: #E5E7EB;
    --text-dark: #111827;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(196, 30, 58, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(196, 30, 58, 0.08), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(17, 24, 39, 0.06), transparent 24%),
        linear-gradient(180deg, #f4f5f8 0%, #eef1f5 52%, #f7f4f5 100%);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition);
}

.logo-svg {
    width: 55px;
    height: 55px;
    transition: transform 0.3s ease;
}

.logo-img {
    width: 100px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-svg,
.logo-container:hover .logo-img {
    transform: scale(1.05) rotate(2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .main {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-text .sub {
    font-size: 0.7rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

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

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

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-cta {
    background: var(--primary-red);
    color: white !important;
    padding: 0.75rem 1.8rem;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-gray);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 2rem;
}

.mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(196, 30, 58, 0.14), transparent 24%),
        radial-gradient(circle at 82% 12%, rgba(17, 24, 39, 0.08), transparent 20%),
        linear-gradient(135deg, #f7f7fa 0%, #eef2f6 54%, #f8eaee 100%);
    padding: 140px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
}

.hero-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--primary-red) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-red) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(196, 30, 58, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.35rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

/* Buttons */
.btn {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Secondary button on dark backgrounds */
.hero .btn-secondary,
.cta-section .btn-secondary,
[style*="background: linear-gradient"] .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.hero .btn-secondary:hover,
.cta-section .btn-secondary:hover,
[style*="background: linear-gradient"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* Stats Section */
.stats {
    background: var(--accent-gray);
    color: white;
    padding: 4rem 5%;
    position: relative;
    transform: none !important;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
    position: relative;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stat-item .material-icons {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.4;
}

/* Trust Section */
.trust-section {
    padding: 3rem 5%;
    background: linear-gradient(180deg, rgba(244, 246, 249, 0.95), rgba(250, 248, 249, 0.98));
    border-bottom: 1px solid var(--border-gray);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--medium-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item .material-icons {
    color: var(--primary-red);
    font-size: 1.5rem;
}

/* Who This Is For */
.who-for {
    padding: 7rem 5%;
    background: linear-gradient(180deg, rgba(248, 249, 251, 0.92), rgba(243, 239, 242, 0.98));
}

.audience-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 249, 0.98));
    border: 1px solid rgba(165, 16, 37, 0.08);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(165, 16, 37, 0.2);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.audience-card .material-icons {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}

.audience-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.audience-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.service-icon .material-icons,
.service-icon .material-symbols-outlined {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.service-card p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.service-features li .material-icons {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(180deg, rgba(239, 242, 246, 0.96), rgba(247, 244, 246, 0.98));
    border-radius: 12px;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.service-qualifier {
    padding: 0 5% 8rem;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

.service-qualifier__panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 35%),
        linear-gradient(135deg, #0f172a 0%, #1f2937 55%, #7f1d1d 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

.service-qualifier__copy .section-badge,
.service-qualifier__copy .section-title,
.service-qualifier__copy .section-description {
    color: var(--white);
}

.service-qualifier__copy .section-badge {
    opacity: 0.88;
}

.service-qualifier__copy .section-title {
    margin-bottom: 1rem;
}

.service-qualifier__copy .section-description {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

.service-qualifier__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: end;
    width: 100%;
    max-width: 280px;
}

.service-qualifier__actions .btn {
    width: 100%;
    justify-content: center;
}

/* Methodology Section */
.methodology {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(239, 242, 246, 0.96), rgba(247, 244, 246, 0.98));
}

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

.methodology-steps {
    margin-top: 4rem;
}

.methodology-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.methodology-step:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    opacity: 0.3;
}

.step-content {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 21, 56, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon .material-icons {
    font-size: 2rem;
    color: var(--primary-red);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Certifications Section */
.certifications {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

.certifications-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.cert-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px) scale(1.02);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 21, 56, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.cert-card:hover .cert-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.cert-card:hover .cert-icon .material-icons,
.cert-card:hover .cert-icon .material-symbols-outlined {
    color: white;
}

.cert-icon .material-icons,
.cert-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.cert-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cert-card .cert-full-name {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.cert-card .cert-issuer {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(239, 242, 246, 0.96), rgba(247, 244, 246, 0.98));
}

.testimonials-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .material-icons {
    color: #FFC107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar .material-icons {
    color: white;
    font-size: 1.8rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

.features-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 21, 56, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.feature-icon .material-icons,
.feature-icon .material-symbols-outlined {
    font-size: 2.2rem;
    color: var(--primary-red);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(239, 242, 246, 0.96), rgba(247, 244, 246, 0.98));
}

.pricing-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.5rem;
}

.package-price span {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.package-description {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.package-features li .material-icons {
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

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

.faq-list {
    margin-top: 4rem;
}

.faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(239, 242, 246, 0.96), rgba(247, 244, 246, 0.98));
}

.contact-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .material-icons {
    color: white;
    font-size: 1.5rem;
}

.contact-item-text h4 {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.map-container {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    transition: var(--transition);
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.contact-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-result.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-result.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* Footer */
footer {
    background: var(--accent-gray);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.back-to-top.visible {
    display: flex;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 998;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Tooltip for WhatsApp button */
.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: var(--accent-gray);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: var(--accent-gray);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Business Description Section
   ============================================ */
.business-description {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

.business-description-container {
    max-width: 1200px;
    margin: 0 auto;
}

.business-description-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.business-description-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.business-description-text .business-lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
}

.business-description-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 3px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.highlight-item > .material-icons {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.highlight-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .business-description-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-for {
        padding: 5rem 5%;
    }

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

    .service-qualifier {
        padding: 0 5% 5rem;
    }

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

    .service-qualifier__actions {
        justify-self: stretch;
        max-width: none;
    }
}

/* ============================================
   Trusted By / Logo Carousel Section
   ============================================ */
.trusted-by {
    padding: 6rem 5%;
    background: var(--white);
    overflow: hidden;
}

.logo-carousel-wrapper {
    max-width: 1400px;
    margin: 3rem auto 0;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 2rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logo-carousel.reverse .logo-track {
    animation: scrollLogosReverse 30s linear infinite;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLogosReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.8rem;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-item:hover {
    border-color: var(--primary-red);
    background: white;
    box-shadow: var(--shadow-md);
}

.logo-item .material-icons {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.trusted-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trusted-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.trusted-stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
}

.trusted-stat-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* ============================================
   Case Studies Section
   ============================================ */
.case-studies {
    padding: 8rem 5%;
    background: var(--light-gray);
}

.case-studies-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--accent-gray), #2d3748);
}

.case-study-industry {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.case-study-industry .material-icons {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.case-study-severity {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-severity.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.case-study-severity.high {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.case-study-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.5rem 2rem 0;
    line-height: 1.4;
}

.case-study-body {
    padding: 1rem 2rem 1.5rem;
    flex: 1;
}

.case-study-section {
    margin-bottom: 1.2rem;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-red);
    margin-bottom: 0.4rem;
}

.case-study-label .material-icons {
    font-size: 1rem;
}

.case-study-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-gray);
    background: var(--light-gray);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.5rem;
    text-align: center;
    border-right: 1px solid var(--border-gray);
}

.metric:last-child {
    border-right: none;
}

.metric-value {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.case-studies-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.case-studies-cta p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* ============================================
   Sample Report Section
   ============================================ */
.sample-report {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.96), rgba(251, 249, 250, 0.98));
}

.report-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.report-content .section-title {
    text-align: left;
}

.report-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.report-highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.report-highlight-item .material-icons {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.report-highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.report-highlight-item p {
    font-size: 0.88rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.report-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Report Mockup */
.report-mockup {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.report-mockup:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.mockup-header {
    background: var(--accent-gray);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:last-child { background: #22c55e; }

.mockup-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-family: monospace;
}

.mockup-body {
    padding: 1.5rem;
}

.mockup-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding-bottom: 1rem;
}

.mockup-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    margin-bottom: 1rem;
    border-radius: 2px;
}

.mockup-section {
    margin-bottom: 1rem;
}

.mockup-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.mockup-badge.critical {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mockup-badge.finding-critical {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mockup-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mockup-line {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    margin-bottom: 0.4rem;
}

.mockup-line.w100 { width: 100%; }
.mockup-line.w90 { width: 90%; }
.mockup-line.w80 { width: 80%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w60 { width: 60%; }

.mockup-code {
    background: #1e1e1e;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    margin: 0.5rem 0;
    overflow-x: auto;
}

.mockup-risk-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.risk-bar {
    display: grid;
    grid-template-columns: 55px 1fr 25px;
    align-items: center;
    gap: 0.5rem;
}

.risk-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
}

.risk-track {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.risk-fill.critical { background: #ef4444; }
.risk-fill.high { background: #f59e0b; }
.risk-fill.medium { background: #3b82f6; }
.risk-fill.low { background: #22c55e; }

.risk-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.mockup-redacted {
    margin-top: 1rem;
    padding: 1rem;
    background: repeating-linear-gradient(
        45deg,
        rgba(196, 30, 58, 0.03),
        rgba(196, 30, 58, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
    border: 1px dashed rgba(196, 30, 58, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 600;
}

.mockup-redacted .material-icons {
    font-size: 1rem;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-gray);
    color: white;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-icon .material-icons {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.cookie-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-link {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-link:hover {
    color: #ff4d6a;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-red);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.cookie-btn-essential {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-essential:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Preferences Panel */
.cookie-preferences {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-pref-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.5rem;
}

.cookie-pref-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.cookie-pref-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.3rem;
    transition: var(--transition);
}

.cookie-pref-close:hover {
    color: white;
}

.cookie-pref-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.cookie-pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    gap: 1.5rem;
}

.cookie-pref-info h5 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.2rem;
}

.cookie-pref-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    transition: var(--transition);
}

.cookie-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-slider {
    background: var(--primary-red);
}

.cookie-toggle input:checked + .cookie-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-slider {
    background: rgba(196, 30, 58, 0.5);
    cursor: not-allowed;
}

.cookie-pref-footer {
    padding: 1rem 0 1.5rem;
    display: flex;
    justify-content: flex-end;
}

/* ============================================
   Subpage Hero Variant
   ============================================ */
.hero--subpage {
    min-height: 50vh;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero--subpage h1 {
    font-size: 3rem;
}

/* ============================================
   CTA Section Base Styles
   ============================================ */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-section .section-description {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* ============================================
   Free Resources Banner
   ============================================ */
.resources-banner {
    background: #f8f9fa;
    padding: 4rem 5%;
}

.resources-banner-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.resource-card:hover::before {
    width: 320px;
    height: 320px;
}

.resource-card--primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    color: white;
}

.resource-card--secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.resource-card--secondary:hover {
    border-color: rgba(196, 30, 58, 0.3);
}

.resource-card__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.resource-card--secondary .resource-card__icon {
    color: var(--primary-red);
}

.resource-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.resource-card--primary .resource-card__title {
    color: white;
}

.resource-card__description {
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.resource-card--primary .resource-card__description {
    color: rgba(255,255,255,0.85);
}

.resource-card--secondary .resource-card__description {
    color: var(--text-gray);
}

.resource-card__arrow {
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.resource-card--primary .resource-card__arrow {
    opacity: 0.7;
}

.resource-card--secondary .resource-card__arrow {
    color: var(--text-gray);
}

.resource-card:hover .resource-card__arrow {
    transform: translateX(6px);
}

/* ============================================
   Blog Utilities
   ============================================ */
.blog-card-title {
    font-size: 1.5rem;
    margin: 0;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.blog-article {
    padding: 8rem 5% 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.blog-breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.blog-toc {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-red);
}

.blog-toc h2,
.blog-toc h3 {
    margin-top: 0;
    color: var(--text-dark);
}

.blog-toc ol,
.blog-toc ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1360px) {
    .nav-container {
        padding: 0.9rem 3%;
        gap: 1.5rem;
    }

    .logo-container {
        gap: 12px;
    }

    .logo-img {
        width: 84px;
        height: 72px;
    }

    .logo-text .main {
        font-size: 1.2rem;
    }

    .logo-text .sub {
        font-size: 0.62rem;
        letter-spacing: 1.2px;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.88rem;
    }

    .nav-cta {
        padding: 0.68rem 1.2rem;
    }
}

@media (max-width: 1320px) {
    .nav-container {
        padding: 0.85rem 2.6%;
        gap: 1.25rem;
    }

    .logo-img {
        width: 76px;
        height: 66px;
    }

    .logo-text .main {
        font-size: 1.08rem;
    }

    .logo-text .sub {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.84rem;
    }

    .nav-cta {
        padding: 0.64rem 1rem;
        gap: 6px;
    }
}

@media (max-width: 1240px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }

    .report-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .methodology-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 5% 60px;
        min-height: 90vh;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .stat-number {
        font-size: 2.5rem;
        min-height: 2.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .trust-container {
        gap: 2rem;
    }

    .services-grid,
    .pricing-grid,
    .features-grid,
    .cert-grid,
    .testimonials-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .trusted-by {
        padding: 5rem 5%;
    }

    .case-studies {
        padding: 5rem 5%;
    }

    .trusted-stats {
        gap: 1.5rem;
    }

    .trusted-stat-number {
        font-size: 1.5rem;
    }

    .case-study-card h3 {
        font-size: 1.15rem;
        padding: 1.2rem 1.5rem 0;
    }

    .case-study-body {
        padding: 1rem 1.5rem 1.5rem;
    }

    .sample-report {
        padding: 5rem 5%;
    }

    .report-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .report-actions {
        flex-direction: column;
    }

    .report-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .cookie-text-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-pref-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .cookie-preferences {
        padding: 0 1.5rem;
    }

    .case-study-header {
        padding: 1.2rem 1.5rem;
    }

    .metric-value {
        font-size: 1.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .logo-text .main {
        font-size: 1.2rem;
    }

    .logo-text .sub {
        font-size: 0.65rem;
    }

    .logo-svg,
    .logo-img {
        width: 45px;
        height: 45px;
    }

    .services,
    .certifications,
    .pricing,
    .why-choose,
    .contact,
    .methodology,
    .testimonials,
    .faq {
        padding: 5rem 5%;
    }

    .service-card,
    .cert-card,
    .pricing-card,
    .feature-card,
    .contact-form {
        padding: 2rem;
    }

    .methodology-step {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 0;
    }

    .methodology-step:hover {
        transform: none;
    }

    .step-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .step-content {
        flex-direction: column;
        gap: 1rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-icon .material-icons {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::before {
        display: none;
    }

    .whatsapp-float::after {
        display: none;
    }

    /* Subpage hero responsive */
    .hero--subpage {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: 40vh;
    }

    .hero--subpage h1 {
        font-size: 2.2rem;
    }

    /* CTA section responsive */
    .cta-section {
        padding: 4rem 5%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Free Resources Banner responsive */
    .resources-banner {
        padding: 3rem 5%;
    }

    .resources-banner-grid {
        grid-template-columns: 1fr;
    }

    /* Case study metrics responsive */
    .case-study-metrics {
        grid-template-columns: 1fr;
    }

    /* Blog utilities responsive */
    .blog-card-title {
        font-size: 1.25rem;
    }

    .newsletter-input {
        min-width: 0;
        width: 100%;
    }

    .blog-article {
        padding: 6rem 5% 3rem;
    }

    /* Service card heading responsive */
    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Contact map responsive */
    .map-container iframe {
        height: 220px;
    }
}

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

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

    .package-price {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .trust-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Subpage hero small phones */
    .hero--subpage {
        padding-top: 90px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero--subpage h1 {
        font-size: 1.8rem;
    }

    /* CTA section small phones */
    .cta-section {
        padding: 3rem 5%;
    }

    /* Hero description small phones */
    .hero-description {
        font-size: 0.95rem;
    }

    /* Service card small phones */
    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Blog card title small phones */
    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-article {
        padding: 5rem 4% 2rem;
    }

    /* Feature cards small phones */
    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Certifications small phones */
    .cert-card h3 {
        font-size: 1.25rem;
    }

    /* Footer small phones */
    .footer-container {
        gap: 1.5rem;
    }

    /* Section header small phones */
    .section-header {
        margin: 0 auto 3rem;
    }

    /* Contact map small phones */
    .map-container iframe {
        height: 180px;
    }

    /* Newsletter stacks fully */
    .newsletter-input {
        min-width: 0;
        width: 100%;
    }

    /* Resources banner small phones */
    .resources-banner {
        padding: 2.5rem 5%;
    }
}

/* Legal Pages Styling */
.legal-content {
    background: var(--bg-light);
}

.legal-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.98));
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-red);
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.legal-section h3 {
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.legal-section li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--hover-red);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .scroll-progress,
    #navbar,
    .hamburger,
    .mobile-menu,
    .mobile-menu-overlay,
    .back-to-top,
    .scroll-indicator,
    .whatsapp-float {
        display: none !important;
    }

    .logo-carousel,
    .cookie-consent {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-gray: #000000;
        --medium-gray: #4A4A4A;
    }
}
