/* Data Publisher for Word - Marketing Website Styles */

/* CSS Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #323130;
    background-color: #ffffff;
}

.hidden {
    display: none !important;
}

/* Header and Navigation */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #edebe9;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-weight: 600;
    color: #0078d4;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: #323130;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0078d4;
}

.cta-button {
    margin-left: 16px;
}

.mobile-menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 20px;
}

/* Mobile Navigation */
.mobile-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #edebe9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #323130;
    font-weight: 400;
    padding: 8px 0;
    border-bottom: 1px solid #f3f2f1;
}

.mobile-cta-button {
    margin-top: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: white;
    padding: 80px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::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="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    display: block;
    opacity: 0.8;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-cta,
.hero-demo {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.hero-cta {
    background-color: #ffffff;
    color: #0078d4;
    border-color: #ffffff;
}

.hero-cta:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-demo {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-demo:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-note {
    opacity: 0.8;
    margin-top: 16px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.demo-preview {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.demo-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    color: #323130;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.demo-before,
.demo-after {
    text-align: center;
}

.demo-arrow {
    font-size: 2rem;
    color: #0078d4;
    font-weight: bold;
}

.time-indicator {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 8px;
}

.time-indicator.error {
    background-color: #d13438;
    color: white;
}

.time-indicator.success {
    background-color: #107c10;
    color: white;
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #323130;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #605e5c;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    gap: 40px;
}

.feature-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #323130;
}

.feature-description {
    color: #605e5c;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background-color: white;
}

.tabs-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    background-color: #edebe9;
    border-bottom: 1px solid #d2d0ce;
}

.tab-button {
    flex: 1;
    padding: 16px 12px;
    border: none;
    background-color: transparent;
    color: #605e5c;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-button:hover {
    background-color: #d2d0ce;
    color: #323130;
}

.tab-button.active {
    background-color: #0078d4;
    color: white;
}

.tab-button i {
    font-size: 18px;
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.use-case-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #0078d4;
}

.use-case-description {
    color: #605e5c;
    margin-bottom: 24px;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.use-case-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.use-case-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #107c10;
    font-weight: bold;
}

.roi-highlight {
    background-color: #e8f4fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0078d4;
}

.roi-stat {
    font-size: 2rem;
    font-weight: 700;
    color: #0078d4;
    display: block;
}

.roi-text {
    color: #605e5c;
    margin-top: 4px;
}

.use-case-example {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.use-case-example blockquote {
    font-style: italic;
    margin: 16px 0;
    color: #323130;
    border-left: 4px solid #0078d4;
    padding-left: 16px;
}

.use-case-example cite {
    color: #605e5c;
    font-style: normal;
}

.enterprise-features,
.compliance-features {
    list-style: none;
    padding: 0;
}

.enterprise-features li,
.compliance-features li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.enterprise-features li::before,
.compliance-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0078d4;
    font-weight: bold;
}

/* ROI Calculator Section */
.roi-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.calculator-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #323130;
}

.ms-Dropdown,
.ms-TextField-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d0ce;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.ms-Dropdown:focus,
.ms-TextField-field:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
}

.custom-inputs-hidden {
    display: none;
}

.calculator-results-hidden {
    display: none;
}

.result-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.result-before,
.result-after {
    text-align: center;
}

.result-time {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 8px 0;
}

.result-cost {
    font-size: 1.25rem;
    color: #605e5c;
}

.result-arrow {
    font-size: 2rem;
    color: #0078d4;
    font-weight: bold;
}

.result-savings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.savings-highlight {
    text-align: center;
    padding: 20px;
    background-color: #e8f4fd;
    border-radius: 8px;
}

.savings-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0078d4;
}

.savings-label {
    color: #605e5c;
    margin-top: 4px;
}

.roi-testimonials {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-item {
    padding: 20px 0;
    border-bottom: 1px solid #edebe9;
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0078d4;
}

.testimonial-text {
    color: #605e5c;
    margin-top: 4px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: white;
}

.pricing-cards {
    display: grid;
    gap: 32px;
}

.pricing-card {
    background-color: white;
    border: 2px solid #edebe9;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended {
    border-color: #0078d4;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0078d4;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #323130;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0078d4;
}

.price-period {
    font-size: 1.25rem;
    color: #605e5c;
}

.pricing-annual {
    color: #605e5c;
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #323130;
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    font-weight: 600;
}

.pricing-notes {
    text-align: center;
    margin-top: 40px;
    color: #605e5c;
}

.pricing-link {
    color: #0078d4;
    text-decoration: none;
}

.pricing-link:hover {
    text-decoration: underline;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.demo-video-container {
    background-color: #323130;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.demo-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.demo-play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.demo-play-button:hover {
    transform: scale(1.1);
}

.demo-play-button i {
    font-size: 32px;
    color: #0078d4;
    margin-left: 4px;
}

.demo-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    color: white;
}

.demo-features {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.demo-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.demo-checklist li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.demo-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #107c10;
    font-weight: bold;
}

.demo-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.demo-stat {
    text-align: center;
}

.demo-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0078d4;
    display: block;
}

.demo-stat .stat-label {
    color: #605e5c;
    margin-top: 4px;
}

.demo-cta {
    text-align: center;
    margin-top: 60px;
}

.demo-cta h3 {
    margin-bottom: 24px;
    color: #323130;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-options {
    margin-bottom: 60px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background-color: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #323130;
}

.contact-description {
    color: #605e5c;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-cta {
    width: 100%;
    padding: 16px;
    font-weight: 600;
}

.contact-info {
    border-top: 1px solid #edebe9;
    padding-top: 40px;
}

.contact-details h4 {
    margin-bottom: 24px;
    color: #323130;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #605e5c;
}

.contact-item i {
    color: #0078d4;
    font-size: 18px;
}

.social-links h4 {
    margin-bottom: 24px;
    color: #323130;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: #106ebe;
}

.social-link i {
    font-size: 18px;
}

/* Footer */
.site-footer {
    background-color: #323130;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-title {
    font-weight: 600;
    color: white;
}

.footer-description {
    color: #d2d0ce;
    margin-bottom: 24px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #d2d0ce;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #484644;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-copyright {
    text-align: center;
    color: #d2d0ce;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .demo-card {
        flex-direction: column;
        text-align: center;
    }

    .demo-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-button {
        padding: 16px;
    }

    .tab-content {
        padding: 20px;
    }

    .result-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .result-arrow {
        transform: rotate(90deg);
    }

    .demo-stats {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-card.recommended {
        transform: none;
    }

    .social-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .nav-container,
    .section-container,
    .hero-container,
    .footer-container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 60px 0 80px 0;
    }

    .features-section,
    .use-cases-section,
    .roi-section,
    .pricing-section,
    .demo-section,
    .contact-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .calculator-card,
    .demo-features,
    .contact-card {
        padding: 24px;
    }

    .tab-content {
        padding: 16px;
    }
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

/* Input Help Text */
.input-help {
    display: block;
    color: #605e5c;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4;
}

/* Button Styles */
.ms-Button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.ms-Button--primary {
    background-color: #0078d4;
    color: white;
    border: 2px solid #0078d4;
}

.ms-Button--primary:hover {
    background-color: #106ebe;
    border-color: #106ebe;
}

.ms-Button--primary:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.4);
}

.ms-Button--primary:disabled {
    background-color: #d2d0ce;
    border-color: #d2d0ce;
    color: #a19f9d;
    cursor: not-allowed;
}

.ms-Button--secondary {
    background-color: transparent;
    color: #0078d4;
    border: 2px solid #0078d4;
}

.ms-Button--secondary:hover {
    background-color: #f3f2f1;
}

.ms-Button-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}