:root {
/* Colors */
--Tomato: #Ef6b3e;    /*DigitalTenant Color*/
--Zuez: #231f20;      /*DigitalTenant Color*/
--Grey: #93918d;      /*DigitalTenant Color*/
--Fantasy: #f4f3ef;   /*DigitalTenant Color*/
--White: #ffffff;     /*DigitalTenant Color*/
--RangoonGreen: #1a1a1a;
--BlackEel: #444444;
--BrightGrey: #374151;
--Flame: #E05A2D;
--WhiteSmoke: #f3f4f6;
--SnowDrift: #F8F9FA;
--PapayaWhip: #ffedd5;
--White-10: rgba(255, 255, 255, 0.1); /* 10% opacity - Form field background*/ 
--White-20: rgba(255, 255, 255, 0.2); /* 20% opacity - Border use */
--White-70: rgba(255, 255, 255, 0.7); /* 70% opacity - Place holder text */
--White-90: rgba(255, 255, 255, 0.9); /* 90% opacity - Info Text when typing info into a form. */
--Black-10: rgba(0, 0, 0, 0.1);  /* Very light shadows, subtle depth */
--Black-20: rgba(0, 0, 0, 0.2);  /* Light shadows, hover states */
--Black-30: rgba(0, 0, 0, 0.3);  /* Medium shadows, modal overlays */
--Black-70: rgba(0, 0, 0, 0.7);  /* Dark overlays, strong emphasis */
--Black-90: rgba(0, 0, 0, 0.9);  /* Nearly opaque, very strong emphasis */


/* Typography Scale - Size */
--font-2xs: 0.75rem;      /* 12px - Small captions */
--font-xs: 0.875rem;      /* 14px - Fine print */
--font-sm: 0.9375rem;     /* 15px */
--font-base: 1rem;        /* 16px - Body text */
--font-md: 1.125rem;      /* 18px - Large body */
--font-lg: 1.25rem;       /* 20px - Larger body, h6 */
--font-xl: 1.5rem;        /* 24px - h5 */
--font-2xl: 1.75rem;      /* 28px */
--font-3xl: 1.875rem;     /* 30px - h4 */
--font-4xl: 2.25rem;      /* 36px - h3 */
--font-5xl: 2.5rem;       /* 40px - h2 */
--font-6xl: 2.6rem;       /* 41.6px */
--font-7xl: 2.75rem;      /* 44px */
--font-8xl: 3rem;         /* 48px - h1 */

/* Font Families */
--font-primary: 'Poppins', sans-serif;
--font-secondary: system-ui, sans-serif;
--font-mono: ui-monospace, monospace;

/* Font Weights */
--weight-thin: 100;
--weight-extralight: 200;
--weight-light: 300;
--weight-normal: 400;
--weight-medium: 500;
--weight-semibold: 600;
--weight-bold: 700;
--weight-extrabold: 800;
--weight-black: 900;

/* Line Heights */
--leading-none: 1;          /* Tight */
--leading-tight: 1.25;      /* Condensed */
--leading-snug: 1.375;      /* Slightly Condensed */
--leading-normal: 1.5;      /* Normal */
--leading-relaxed: 1.625;   /* Slightly Relaxed */
--leading-loose: 2;         /* Spacious */

/* Letter Spacing */
--tracking-tighter: -0.05em;
--tracking-tight: -0.025em;
--tracking-normal: 0;
--tracking-wide: 0.025em;
--tracking-wider: 0.05em;
--tracking-widest: 0.1em;

/* Paragraph Spacing */
--spacing-tight: 1rem;
--spacing-normal: 1.5rem;
--spacing-relaxed: 2rem;
--spacing-loose: 2.5rem;
}
  
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Hero Container */
.primary-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center;
}

/* Typography */
.primary-hero-title {
    font-size: var(--font-8xl);
    font-weight: var(--weight-bold);
    color: var(--RangoonGreen);
    line-height: var(--leading-tight);
    max-width: 875px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
}

.primary-hero-subtitle {
    font-size: var(--font-lg);
    color: var(--BlackEel);
    margin-bottom: 2rem;
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-normal);
}

/* Button Styles */
.primary-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.primary-btn, .secondary-btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: var(--weight-semibold);
    font-size: var(--font-base);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--Tomato);
    color: var(--White);
    border: none;
}

.primary-btn:hover {
    background-color: var(--Flame);
}

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

.secondary-btn:hover {
    background-color: var(--Flame);
    color: var(--White);
}

/* Dashboard Images */
.primary-dashboard-wrapper {
    position: relative;
    margin: 3rem auto;
    max-width: 1000px;
}

.index-dashboard-main {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.index-dashboard-mobile {
    position: absolute;
    bottom: 140px;
    right: -40px;
    width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Intro Section */
.primary-hero-intro {
    margin: 4rem auto 2rem;
    max-width: 1200px;
}

.primary-intro-title {
    font-size: var(--font-4xl);
    margin-bottom: 1rem;
    color: var(--RangoonGreen);
}

.primary-intro-subtitle {
    color: var(--BlackEel);
    margin: 0 auto 2rem;
    max-width: 850px;
    font-size: var(--font-lg);
    line-height: 1.5;
}

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

    .primary-hero-subtitle {
        font-size: var(--font)
    }

    .primary-dashboard-wrapper {
        margin: 2rem auto;
    }

    .index-dashboard-mobile {
        width: 180px;
        bottom: -20px;
        right: -20px;
    }

    .primary-btn-group {
        flex-direction: column;
        padding: 0 1rem;
    }

    .primary-btn, .secondary-btn {
     
        width: 100%;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 100px;
}

.hero-title {
    font-size: var(--font-8xl);
    font-weight: 100;
    margin-bottom: 1.5rem;
    color: var(--RangoonGreen);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--Grey);
    margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.demo-btn {
    background-color: var(--Tomato);
    color: var(--White);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.demo-btn:hover {
    background-color: var(--Flame);
}

.learn-more-btn {
    background-color: transparent;
    color: var(--Tomato);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--Tomato);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.learn-more-btn:hover {
    background-color: var(--White);
}

/* Stats Section */
.stats-section {
    padding: 2rem 4rem;
    position: relative;
    margin: 100px auto;
}

.main-graph {
    width: 50%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 10px auto;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
}

.hero-header h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.hero-header p {
    font-size: 1.2rem;
    color:  var(--BlackEel);
    max-width: 900px;
    margin: 30px auto;
}

/* Feature Sections */
.feature-section {
    padding: 4rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    height: 100%;
}

.feature-flex.reverse {
    flex-direction: row-reverse;
}

/* Content Styling */
.feature-content {
    flex: 1;
    position: relative;
    padding: 2rem 0;
}

.feature-number {
    position: absolute;
    font-size: 240px;
    font-weight: 700;
    top: -80px;
    z-index: 0;
}

.section-white .feature-number {
    color: rgba(209, 213, 219, 0.8);
    left: -20px;
}

.section-orange .feature-number {
    color: rgba(255, 255, 255, 0.2);
    right: -20px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Section Variants */
.section-orange {
    background-color: var(--Tomato);
    color: var(--White);
}

/* Benefits Styling */
.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-benefit {
    padding-left: 1.25rem;
}

.section-white .feature-benefit {
    border-left: 4px solid var(--Tomato);
}

.section-orange .feature-benefit {
    border-left: 4px solid var(--White);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
}

.section-white .benefit-text {
    color: var(--RangoonGreen);
}

.section-orange .benefit-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Image Styling */
.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Grid Features Section */
.grid-features {
    padding: 6rem 0;
    background-color: var(--Fantasy);
}

.grid-features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--RangoonGreen);
    margin-bottom: 1rem;
}

.grid-features-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--Grey);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.grid-feature {
    text-align: center;
    padding: 2rem;
    background: var(--White);
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.grid-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color:  var(--Tomato);
    margin-bottom: 1.5rem;
}

.grid-features-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--RangoonGreen);
    margin-bottom: 1rem;
}

.grid-feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--Grey);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--White);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--RangoonGreen);
    margin-bottom: 1rem;
}

.faq-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--Grey);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--Grey);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--RangoonGreen);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--Fantasy);
}

.faq-icon {
    color: var(--Tomato);    
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--White);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--Grey);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1rem;
    }

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

    .faq-description {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Feature Section CTAs */
.feature-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.feature-cta .secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--Tomato);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--Tomato);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.feature-cta .secondary-btn:hover {
    background-color: var(--Tomato);
    color: var(--White);
}

.section-orange .feature-cta .secondary-btn.light {
    color: var(--White);
    border: 1px solid var(--White);
}

.section-orange .feature-cta .secondary-btn.light:hover {
    background-color: var(--White);
    color: var(--Tomato);
}

/* Grid Features CTA */
.grid-features-cta {
    text-align: center;
    margin-top: 3rem;
}

.grid-features-cta .primary-btn {
    display: inline-block;
    background-color: var(--Tomato);
    color: var(--White);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.grid-features-cta .primary-btn:hover {
    background-color: var(--Flame);
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-cta p {
    color: var(--RangoonGreen);
    font-size: 1.2rem;
    margin-bottom: 1rem;

}

.testimonials-cta .secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--Tomato);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--Tomato);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}



.testimonials-cta .secondary-btn:hover {
    background-color: var(--Tomato);
    color: var(--White);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: var(--RangoonGreen);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-cta .secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--Tomato);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--Tomato);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.faq-cta .secondary-btn:hover {
    background-color: var(--Tomato);
    color: var(--White);
}

/* Responsive styles for CTAs */
@media (max-width: 768px) {
    .feature-cta, 
    .grid-features-cta, 
    .testimonials-cta, 
    .faq-cta {
        margin-top: 2rem;
    }
    
    .feature-cta .secondary-btn,
    .grid-features-cta .primary-btn,
    .testimonials-cta .secondary-btn,
    .faq-cta .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .testimonials-cta p,
    .faq-cta p {
        font-size: 1rem;
    }
}