:root {
    /* Brand Gradient Colors - Used in hero, footer, buttons, and accents */
    --gradient-start-color: #667eea;
    --gradient-end-color: #764ba2;


    --gradient-start-color:#145277;
    --gradient-end-color:#83d0cb;

    --gradient-primary: linear-gradient(135deg, var(--gradient-start-color) 0%, var(--gradient-end-color) 100%);
    --gradient-shadow-color: rgba(102, 126, 234, 0.3);

    /* Custom Colors */
    --primary-color: #145277;
    --primary-dark: #145277;

    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;

    /* Bootstrap Font Size Variables - 25% increase */
    --bs-body-font-size: 1.25rem; /* 25% increase from 1rem */
    --bs-body-line-height: 1.6;
    --bs-root-font-size: 16px; /* 25% increase from 16px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--bs-root-font-size, 20px); /* 25% increase from default 16px */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--bs-body-font-size, 1.25rem);
    color: var(--text-dark);
    line-height: var(--bs-body-line-height, 1.6);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    /*color: var(--text-light);*/
    margin-bottom: 1rem;
    letter-spacing: -0.011em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: -0.014em;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding:4em 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.15)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,133.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero .lead {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.014em;
}

.hero p {
    color: rgba(255,255,255,0.95);
}

/* Avatar */
.avatar-container {
    margin-top: 3rem;
    text-align: center;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
    margin-bottom: 1rem;
}

.avatar-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.avatar-title {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

/* Buttons */
.btn-primary {
    background: white;
    color: var(--gradient-start-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    letter-spacing: -0.011em;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    color: var(--primary-dark);
    background: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: -0.011em;
    font-family: 'Inter', sans-serif;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.benefit-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

.benefit-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -0.025em;
    flex: 1;
    line-height: 1.2;
}

.benefit-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.benefit-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.benefit-detail strong {
    color: var(--text-dark);
}

/* Session Images */
.session-images {
    margin-top: 4rem;
    padding: 3rem 0;
}

.session-img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}



.session-img {width: 100%;height: 100%;object-fit: cover;display: inline-block;filter: sepia(0.2) contrast(1.5) ;position:relative;}

.session-caption {
    margin-top: 1rem;
    color: var(--text-light);
}

/* Comparison Section */
.comparison {
    background: var(--bg-light);
    padding: 5rem 0;
}

.comparison-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-card.highlight {
    border-color: var(--primary-color);
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 15px 40px var(--gradient-shadow-color);
}

.comparison-card.highlight h4 {
    color: white;
}

.comparison-card.highlight .comparison-list li::before {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-card.highlight strong {
    color: white;
}

.comparison-card h4 {margin-bottom: 1.5rem;padding-bottom: 1rem;border-bottom: 2px solid var(--border-color);}

.comparison-card-secondary h4 {font-weight:normal;}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    color: white;
    display: flex;
    align-items: start;
}

.comparison-list-secondary li {
    padding: 0.25rem 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
}


.comparison-list li::before {
    content: "→";
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
}

.comparison-list-secondary li::before {
    content:"•";
    margin-right: 0.25rem;
    color: var(--text-light);
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--bg-white);
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Social Proof */



.social-proof .logos {background-color:hsl(232, 57%, 95%);}

.social-proof .caption {
    /*background-color:hsl(232, 57%, 85%);*/
  font-size: calc(var(--bs-body-font-size)*0.7);      
  width: auto;                                    /* w-auto */
  border-radius: var(--bs-border-radius);         /* rounded-2 */
  position: absolute;  
    z-index:1;
    top: 0.5rem;                                         /* top-0 */
  left: 0.5rem;                                        /* start-0 */
  padding-left: calc(var(--bs-gutter-x, 1rem) * 0.5);   /* px-1 */
  padding-right: calc(var(--bs-gutter-x, 1rem) * 0.5);  /* px-1 */
  font-weight: var(--bs-body-font-weight-semibold, 600);  /* fw-semibold */
  color: var(--bs-light-text-emphasis);
  background-color: var(--bs-light-bg-subtle);
}


.social-proof .stats-experience {background-color:hsl(132, 57%, 95%);}

.social-proof .stats-community {background-color:hsl(2, 57%, 95%);position:relative;overflow: auto;}
.social-proof .stats-community::before {position:absolute;width:100%;height:100%;content:"";background-image:url("/img/1-on-1-consultation/community.jpg"); background-position:center 50%; background-size:cover;background-repeat: no-repeat;z-index:0;}
.social-proof .stats-community::after {position:absolute;width:40%;height:100%;content:"";-webkit-backdrop-filter:blur(0.25em) brightness(2.5) contrast(0.5);backdrop-filter:blur(0.25em) brightness(2.5) contrast(0.5);z-index: 0;-webkit-mask: linear-gradient(to right, black 70%, transparent 100%);mask: linear-gradient(to right, black 70%, transparent 100%);}
.social-proof .stats-community .card-body >*:not(.caption) {position:relative;z-index: 1;}

.social-proof .stats-projects {background-color:hsl(252, 57%, 95%);}

.social-proof .stats-workshops {background-color:hsl(202, 57%, 95%);position:relative;overflow: auto;}
.social-proof .stats-workshops::before {position:absolute;width:100%;height:100%;content:"";background-image:url("/img/1-on-1-consultation/workshop.jpg"); background-position:center 30%; background-size:cover;background-repeat: no-repeat;z-index:0;}
.social-proof .stats-workshops::after {position:absolute;width:40%;height:100%;content:"";-webkit-backdrop-filter:blur(0.25em) brightness(2.5) contrast(0.5);backdrop-filter:blur(0.25em) brightness(2.5) contrast(0.5);z-index: 0;-webkit-mask: linear-gradient(to right, black 70%, transparent 100%);mask: linear-gradient(to right, black 70%, transparent 100%);}
.social-proof .stats-workshops .card-body >*:not(.caption) {position:relative;z-index: 1;}

.social-proof .about-mentor {background-color:hsl(202, 57%, 95%);position:relative;overflow:auto}
.social-proof .about-mentor picture {display:block;width:100%;}
.social-proof .about-mentor img {object-fit:cover;height:auto;max-width:100%;width:100%;display:block;}

@media (min-width: 992px) {
    .social-proof .about-mentor picture, .social-proof .about-mentor picture img{
        height: 100% !important;
    }
}

/* Guarantee */
.guarantee {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin: 4rem 0;
}

.guarantee h3 {
    color: white;
    margin-bottom: 1rem;
}

.guarantee p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.form-container {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: -0.011em;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px var(--gradient-shadow-color);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

footer p {
    color: rgba(255,255,255,0.7);
}

footer a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

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

    .hero .lead {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .features, .process, .social-proof, .cta-section {
        padding: 3rem 0;
    }

    .form-container {
        padding: 2rem;
    }

    .client-logos {
        gap: 2rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .session-img-container {
        height: 250px;
    }
}
