/* ============================================
   TMG Project Center - Main Styles
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #0066CC;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: transparent;
    color: #FF9F4A;
    border: 2px solid #FF9F4A;
}

.btn-secondary:hover {
    background-color: #FF9F4A;
    color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: #0066CC;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-small {
    padding: 8px 24px;
    font-size: 0.9rem;
}

/* Header / Navigation */
.header {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 80px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0066CC;
}

.btn-contact {
    background-color: #0066CC;
    color: #ffffff !important;
    padding: 8px 24px;
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: #0052a3;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    order: 3;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    order: 2;
}

.hero-border-box {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #FF9F4A;
    border-radius: 8px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.hero-icon-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    z-index: 3;
}

.hero-icon-overlay img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

/* Platform Intro Section */
.platform-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: #1a1a1a;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Feature Cards Section */
.feature-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.feature-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    background-color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-blue .card-content {
    background-color: #0066CC;
    color: #ffffff;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
}

.card-icon-blue {
    background-color: #0066CC;
}

.card-icon img {
    width: 24px;
    height: 24px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-blue .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

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

/* Track Record Section */
.track-record {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0052a3 0%, #0066CC 100%);
    color: #ffffff;
    text-align: center;
}

.section-title-white {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-card:nth-child(1) .stat-icon {
    background-color: #4A9FD8;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-card:nth-child(2) .stat-icon {
    background-color: #FF9F4A;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-card:nth-child(3) .stat-icon {
    background-color: #FDB913;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Teaser Section */
.pricing-teaser {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e3f2fd;
    color: #0066CC;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-badge img {
    width: 20px;
    height: 20px;
}

.pricing-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a6e 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 3rem auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pricing-cta-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #0a1929;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-column a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Intro Section */
.about-intro {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #ffffff;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-intro-text {
    font-size: 1.125rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Company Logos Section */
.company-logos {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.company-card {
    text-align: center;
}

.company-card img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.company-card p {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.plus-symbol {
    font-size: 3rem;
    color: #0066CC;
    font-weight: 300;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: #0052a3;
}

.timeline-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    border-top: 4px solid;
    padding-top: 1.5rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.timeline-blue {
    border-color: #0066CC;
}

.timeline-light-blue {
    border-color: #4A9FD8;
}

.timeline-orange {
    border-color: #FF9F4A;
}

.timeline-yellow {
    border-color: #FDB913;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-blue .timeline-year {
    color: #0066CC;
}

.timeline-light-blue .timeline-year {
    color: #4A9FD8;
}

.timeline-orange .timeline-year {
    color: #FF9F4A;
}

.timeline-yellow .timeline-year {
    color: #FDB913;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* About Company Sections */
.about-company {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-company:nth-of-type(odd) {
    background-color: #ffffff;
}

.about-company-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-company-text {
    flex: 1;
}

.about-company-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-company-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0066CC;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.about-company-text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

.about-company-image {
    flex: 1;
    position: relative;
}

.about-company-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid #FF9F4A;
    border-radius: 8px;
    z-index: 1;
}

.about-company-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-company-reverse .about-company-content {
    flex-direction: row-reverse;
}

/* Early Access CTA Section */
.early-access-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0052a3 0%, #0066CC 100%);
    color: #ffffff;
    text-align: center;
}

.early-access-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.early-access-cta p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.early-access-benefits-panel {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.early-access-benefits {
    list-style: none;
    text-align: left;
    margin: 0;
}

.early-access-benefits li {
    font-size: 1.125rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.early-access-benefits li:last-child {
    margin-bottom: 0;
}

.early-access-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF9F4A;
    font-size: 1.5rem;
    line-height: 1.8rem;
}

.early-access-timeline {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.btn-orange {
    background-color: #FF9F4A;
    color: #ffffff;
}

.btn-orange:hover {
    background-color: #e88d38;
}

/* AWS Section */
.aws-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.aws-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.aws-text {
    flex: 1;
}

.aws-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.aws-text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

.aws-logo {
    flex: 1;
    text-align: center;
}

.aws-logo img {
    max-width: 300px;
    height: auto;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #ffffff;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-intro-text {
    font-size: 1.125rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Form and Info Section */
.contact-main-section {
    padding: 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    min-height: 600px;
}

/* Contact Info Side - Left - Gray Background */
.contact-info-side {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

.contact-info-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-card {
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-card:nth-child(1) .contact-icon {
    background-color: #0066CC;
}

.contact-info-card:nth-child(2) .contact-icon {
    background-color: #4A9FD8;
}

.contact-info-card:nth-child(3) .contact-icon {
    background-color: #FF9F4A;
}

.contact-info-card:nth-child(4) .contact-icon {
    background-color: #FDB913;
}

.contact-icon svg path {
    stroke: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-card a {
    color: #0066CC;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #0052a3;
}

.contact-info-card p {
    color: #666;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Side - Right - Blue Background */
.contact-form-side {
    flex: 1;
    background-color: #0066CC;
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

.form-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.form-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hubspot-form {
    margin-top: 2rem;
}

/* ============================================
   EARLY ACCESS PROGRAM PAGE STYLES
   ============================================ */

/* Early Access Hero */
.early-access-hero {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #ffffff;
}

.early-access-hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.early-access-intro {
    font-size: 1.125rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Early Access Benefits Section */
.early-access-benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.early-access-benefits-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.early-access-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0066CC;
}

.benefit-card:nth-child(2) .benefit-icon {
    background-color: #FF9F4A;
}

.benefit-card:nth-child(3) .benefit-icon {
    background-color: #4A9FD8;
}

.benefit-card:nth-child(4) .benefit-icon {
    background-color: #FDB913;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Timeline Section */
.early-access-timeline-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.timeline-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 6px solid #FF9F4A;
}

.timeline-box h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.timeline-box p {
    font-size: 1.125rem;
    color: #666;
    font-style: italic;
}

/* Registration Form Section */
.early-access-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.early-access-form-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.early-access-form-section .form-intro {
    text-align: center;
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.early-access-form-section .form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.early-access-form-section .hubspot-form {
    margin: 0;
}

/* ============================================
   FEATURES PAGE STYLES
   ============================================ */

/* Features Intro */
.features-intro {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #ffffff;
}

.features-intro h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.features-intro-text {
    font-size: 1.125rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Feature Summary */
.feature-summary {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-summary .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.summary-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.summary-box:nth-of-type(1) h3 {
    color: #0066CC;
}

.summary-box:nth-of-type(2) h3 {
    color: #4A9FD8;
}

.summary-box:nth-of-type(3) h3 {
    color: #FF9F4A;
}

.summary-box:nth-of-type(4) h3 {
    color: #FDB913;
}

.summary-box:nth-of-type(5) h3 {
    color: #0066CC;
}

.summary-box:nth-of-type(6) h3 {
    color: #4A9FD8;
}

.summary-box:nth-of-type(7) h3 {
    color: #FF9F4A;
}

.summary-box:nth-of-type(8) h3 {
    color: #FDB913;
}

.summary-box:nth-of-type(9) h3 {
    color: #0066CC;
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.summary-box li:last-child {
    border-bottom: none;
}

/* Feature Details */
.feature-details {
    padding: 80px 0;
    background-color: #ffffff;
}

.feature-details .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.feature-detail {
    padding: 80px 0;
}

.feature-detail:nth-of-type(odd) {
    background-color: #0066CC;
}

.feature-detail:nth-of-type(odd) .feature-detail-text h3 {
    color: #ffffff;
}

.feature-detail:nth-of-type(odd) .feature-detail-text h3::after {
    background-color: #FF9F4A;
}

.feature-detail:nth-of-type(odd) .feature-detail-text p {
    color: #ffffff;
}

.feature-detail:nth-of-type(even) {
    background-color: #f8f9fa;
}

.feature-detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-detail-text {
    flex: 1;
}

.feature-detail-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.feature-detail-text h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0066CC;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.feature-detail-text p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

.feature-detail-image {
    flex: 1;
    position: relative;
}

.feature-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* No additional flex-direction needed - the HTML order determines the layout */

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
    }

    .btn-contact {
        margin: 0 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

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

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

    .hero-image {
        order: 2;
        width: calc(100% - 40px);
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-border-box {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .hero-icon-overlay {
        bottom: -30px;
        left: -30px;
    }

    .hero-icon-overlay img {
        width: 60px;
        height: 60px;
    }

    .hero-buttons {
        order: 3;
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    /* About Page Mobile Styles */
    .about-intro h1 {
        font-size: 2rem;
    }

    .about-intro-text {
        font-size: 1rem;
    }

    .logos-grid {
        gap: 30px;
    }

    .company-card img {
        height: 60px;
    }

    .plus-symbol {
        font-size: 2rem;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .about-company-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-company-reverse .about-company-content {
        flex-direction: column;
    }

    /* Force text to always appear first on mobile */
    .about-company-text {
        order: 1;
    }

    .about-company-image {
        order: 2;
    }

    .early-access-cta h2 {
        font-size: 1.75rem;
    }

    .early-access-cta p {
        font-size: 1rem;
    }

    .aws-content {
        flex-direction: column;
        gap: 40px;
    }

    .aws-logo img {
        max-width: 200px;
    }

    /* Contact Page Mobile Styles */
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-intro-text {
        font-size: 1rem;
    }

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

    .contact-info-side,
    .contact-form-side {
        padding: 60px 20px;
    }

    .form-container {
        padding: 0;
    }

    /* Early Access Page Mobile Styles */
    .early-access-hero h1 {
        font-size: 2rem;
    }

    .early-access-intro {
        font-size: 1rem;
    }

    .early-access-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        padding: 2rem;
    }

    .timeline-box {
        padding: 2rem;
    }

    .early-access-form-section .form-container {
        padding: 2rem 1.5rem;
    }

    /* Features Page Mobile Styles */
    .features-intro h1 {
        font-size: 2rem;
    }

    .features-intro-text {
        font-size: 1rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail {
        margin-bottom: 60px;
        padding: 60px 0;
    }

    .feature-detail-content {
        flex-direction: column;
        gap: 40px;
    }

    /* Force text to always appear first on mobile */
    .feature-detail-text {
        order: 1;
    }

    .feature-detail-image {
        order: 2;
    }

    .feature-detail-text h3 {
        font-size: 1.5rem;
    }

    .feature-detail-text p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-hero {
    padding: 90px 0 70px;
    text-align: center;
    background-color: #ffffff;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-hero-tagline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-hero-subtitle {
    max-width: 880px;
    margin: 0 auto;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

.pricing-rationale {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.section-underline {
    width: 40px;
    height: 3px;
    background-color: #0066CC;
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.section-underline.left {
    margin-left: 0;
    margin-right: 0;
}

.section-underline.orange {
    background-color: #FF9F4A;
}

.section-title.left,
.section-description.left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.pricing-user-types {
    padding: 80px 0;
    background-color: #ffffff;
}

.user-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 2rem 0 1.5rem;
}

.user-type-card {
    border: 1px solid #e6eef6;
    border-top: 4px solid #0066CC;
    border-radius: 8px;
    padding: 1.75rem;
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.user-type-card:nth-child(2) {
    border-top-color: #4A9FD8;
}

.user-type-card h3 {
    color: #0066CC;
    margin-bottom: 0.75rem;
}

.user-type-card:nth-child(2) h3 {
    color: #4A9FD8;
}

.user-type-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
}

.section-note {
    color: #666;
    font-size: 0.95rem;
}

.pricing-seats {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-seats-content p {
    max-width: 900px;
    color: #666;
    font-size: 1.02rem;
    line-height: 1.8;
}

.pricing-cards {
    padding: 90px 0;
    background-color: #0066CC;
    text-align: center;
}

.pricing-cards .section-title {
    color: #ffffff;
}

.pricing-toggle {
    display: inline-flex;
    gap: 0.5rem;
    background-color: #f2f5f9;
    padding: 6px;
    border-radius: 12px;
    margin: 1rem 0;
}

.toggle-btn {
    border: 1px solid transparent;
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.toggle-btn.active {
    background-color: #0066CC;
    color: #ffffff;
    border-color: #0066CC;
    box-shadow: 0 6px 14px rgba(0, 102, 204, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 2rem;
}

.pricing-plan {
    display: none;
}

.pricing-plan.active {
    display: block;
}

.pricing-card {
    border: 2px solid #0066CC;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    position: relative;
}

.pricing-card-subtitle {
    color: #7a7a7a;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-divider {
    height: 1px;
    width: 100%;
    background-color: #e6eef6;
    margin: 1.25rem 0;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-term {
    font-size: 1rem;
    color: #666;
}

.pricing-card-split .pricing-list-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-top: 1px solid #eef2f6;
}

.pricing-card-split .pricing-list-row:first-child {
    border-top: none;
    padding-top: 0;
}

.pricing-card-finance h3 {
    color: #0066CC;
}

.pricing-card-collaboration h3 {
    color: #4A9FD8;
}

.pricing-badge-pill {
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: #0066CC;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.pricing-badge-pill.orange {
    background-color: #FF9F4A;
}

.pricing-badge-pill.light-blue {
    background-color: #4A9FD8;
}

.pricing-badge-pill.overlap {
    background-color: #4A9FD8;
}

.pricing-addon .pricing-badge-pill.overlap {
    top: 8px;
    right: 24px;
}

.pricing-addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem auto;
    max-width: 900px;
    text-align: left;
    position: relative;
}

.pricing-addon-with-pill {
    padding-top: 2.1rem;
}

.pricing-addon h3 {
    margin-bottom: 0.25rem;
}

.pricing-addon p {
    color: #666;
    margin: 0;
}

.pricing-addon-ai {
    background: #ffffff;
    border: 1px solid #e6eef6;
}

.pricing-addon-accounting {
    background: #ffffff;
    border: 1px solid #e6eef6;
}

.pricing-addon-price {
    text-align: right;
}

.pricing-addon-price .price-amount {
    font-size: 2rem;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: #8a8a8a;
}

.pricing-footnote {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 2rem;
}

.pricing-cta {
    padding: 90px 0;
    text-align: center;
    background-color: #ffffff;
}

.pricing-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: #666;
    margin-bottom: 2rem;
}

.one-time-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 12px;
    border: 1.5px solid #f0f0f0;
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
}

.one-time-card h3 {
    margin-bottom: 0.5rem;
}

.one-time-accent {
    color: #FF9F4A;
}

.one-time-accent-blue {
    color: #0066CC;
}

.one-time-accent-light-blue {
    color: #4A9FD8;
}

.annual-accent-orange {
    color: #FF9F4A;
}

.annual-accent-blue {
    color: #0052a3;
}

.one-time-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.one-time-price {
    text-align: right;
    white-space: nowrap;
}

.one-time-price .price-term {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: -0.5rem;
}

.one-time-orange {
    border-color: #e6eef6;
    background: #ffffff;
}

.one-time-blue {
    border-color: #e6eef6;
    background: #ffffff;
}

.one-time-light {
    border-color: #e6eef6;
    background: #ffffff;
}

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

    .user-types-grid {
        grid-template-columns: 1fr;
    }

    .pricing-addon {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .pricing-addon-price {
        text-align: left;
    }

    .one-time-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .one-time-price {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 60px 0;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero-tagline {
        font-size: 1.5rem;
    }

    .pricing-cards {
        padding: 70px 0;
    }

    .pricing-toggle {
        width: 100%;
        justify-content: center;
    }
}
