*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Custom Properties - Colors now handled by Tailwind */
:root {
    --section-padding: clamp(3rem, 8vw, 6rem) 0;
    --divider-height: clamp(60px, 10vw, 100px);
    --container-padding: clamp(1rem, 5vw, 2rem);
}

/* Card and button shadows in light mode */
.light-mode .layer-item,
.light-mode .credential-item,
.light-mode .benefits-column,
.light-mode .testimonial-item,
.light-mode .cta-path,
.light-mode .case-study,
.light-mode .case-study-results {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Light mode card backgrounds */
.light-mode .credential-item,
.light-mode .layer-item,
.light-mode .case-study,
.light-mode .testimonial-item {
    background-color: #FFFFFF;
}

/* Light mode text colors */
.light-mode .social-links a,
.light-mode .footer-links a {
    color: #121212;
}

.light-mode .btn {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.light-mode .btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Fonts - Now handled by Tailwind CSS */

body {
    overflow-x: hidden;
    transition: all 0.3s ease;
    position: relative;
    /* Font styles now handled by Tailwind CSS */
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5%;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Heading font styles now handled by Tailwind CSS */

/* H1 font-size now handled by Tailwind classes in HTML */

h2 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    /* Font styles now handled by Tailwind CSS */
}

/* Only show underline for centered headings */
h2::after {
    display: none;
}

.text-center h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #AC9EF5, #CB6CE6);
    border-radius: 4px;
    display: block;
}

.text-left {
    text-align: left;
}

h3 {
    margin-bottom: 1.5rem;
    /* Font styles now handled by Tailwind CSS */
}

p {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header & Navigation */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(23, 25, 35, 0.85);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.light-mode header {
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-controls {
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    max-width: 120px;
}

.logo-img {
    height: 32px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    /* Font styles now handled by Tailwind CSS */
}

.nav-links a:hover {
    color: #AC9EF5;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    /* Font styles now handled by Tailwind CSS */
}

.theme-toggle:hover {
    color: #AC9EF5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    /* Font styles now handled by Tailwind CSS */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}


.btn-secondary {
    background-color: #CB6CE6;
    color: white;
}

.btn-secondary:hover {
    background-color: #CB6CE6;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #AC9EF5;
    color: #AC9EF5;
}

.btn-outline:hover {
    background-color: #AC9EF5;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 120%;
    height: 80%;
    background: linear-gradient(135deg, #CB6CE6 0%, #AC9EF5 100%);
    transform: rotate(-3deg);
    z-index: -1;
    opacity: 0.05;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    /* Font styles now handled by Tailwind CSS */
}

.hero-content p {
    margin-bottom: 2rem;
    /* Font styles now handled by Tailwind CSS */
}

.light-mode .hero-content p {
    color: #121212;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.hero-cta .btn {
    width: auto;
    display: inline-block;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    margin: 0;
}

.about-content h2 {
    color: #AC9EF5;
}

.credentials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-item {
    padding: 1.5rem;
    background-color: #181818;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-image: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
}

.light-mode .credential-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.credential-item h4 {
    margin-bottom: 0.5rem;
    color: #AC9EF5;
    /* Font styles now handled by Tailwind CSS */
}

.credential-item p {
    margin-bottom: 0;
    /* Font styles now handled by Tailwind CSS */
}

/* Problem Statement Section */
.problem {
    padding: var(--section-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.light-mode .problem {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.problem-container h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-item {
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
}

.downstream {
    background-color: rgba(237, 97, 36, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #ED6124;
}

.light-mode .downstream {
    background-color: rgba(237, 97, 36, 0.1);
    border: 2px solid #ED6124;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.upstream {
    background-color: rgba(33, 33, 33, 0.8);
    border: 2px solid #AC9EF5;
}

.light-mode .upstream {
    background-color: rgba(100, 110, 203, 0.1);
    border: 2px solid #AC9EF5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-item h3 {
    margin-bottom: 1.5rem;
}

.downstream h3 {
    color: #ED6124;
}

.light-mode .downstream h3 {
    color: #121212;
}

.upstream h3 {
    color: #AC9EF5;
}

.pain-points {
    list-style: none;
}

.pain-points li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pain-points li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ED6124;
}

.benefits {
    list-style: none;
}

.benefits li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #CB6CE6;
}

/* Three-Layer Approach Section - Colors now handled by Tailwind */
.three-layer {
    padding: var(--section-padding);
}

.three-layer-container h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.layers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.layer-item {
    padding: 2.5rem;
    background-color: #181818;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.05),
        0 10px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-image: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
}

.light-mode .layer-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.layer-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.08),
        0 15px 25px rgba(0,0,0,0.12);
    border-color: rgba(255, 255, 255, 0.08);
    background-image: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%);
}

.light-mode .layer-item:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

.layer-leadership {
    border-top: 5px solid #CB6CE6;
}

.layer-systems {
    border-top: 5px solid #ED6124;
}

.layer-individuals {
    border-top: 5px solid #AC9EF5;
}

.layer-item h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.layer-item p {
    margin-bottom: 1.5rem;
}

.layer-example {
    background-color: rgba(100, 110, 203, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.layer-example h4 {
    color: #AC9EF5;
    margin-bottom: 1rem;
    /* Font styles now handled by Tailwind CSS */
}

.layer-example p {
    margin-bottom: 0;
    /* Font styles now handled by Tailwind CSS */
}

/* Partner Section */
.partners {
    padding: var(--section-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.light-mode .partners {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.partners-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partners-content h2 {
    color: #CB6CE6;
}

.partner-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.partner-benefits li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.partner-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #CB6CE6;
    /* Font styles now handled by Tailwind CSS */
}

.partners-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.partners-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits & Results Section */
.benefits-results {
    padding: var(--section-padding);
}

.benefits-results-container h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-columns {
    gap: 3rem;
}

.benefits-column {
    padding: 2.5rem;
    border-radius: 20px;
}

.org-benefits {
    background-color: rgba(237, 97, 36, 0.1);
    border: 2px solid #ED6124;
}

.partner-benefits-column {
    background-color: rgba(203, 108, 230, 0.1);
    border: 2px solid #CB6CE6;
}

.benefits-column h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.org-benefits h3 {
    color: #ED6124;
}

.partner-benefits-column h3 {
    color: #CB6CE6;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    /* Font styles now handled by Tailwind CSS */
}

.org-benefits .benefits-list li::before {
    color: #ED6124;
}

.partner-benefits-column .benefits-list li::before {
    color: #CB6CE6;
}

.benefits-list strong {
    display: block;
    margin-bottom: 0.3rem;
}

/* Methodology Section */
.methodology {
    padding: var(--section-padding);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.light-mode .methodology {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.light-mode .methodology .methodology-container h2 {
    color: #121212;
}

.methodology-container h2 {
    color: #AC9EF5;
    text-align: center;
    margin-bottom: 4rem;
}

.methodology-process {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 4rem;
}

.methodology-process::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #ED6124 0%, 
        #AC9EF5 50%, 
        #CB6CE6 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #121212;
    margin: 0 auto 1.5rem;
    /* Font styles now handled by Tailwind CSS */
}

/* Specific styling for each step */
.process-step:nth-child(1) .step-number {
    border: 4px solid #ED6124;
    color: #ED6124;
}

.process-step:nth-child(2) .step-number {
    border: 4px solid #ED6124;
    color: #ED6124;
}

.process-step:nth-child(3) .step-number {
    border: 4px solid #AC9EF5;
    color: #AC9EF5;
}

.process-step:nth-child(4) .step-number {
    border: 4px solid #CB6CE6;
    color: #CB6CE6;
}

.process-step:nth-child(5) .step-number {
    border: 4px solid #CB6CE6;
    color: #CB6CE6;
}

.process-step h3 {
    margin-bottom: 1rem;
    /* Font styles now handled by Tailwind CSS */
}

.process-step p {
    max-width: 200px;
    margin: 0 auto;
    /* Font styles now handled by Tailwind CSS */
}

.case-study {
    background-color: #181818;
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-image: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
}

.light-mode .case-study {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.case-study h3 {
    color: #AC9EF5;
    margin-bottom: 1.5rem;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.case-study-text p {
    margin-bottom: 1rem;
}

.case-study-results {
    background-color: rgba(100, 110, 203, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

.result-item {
    margin-bottom: 1rem;
}

.result-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-container h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-item {
    background-color: #181818;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-image: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
}

.light-mode .testimonial-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    color: #AC9EF5;
    opacity: 0.2;
    font-family: Georgia, serif;
    /* Font styles now handled by Tailwind CSS */
}

.testimonial-content {
    margin-bottom: 1.5rem;
    /* Font styles now handled by Tailwind CSS */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    /* Font styles now handled by Tailwind CSS */
}

.author-info p {
    margin-bottom: 0;
    opacity: 0.8;
    /* Font styles now handled by Tailwind CSS */
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.light-mode .cta {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-container h2 {
    margin-bottom: 2rem;
}

.cta-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.cta-path {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.client-path {
    background-color: rgba(237, 97, 36, 0.1);
    border: 2px solid #ED6124;
}

.partner-path {
    background-color: rgba(203, 108, 230, 0.1);
    border: 2px solid #CB6CE6;
}

.cta-path h3 {
    margin-bottom: 1.5rem;
}

.client-path h3 {
    color: #ED6124;
}

.partner-path h3 {
    color: #CB6CE6;
}

.cta-path p {
    margin-bottom: 2rem;
}

.cta-path .btn {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-info h3 {
    color: #AC9EF5;
    margin-bottom: 1.5rem;
    /* Font styles now handled by Tailwind CSS */
}

.footer-info p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.social-links a:hover {
    background-color: #AC9EF5;
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.light-mode .social-links a {
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}

.light-mode .social-links a:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: #AC9EF5;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #AC9EF5;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    opacity: 0.6;
    /* Font styles now handled by Tailwind CSS */
}

/* Section Dividers and Decorative Elements */
.section-divider {
    height: var(--divider-height);
    background-image: url('/images/wave-divider.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: -50px 0;
    position: relative;
    z-index: 1;
}

.light-mode .section-divider {
    background-image: url('/images/wave-divider-light.svg');
}

.section-divider.flip {
    transform: scaleY(-1);
}


/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero {
        padding-top: clamp(6rem, 15vw, 8rem);
        padding-bottom: clamp(3rem, 8vw, 4rem);
    }
    
    .layers,
    .benefits-columns,
    .cta-paths {
        gap: clamp(1.5rem, 4vw, 3rem);
    }
    
    .comparison {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(1.5rem, 4vw, 3rem);
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .credentials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .container {
        padding: 0 var(--container-padding);
    }

    .hero-container,
    .about-container,
    .partners-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .layers {
        grid-template-columns: 1fr;
    }
    
    .layer-item {
        padding: 2rem;
    }

    .methodology-process {
        flex-direction: column;
        gap: 2rem;
    }

    .methodology-process::before {
        height: 100%;
        width: 4px;
        left: 40px;
        top: 0;
        background: linear-gradient(to bottom, 
            #ED6124 0%, 
            #ED6124 20%, 
            #AC9EF5 50%, 
            #CB6CE6 80%, 
            #CB6CE6 100%);
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
    }

    .step-number {
        margin: 0 2rem 0 0;
        flex-shrink: 0;
    }
    
    .process-step-content {
        display: flex;
        flex-direction: column;
    }

    .process-step h3 {
        margin-bottom: 0.5rem;
    }
    
    .process-step p {
        margin: 0;
        max-width: none;
    }

    .benefits-columns,
    .cta-paths {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta .btn {
        margin: 0.5rem 0;
    }
    
    .credentials {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Improved Section Spacing */
    section {
        margin-bottom: clamp(3rem, 8vw, 5rem);
    }
      
    /* H1, H2, H3 font-sizes now handled by Tailwind classes in HTML */

    /* Card Improvements */
    .layer-item,
    .credential-item,
    .comparison-item,
    .benefits-column,
    .testimonial-item,
    .cta-path {
        padding: clamp(1.5rem, 5vw, 3rem);
        margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    /* Better Touch Targets */
    .btn,
    .nav-links.active a {
        padding: clamp(0.85rem, 2.5vw, 1.1rem) clamp(1.8rem, 5vw, 2.2rem);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improved Mobile Navigation */
    .nav-links.active {
        padding: clamp(1.2rem, 5vw, 1.8rem);
        backdrop-filter: blur(12px);
    }
    
    /* Better Vertical Rhythm */
    p {
        margin-bottom: clamp(1.2rem, 3.5vw, 1.8rem);
        /* Font styles now handled by Tailwind CSS */
    }
    
    /* Improved List Spacing */
    .benefits-list li,
    .pain-points li,
    .partner-benefits li {
        margin-bottom: clamp(0.85rem, 2.5vw, 1.4rem);
        padding-left: clamp(1.4rem, 3.5vw, 2.2rem);
    }
    
    /* Section Divider Improvements */
    .section-divider {
        margin: clamp(-35px, -6vw, -55px) 0;
        height: clamp(50px, 8vw, 80px);
    }
    
    /* Footer Improvements */
    .footer-container {
        gap: clamp(1.8rem, 5vw, 3.5rem);
        padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
    }
    
    .footer-links h4 {
        margin-bottom: clamp(1.2rem, 3.5vw, 1.8rem);
    }
    
    /* Image Containers */
    .hero-image,
    .about-image,
    .partners-image {
        margin: 0 0 2rem 0;
        border-radius: clamp(10px, 2.5vw, 20px);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-image img,
    .partners-image img {
        width: 100%;
        max-height: 35vh;
        object-fit: cover;
        display: block;
    }

    .about-image img {
        max-width: 320px;
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .logo-img {
        height: 26px;
    }
}

/* Tablet-specific improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .layers,
    .benefits-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container,
    .partners-container {
        grid-template-columns: 2fr 3fr;
        gap: clamp(2rem, 5vw, 4rem);
    }
}

/* Mobile navigation */
.theme-toggle,
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s ease;
    /* Font styles now handled by Tailwind CSS */
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle {
    display: none;
}

.theme-toggle:hover,
.mobile-menu-toggle:hover {
    transform: scale(1.1);
}