:root {
    --primary-green: #256029;
    --pale-green: #388E3C;
    --dark-text: #1A1A1A;
    --light-bg: #F9FAF9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Abhaya Libre', Georgia, 'Times New Roman', Times, serif;
}

body {
    background: linear-gradient(145deg, rgba(230, 243, 230, 1) 25%, rgba(220, 233, 220, 1) 75%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background-size: cover;
    min-height: 100vh;
    position: relative;
    /* Improve font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0.5;
    pointer-events: none;
}

body::after {
    display: none;
}

/* Ensure content stays above the paper effect layers */
.navbar, main, .hero-content {
    position: relative;
    z-index: 1;
}

#typed-heading {
    min-height: 1.2em;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#typed-text {
    display: inline;
}

#typed-cursor {
    display: inline-block;
    opacity: 0;
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% { opacity: 1; }
}

#typed-heading.finished-typing #typed-cursor {
    display: none;
}

/* Hide blinking cursor on mobile */
@media (max-width: 768px) {
    #typed-heading {
        white-space: pre-wrap;
        word-break: break-word;
    }
    #typed-cursor {
        display: none !important;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Abhaya Libre', Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

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

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

.try-btn {
    background: white;
    color: var(--dark-text);
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-text);
}

.try-btn:hover {
    background: var(--dark-text);
    color: white;
}

.try-btn.inverted {
    background: var(--dark-text);
    color: white;
    border: 1px solid var(--dark-text);
}
.try-btn.inverted:hover {
    background: white;
    color: var(--dark-text);
}

.hero {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    width: 100%;
    text-align: left;
    margin-bottom: 4rem;
}

.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-wrapper {
    width: 100vw;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 0;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.feature {
    background: transparent;
    padding: 0.25rem 2rem 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.feature-content {
    padding: 0;
    text-align: left;
}

.feature:last-child {
    border-bottom: none;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    text-align: left;
    font-size: 1.2rem;
}

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

.newsletter-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    scroll-margin-top: 10px;
}

.newsletter-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.submit-btn {
    background: white;
    color: var(--dark-text);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--dark-text);
    border-radius: 0.25rem;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-text);
    color: white;
}

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

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        flex-direction: column;
        margin: 3rem auto;
    }

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

    .features {
        flex-direction: column;
    }

    .nav-right > .try-btn {
        display: none;
    }
}

.geometric {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.5); /* White border with 50% opacity */
    animation: rotate 20s infinite linear;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Adjust other elements for better contrast */
.navbar, .newsletter-form, .feature {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 1rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 2rem;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.5rem 0;
}

.close-menu {
    position: absolute;
    right: 2rem;
    top: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero h1 {
    font-family: 'Abhaya Libre', Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: left;
}

.description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.site-footer {
    background: #fff;
    color: #1A1A1A;
    width: 100%;
    padding: 2rem 0 1rem 0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    margin-top: 4rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
    flex-wrap: wrap;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.footer-logo {
    height: 48px;
    width: auto;
    background: none;
    border-radius: 8px;
    padding: 4px;
}
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.footer-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #1A1A1A;
}
.footer-copyright {
    font-size: 0.95rem;
    color: #444;
}
.footer-right {
    min-width: 220px;
}
.footer-section-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1A1A1A;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary-green, #519872);
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 0 1rem;
    }
    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .footer-right {
        min-width: unset;
    }
}
.centered-waitlist-btn {
    display: flex;
    justify-content: center;
    margin: 2rem 0 2.5rem 0;
}

/* Industry Showcase Styles */
.industry-showcase {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 350px;
}

.industry-tabs {
    width: 250px;
    background: var(--light-bg);
    padding: 1.5rem 0;
    border-right: 1px solid rgba(0,0,0,0.1);
    /* Make the left column scrollable */
    max-height: 350px;
    overflow-y: auto;
}

.industry-tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.industry-tab:hover {
    background: rgba(81, 152, 114, 0.1);
    color: var(--primary-green);
}

.industry-tab.active {
    background: white;
    border-left: 3px solid var(--primary-green);
    color: var(--primary-green);
}

.industry-content {
    flex: 1;
    padding: 2rem;
    position: relative;
    height: 100%;
    overflow-y: auto;
}

.industry-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.industry-panel.active {
    display: block;
}

.industry-panel h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.target-user {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: left;
}

/* New module-list styles */
.module-list {
    list-style: disc outside;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 2.5rem;
    padding-left: 0;
    margin: 0;
    text-align: left;
}
.module-list > li {
    break-inside: avoid;
    margin-bottom: 1.2em;
    font-size: 1.08rem;
    color: var(--dark-text);
    text-align: left;
    margin-left: 0;
}
.module-list > li > strong {
    font-weight: 600;
    color: var(--primary-green);
}
.module-list ul {
    list-style: circle outside;
    margin-top: 0.3em;
    margin-bottom: 0.2em;
    padding-left: 1.2em;
    text-align: left;
}
.module-list .sub-bullet {
    color: #666;
    font-size: 0.98rem;
    font-weight: 400;
    margin-top: 0.1em;
    text-align: left;
}

@media (max-width: 900px) {
    .module-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

@media (max-width: 768px) {
    .industry-showcase {
        flex-direction: column;
        height: auto;
        min-height: unset;
        max-width: 100%;
    }
    .industry-tabs {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 0.5rem 0;
        display: flex;
        overflow-x: auto;
        background: var(--light-bg);
    }
    .industry-tab {
        flex: 1 0 auto;
        text-align: center;
        font-size: 1.1rem;
        padding: 0.75rem 0.5rem;
        min-width: 140px;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 0;
    }
    .industry-tab.active {
        border-bottom: 3px solid var(--primary-green);
        border-left: none;
        background: white;
        color: var(--primary-green);
    }
    .industry-content {
        padding: 1rem 0.5rem;
        height: auto;
        min-height: unset;
        overflow: visible;
    }
    .industry-panel {
        display: none;
        animation: none;
        max-height: none;
        overflow: visible;
        border: none;
        margin-bottom: 0;
    }
    .industry-panel.active {
        display: block;
    }
    .module-list {
        columns: 1 !important;
        -webkit-columns: 1 !important;
        -moz-columns: 1 !important;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Add styles for Why TaylorIQ block */
.whytaylor-bullets-wrapper {
    width: 100vw;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 0 1.5rem 0;
    margin-bottom: 3rem;
}
.whytaylor-bullets {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    list-style: disc inside;
    font-size: 1.13rem;
    color: var(--dark-text);
    line-height: 1.7;
}
.whytaylor-bullets li {
    margin-bottom: 1.1em;
    padding-left: 0.2em;
}
.whytaylor-bullets strong {
    font-weight: 700;
    color: var(--primary-green);
}
@media (max-width: 600px) {
    .whytaylor-bullets {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .newsletter-form iframe {
        height: 700px !important;
    }
}

/* FAQ styles */
.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 0 0 1.5rem 0;
}
.faq-list {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    cursor: pointer;
    font-size: 1.18rem;
    font-weight: 600;
    color: #000;
    padding: 1.3rem 0 1.1rem 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
.faq-question:hover {
    color: #2d5c3a;
}
.faq-toggle {
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: transform 0.2s;
    color: #888;
}
.faq-answer {
    display: none;
    padding: 0 0 1.2rem 0.5rem;
    color: #000;
    font-size: 1.08rem;
    line-height: 1.7;
    text-align: left;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-toggle {
    transform: rotate(90deg);
}
.faq-bullets {
    list-style: disc inside;
    margin: 0.5em 0 0 0;
    padding: 0;
    color: #000;
    text-align: left;
}
.faq-bullets li {
    margin-bottom: 0.3em;
    font-size: 1.05rem;
    color: #000;
    text-align: left;
}
.faq-bullets strong {
    color: #000;
    font-weight: 700;
}
@media (max-width: 900px) {
    .faq-wrapper {
        max-width: 98vw;
        padding: 0 0 1.5rem 0;
    }
    .faq-list {
        padding: 0 1rem;
    }
} 