:root {
    --primary-color: #5e2c91; /* Dark purple */
    --primary-light: #7b45a9;
    --primary-dark: #451f6b;
    --secondary-color: #34c4f7; /* Bright blue for accents */
    --text-color: #333333;
    --light-text: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-wrap: break-word;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.cta {
    font-size: 1.1rem;
    padding: 14px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(94, 44, 145, 0.2);
}

.cta:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(94, 44, 145, 0.2);
}

/* Header */
header {
    padding: 25px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: auto;
    max-height: 60px;
    border-radius: 8px;
    transition: height 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
}

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

.hero h1 {
    word-break: break-word;
    hyphens: none;
    margin-bottom: 0.8rem;
}

.hero .subtitle {
    word-break: break-word;
    hyphens: none;
    margin-bottom: 1.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235e2c91' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 100%;
}

.hero-image {
    flex: 1;
}

.dashboard {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.subtitle {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.integration-logos {
    margin-top: 3rem;
}

.integration-logos p {
    font-weight: 500;
    margin-bottom: 1rem;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.psa-logo {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    object-fit: contain;
    max-width: 100%;
}

.psa-logo:hover {
    opacity: 1;
}

/* Ensure specific logos are sized properly */
.psa-logo[alt="Autotask PSA"] {
    height: 38px;
    margin-top: 2px;
}

.psa-logo[alt="HP"] {
    height: 42px;
}

.psa-logo[alt="Dell"] {
    height: 42px;
}

.psa-logo[alt="Lenovo"] {
    height: 35px;
}

/* Trust & Value Section */
.trust-value {
    padding: 80px 0;
    background-color: #ffffff;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-gray);
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Product Highlights Section */
.product-highlights {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.highlight-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.dashboard-container {
    flex: 1;
    position: relative;
    max-width: 100%;
}

.annotated-dashboard {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.annotation {
    position: absolute;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-width: 200px;
}

.a1 {
    top: 15%;
    left: 0;
}

.a2 {
    top: 35%;
    right: 0;
}

.a3 {
    bottom: 35%;
    left: 0;
}

.a4 {
    bottom: 15%;
    right: 0;
}

.highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight {
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background-color: white;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Comparison Table Section */
.comparison {
    padding: 80px 0;
    background-color: white;
}

.table-container {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.comparison-table tr:hover {
    background-color: rgba(94, 44, 145, 0.05);
}

.yes {
    color: var(--success-color);
    font-size: 1.3rem;
}

.no {
    color: var(--danger-color);
    font-size: 1.3rem;
}

/* Trust Building Section */
.trust-building {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

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

.trust-building p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.final-cta h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #333;
    color: var(--light-text);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional responsive refinements */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container, 
    .highlight-container {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .features {
        flex-direction: column;
    }
    
    .annotation {
        position: static;
        margin-bottom: 10px;
        width: fit-content;
        max-width: 100%;
        display: block;
    }
    
    .dashboard-container {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .dashboard {
        transform: scale(1);
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .highlight-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    header {
        padding: 20px 0;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    .hamburger {
        order: 2;
    }
    
    .logo img {
        height: 70px;
    }
    
    nav {
        display: none;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 200;
    }
    .hamburger div {
        width: 100%;
        height: 4px;
        background-color: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    .nav-open nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .annotation {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .psa-logo {
        width: 100px;
        height: auto;
        margin: 0 5px;
    }
    
    .logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 100%;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .cta {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .highlight {
        padding: 15px;
    }
    
    .product-highlights,
    .trust-value,
    .comparison,
    .trust-building,
    .final-cta {
        padding: 50px 0;
    }
    
    .hero h1 .no-break {
        display: block;
    }
    
    .mobile-title {
        display: block;
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .desktop-title {
        display: none;
    }
    
    .mobile-only-break {
        display: inline;
    }
    
    .hero {
        padding: 40px 0 30px;
    }
    
    .logo {
        float: block;
    }
    .hamburger {
        display: block;
    }
}

@media (max-width: 480px) {
        h1 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero .subtitle .no-break {
        display: block;
        margin-bottom: 0.2rem;
    }
    
    .integration-logos {
        margin-top: 1.5rem;
    }
    
    .integration-logos p {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .psa-logo {
        width: 80px;
        height: auto;
        margin: 0 3px;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
    }
    
    .logo img {
        height: 60px;
    }
    
    nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    
    .btn-secondary {
        width: 100%;
    }
    
    .facebook-share {
        min-width: 44px;
        padding: 10px;
    }
    
    .facebook-share span {
        display: none;
    }
    
    .mobile-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero .cta {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding-right: 5px;
        padding-left: 5px;
    }
    
    .integration-logos {
        margin-top: 1.2rem;
    }
    
    .logos {
        gap: 8px;
    }
    
    .psa-logo {
        width: 70px;
    }
    
    .mobile-title {
        font-size: 1.5rem;
    }
}

.vendor-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 5px 12px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.vendor-name:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Social Sharing */
.social-share {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-share p {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.facebook-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1877f2;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
}

.facebook-share:hover {
    background-color: #166fe5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.facebook-share svg {
    width: 20px;
    height: 20px;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
}

.no-break {
    white-space: nowrap;
    display: inline-block;
}

.mobile-title {
    display: none;
}

.mobile-only-break {
    display: none;
}

.desktop-title {
    display: block;
} 