:root {
    --primary-gradient-start: #F5A623;
    --primary-gradient-end: #F5614F;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --bg-light-gray: #F5F5F5;
    --success-green: #10B981;
    --cta-coral: #F5614F;
    --border-light: #E5E5E5;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.65em;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-light-gray);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gradient-start);
}

.emergency-link {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-off-white), var(--bg-light-gray));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.network-animation {
    width: 100%;
    height: 100%;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
    pointer-events: none;  /* Allow mouse events to pass through to background */
}

.hero-content * {
    pointer-events: auto;  /* Re-enable pointer events for interactive elements */
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
}

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

.services-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-gradient-start);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-gradient-end);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 8px;
}

.trust-section {
    padding: 5rem 0;
    background: var(--bg-off-white);
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.trust-description {
    color: var(--text-light);
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--text-dark);
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-label {
    opacity: 0.9;
}

.emergency-phone {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
}

.testimonial-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light-gray);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-gradient-start);
}

.footer-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stat {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.875rem;
}

.emergency-notice {
    color: var(--primary-gradient-start);
    font-weight: 600;
    margin-bottom: 1rem;
}

.emergency-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.response-time {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Service Page Common Styles */
.page-header {
    background: linear-gradient(135deg, var(--bg-off-white), var(--bg-light-gray));
    padding: 4rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.service-hero {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin: 1rem 0;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.service-icon-hero {
    color: white;
    margin-bottom: 1rem;
}

.service-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.service-hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-details {
    padding: 5rem 0;
}

.service-overview-full {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    text-align: left;
}

.service-features-section {
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-highlight {
    background: var(--bg-off-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-grid-fullwidth {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-benefits {
    background: var(--bg-off-white);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem auto;
    max-width: 1200px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item h4 {
    color: var(--primary-gradient-start);
    margin-bottom: 0.5rem;
}

.service-cta {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

/* Managed IT Specific Styles */
.it-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-option {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.best-option {
    border-color: var(--primary-gradient-start);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.02), rgba(245, 97, 79, 0.02));
}

.best-label {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.option-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.option-icon {
    color: var(--primary-gradient-start);
    margin-bottom: 1rem;
}

.option-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
}

.pros-cons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro-item,
.con-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pro-item .checkmark {
    flex-shrink: 0;
    color: #22c55e;
    font-size: 18px;
    font-weight: bold;
    width: 18px;
    text-align: center;
}

.con-item svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 16px;
    height: 16px;
}

.pro-item span {
    color: var(--text-dark);
}

.con-item span {
    color: var(--text-light);
}

/* Services Listing Page Styles */
.services-detail-section {
    padding: 5rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    color: var(--primary-gradient-start);
    flex-shrink: 0;
}

.service-tagline {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.service-features h4 {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-check {
    color: var(--success-green);
    flex-shrink: 0;
}

.service-action {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.pricing-section {
    background: var(--bg-off-white);
    padding: 5rem 0;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary-gradient-start);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-top: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

/* Cybersecurity Page Styles */
.threat-map-section {
    background: #1a1a1a;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.threat-map-hero {
    padding: 3rem 0;
}

.service-icon-hero {
    color: white;
    margin-bottom: 1rem;
}

.threat-map-content h1 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
    color: white;
}

.threat-map-content h2 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.threat-map-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.threat-map-container {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 920px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

#globe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    z-index: 1000;
    text-align: center;
    color: white;
}

/* New Attack Statistics Section */
.attack-stats-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.attack-stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2C2C2C;
}

.stats-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.attack-types-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.attack-type-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.attack-type-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.attack-type-item.active {
    background: linear-gradient(135deg, #F5A623 0%, #F5614F 100%);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.3);
}

.attack-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.attack-type-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.attack-count {
    font-size: 1.3rem;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
}

.attack-rate {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 500;
}

.attack-type-item.active .attack-rate {
    opacity: 0.9;
}

.attack-description-panel {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.attack-detail-content h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.detail-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-stat .stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.detail-stat .stat-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e74c3c;
    font-variant-numeric: tabular-nums;
}

.detail-description {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444;
}

.detail-solution h4 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.detail-solution ul {
    list-style: none;
    padding: 0;
}

.detail-solution li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.detail-solution li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6bcf7f;
    font-weight: bold;
}

/* Globe Stats Container (Non-interactive display) */
#stats-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7), transparent);
    padding: 30px 20px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 100;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    min-width: 150px;
    animation: fadeIn 1s ease-out;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
    font-weight: 500;
    color: white;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px currentColor;
}

.stat-rate {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 2px;
    color: white;
}

/* Color coding for different threat types */
.phishing { color: #ff6b6b; }
.malware { color: #ffd93d; }
.ddos { color: #6bcf7f; }
.webapp { color: #4ecdc4; }
.iot { color: #a8e6cf; }

/* Cybersecurity CTA Section */
.cybersecurity-cta {
    background: #2C2C2C;
    padding: 4rem 0;
    text-align: center;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
}

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

.cta-actions .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.title {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    animation: fadeIn 2s ease-out;
    pointer-events: none;
}

.title h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
}

.threat-map-cta {
    margin-top: 3rem;
}

.threat-map-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.threat-map-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.threat-map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.threat-map-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.threat-map-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-details {
    padding: 5rem 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-highlight {
    background: var(--bg-off-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.feature-icon {
    color: var(--primary-gradient-start);
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.security-threats {
    background: var(--bg-off-white);
    padding: 5rem 0;
}

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

.threat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #e74c3c;
}

.threat-item h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-cta {
    padding: 5rem 0;
    text-align: center;
}

.contact-info {
    margin-top: 1rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--primary-gradient-start);
    font-weight: 600;
}

/* Info button styles */
#info-button {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 200;
}

#info-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-grid,
    .trust-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }

    /* Service page responsive styles */
    .feature-grid-fullwidth {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-overview-full {
        margin-bottom: 3rem;
    }
    
    .it-comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-option {
        padding: 1.5rem;
    }
    
    .option-header h3 {
        font-size: 1.1rem;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Cybersecurity responsive styles */
    .stats-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attack-type-item:hover,
    .attack-type-item.active {
        transform: translateX(0);
    }
    
    .detail-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .attack-stats-section h2 {
        font-size: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
    }
    .stat-value {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    #stats-container {
        padding: 20px 10px 15px;
        gap: 10px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .threat-map-content h1 {
        font-size: 2rem;
    }
    
    .threat-map-content h2 {
        font-size: 2rem;
    }
    
    .threat-map-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .threat-map-container {
        margin: 2rem 0;
        height: 400px;
    }
    
    .title h1 {
        font-size: 1.3rem;
    }
    
    .threat-map-cta p {
        font-size: 1.1rem;
    }
}