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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-brand h1 {
    color: #3498db;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-marketing,
.nav-account {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-marketing {
    margin-left: auto;
    margin-right: 3rem;
}

.nav-account {
    gap: 1.5rem;
}

.nav-marketing a,
.nav-account a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-marketing a:hover,
.nav-account a:hover {
    color: #3498db;
}

.nav-account::before {
    content: "";
    width: 1px;
    height: 30px;
    background: #e9ecef;
    margin-right: 1rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #555 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #3498db !important;
    border-left-color: #3498db;
}

.cta-button {
    background: #3498db;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255,140,0,0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,140,0,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden;
}


/* Dynamic grid squares */
.grid-square {
    position: absolute;
    width: 39px;
    height: 39px;
    background: rgba(255,140,0,0.3);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    box-sizing: border-box;
}


@keyframes gridSquarePulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #fff;
}

.hero-badge span {
    font-weight: 600;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.7);
    color: #ffffff;
}

.hero-title .highlight {
    color: #ff8c00;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-visual {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-visual i {
    font-size: 1.5rem;
    color: #ff8c00;
}

.feature-text {
    text-align: left;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-guarantee {
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.guarantee-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.hero-trust {
    margin: 0;
    opacity: 0.8;
}

.hero-trust p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 1.5rem 0;
    flex-wrap: wrap;
}

/* Buttons */
.primary-button {
    background: linear-gradient(45deg, #ff8c00, #ff7800);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.primary-button:hover {
    background: linear-gradient(45deg, #ff7800, #ff8c00);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

/* Why SSG Section */
.why-ssg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-ssg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff8c00" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ff8c00" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ff8c00" opacity="0.1"/><rect x="60" y="10" width="2" height="2" fill="%23ff8c00" opacity="0.1"/><rect x="10" y="60" width="1.5" height="1.5" fill="%23ff8c00" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    animation: float 20s infinite linear;
    pointer-events: none;
}

.why-ssg-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-ssg-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.why-ssg-intro::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff8c00, #ff7800);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.1;
}

.why-ssg-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.why-ssg-intro p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

.why-ssg-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.why-ssg .benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #ff8c00;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-ssg .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
    border-radius: 0 15px 0 50px;
}

.why-ssg .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.15);
}

.why-ssg .benefit-item:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.why-ssg .benefit-item:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.why-ssg .benefit-item:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.why-ssg .benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f2f6;
}

.why-ssg .benefit-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.why-ssg .benefit-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.why-ssg .benefit-icon i {
    font-size: 1.3rem;
    color: white;
}

.why-ssg .benefit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    .why-ssg-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item {
        padding: 2rem;
    }

    .why-ssg-intro {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .why-ssg-intro p {
        font-size: 1.1rem;
    }
}

/* Features Section */
.features {
    background: #ffffff;
}

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

.feature-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Segments Section */
.segments {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.segments .section-title {
    color: white;
}

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

.segment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.segment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.segment-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.segment-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.segment-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.segment-link:hover {
    border-bottom-color: white;
}

/* Pricing Section */
.pricing {
    background: #f8f9fa;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.pricing-card.featured {
    border-color: #3498db;
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
}

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

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f1f3f4;
}

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

.pricing-button {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    display: inline-block;
    transition: background 0.3s ease;
}

.pricing-button:hover {
    background: #2980b9;
}

/* About Section */
.about {
    background: white;
}

/* Rotating Content Styles */
.rotating-content {
    position: relative;
}

.rotating-slides {
    position: relative;
    min-height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-arrow {
    background: transparent;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-arrow:hover {
    background: #ff8c00;
    color: white;
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    border-color: #ff8c00;
    transform: scale(1.2);
}

.indicator.active {
    background: #ff8c00;
    border-color: #ff8c00;
}

.roi-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.roi-item {
    text-align: center;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    min-width: 140px;
}

.roi-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8c00;
    line-height: 1;
}

.roi-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
    display: block;
}

.industry-cta {
    margin-top: 1.5rem;
    margin-bottom: 6rem;
    text-align: center;
}

.industry-cta .secondary-button {
    background: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.industry-cta .secondary-button:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-2px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat h4 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 2rem;
}

.contact-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 250px;
}

.contact-form button {
    flex-shrink: 0;
}

.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Broken Codes Section */
.broken-codes {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 4rem 0;
}

.broken-codes .section-title {
    color: white;
    margin-bottom: 3rem;
}

.broken-codes-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.broken-codes-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.broken-codes-stats .stat-large:nth-child(3) {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0;
}

.stat-large {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-large h3 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.broken-codes-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.broken-codes-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.benefit-check {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Comparison Table */
.feature-comparison {
    margin-bottom: 3rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
    color: #555;
    font-weight: 500;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background: #e3f2fd;
}

.comparison-table .section-header {
    background: #3498db !important;
}

.comparison-table .section-header td {
    color: white !important;
    font-weight: 600;
    padding: 0.8rem 1rem;
    text-align: left;
}

.comparison-table .section-header:hover {
    background: #3498db !important;
}

.comparison-table th small {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #bdc3c7;
}

.lemuridae-logo {
    height: 20px;
    vertical-align: middle;
    margin-left: 0.5rem;
    transition: opacity 0.3s ease;
}

.lemuridae-logo:hover {
    opacity: 0.8;
}

.lemuridae-credit {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lemuridae-credit:hover {
    color: #ff8c00;
    text-decoration: none;
}

/* Trust Indicators Section */
.trust-indicators {
    background: #f8f9fa;
    padding: 4rem 0;
    border-top: 1px solid #e9ecef;
}

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

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

.trust-icon {
    background: #ff8c00;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.trust-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: #666;
    font-size: 0.9rem;
}

.social-proof {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

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

.proof-stat {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8c00;
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
    display: block;
}

/* Enhanced Contact Section */
.urgency-note {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.urgency-note p {
    margin: 0;
    color: #e67e22;
    font-size: 0.95rem;
}

.guarantee-note {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
    text-align: center;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .nav-marketing,
    .nav-account {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-marketing {
        margin-right: 2rem;
    }

    .nav-account::before {
        display: none;
    }

    .hero {
        padding: 8rem 1rem 4rem;
        min-height: 80vh;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form form {
        flex-direction: column;
    }

    .contact-form input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .nav-marketing,
    .nav-account {
        display: none;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

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

    .features-grid,
    .segments-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .broken-codes-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .broken-codes-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .broken-codes-stats .stat-large:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
}