:root {
    --optuno-purple: #4b2e83;
    --optuno-purple-darker: #3a236a; /* Darker purple for gradients */
    --optuno-orange: #ff6b00;
    --optuno-orange-darker: #e65c00; /* Darker orange for hover */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.06); /* Softer shadow */
    --shadow-medium: 0 10px 30px rgba(75, 46, 131, 0.12); /* Slightly softer medium shadow */
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth; /* Ensure smooth scrolling for anchor links */
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px; /* Base font size */
    color: var(--text-dark);
    line-height: 1.75; /* Slightly increased base line height */
    background-color: var(--white);
}
.ai_wrapper .button, .ai_wrapper textarea, .ai_wrapper select{
 font-family: 'Open Sans', sans-serif!important;   
}

strong{
     font-family: var(--font-body);
}

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

.hero ul, .hero ol, .about ul, .about ol, .process .wlcm-sec ul, .process .wlcm-sec ol, .goal ul, .goal ol, .results .walkthrough-real-page ol, .results .walkthrough-real-page ul, .pricing ol, .pricing ul {
    display: inline-block;
    text-align: left;
}
.walkthrough-about {
    text-align: center;
}
.process .wlcm-sec {
    text-align: center;
}
.results .walkthrough-real-page{
    text-align: center;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--optuno-purple);
    margin-top: 0;
}

h2.section-title {
    text-align: center;
    margin-bottom: 3.5rem; /* Increased bottom margin slightly */
    font-size: 2.5rem; /* Reduced size slightly to prevent wrapping */
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Increased default paragraph size */
}

a {
    color: var(--optuno-orange);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--optuno-orange-darker);
}

/* Section Padding */
.section-padding {
    padding: 70px 0; /* Reduced padding */
}
.section-padding2 {
    padding: 30px 0 70px 0; /* Reduced padding */
}
/* Header Styles */
.header {
    background-color: var(--optuno-purple);
    padding: 15px 0;
    position: sticky; /* Make header sticky */
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    width: auto;
}

/* Hero Section Styles */
.hero {
    background-color: var(--optuno-purple);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(to bottom right, var(--optuno-purple), var(--optuno-purple-darker));
    /* Optional: Add subtle pattern or image */
    /* background-image: linear-gradient(rgba(75, 46, 131, 0.9), rgba(58, 35, 106, 0.95)), url('img/hero-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
}

.hero h1 {
    font-size: 3.5rem; /* Increased size */
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.highlight-orange {
    color: var(--optuno-orange);
}

.hero p {
    font-size: 1.2rem; /* Increased size */
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--optuno-orange);
    color: var(--white);
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--optuno-orange-darker);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* About Section Styles */
.about {
    background-color: var(--light-gray);
}

.about h2 {
    margin-bottom: 1rem;
    text-align: center; /* Center the heading */
    font-size: 2.9rem; /* Further increased size */
}

.about h3 {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem; /* Increased size */
    color: var(--optuno-orange);
}

.about p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem; /* Further increased size */
    color: var(--text-light);
}

#features h2.section-title {
    white-space: nowrap; /* Ensure heading stays on one line */
}
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-category {
    background-color: var(--white);
    padding: 30px; /* Increased padding */
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-category h3 {
    font-size: 1.5rem; /* Reduced size slightly */
    margin-bottom: 1rem; /* Reduced bottom margin */
    display: flex;
    align-items: center;
    color: var(--optuno-purple);    text-align: center;
}

.feature-category h3 i {
    margin-right: 12px;
    color: var(--optuno-orange);
    font-size: 1.6rem; /* Adjust if using real icons */
    width: 24px; /* Placeholder width */
    text-align: center; /* Placeholder alignment */
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category li {
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 25px;
    font-size: 1rem; /* Increased size */
    color: var(--text-light);
    padding-right:10px;line-height: 1.5;
}
#features .walk-plan-sec h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
}
/*
.feature-category li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--optuno-orange);
    font-weight: bold;
    font-size: 1.1em;
}
*/
.feature-category li::before{
    content: "";
    color: var(--optuno-orange);
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ff6b00;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);    border-radius: 50%;
}
.feature-category ul li.star {
    background: #ffefe5;
    width: fit-content;    
    border-radius: 15px;
    line-height: 1.4;
    padding-top: 3px;
    padding-bottom: 3px;
}
.feature-category ul li.star:before {
    content: "\f005";
    position: absolute;
    width: 14px;
    height: 12px;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--optuno-orange);
    font-family: 'FontAwesome';   
    background: transparent;
    width: inherit;
    height: inherit;
    font-size: 12px;
}

/* Goal Section Styles */
.goal {
    background-image: linear-gradient(to bottom right, var(--optuno-purple), var(--optuno-purple-darker));
    color: var(--white);
    text-align: center;
}


.goal h2 {
    color: var(--white);
    line-height: 1.3;
}

.goal p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.3;
}

.goal .highlight {
    font-weight: 600;
    font-size: 2rem;
    margin-top: 2rem;
    color: var(--optuno-orange);
    line-height: 1.3;
}

/* Results Section Styles */
.results {
    background-color: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.results-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;*/
        display: flex;
    flex-wrap: wrap;
    justify-content: center;    margin: 0 -14px;
}

.result-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
        width: 31.33%;
    margin: 0 1% 2%;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.result-item a[data-lightbox] {
    display: block;
    position: relative;
    overflow: hidden;
}

.result-item img {
    display: block;
    width: 100%;
        height: 260px;
    object-fit: contain;
    transition: transform var(--transition-speed) ease;
}

.result-item a[data-lightbox]:hover img {
    transform: scale(1.05);
}

.zoom-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(75, 46, 131, 0.75); /* Purple overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    pointer-events: none; /* Allow clicks to pass through to the link */
}

.result-item a[data-lightbox]:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon i {
    color: var(--white);
    font-size: 3rem;
    /* Example using text as placeholder - replace with actual icon */
    /* content: "+"; */
    /* font-weight: bold; */
    /* line-height: 1; */
}

/* Simple text zoom icon placeholder */
.zoom-icon::after {
    content: '+';
    color: var(--white);
    font-size: 4rem;
    font-weight: lighter;
    line-height: 1;
}

.result-info {
    padding: 20px 25px;
}

.result-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.result-info p:last-child {
    margin-bottom: 0;
}

.result-info strong {
    color: var(--optuno-purple);
}

.result-info a {
    color: var(--optuno-orange);
    font-weight: 600;
}

.result-info a:hover {
    text-decoration: underline;
}

/* Pricing Section Styles */
.pricing {
    background-image: linear-gradient(to bottom right, var(--optuno-purple), var(--optuno-purple-darker));
    color: var(--white);
    text-align: center;
}

.pricing h2 {
    color: var(--white);
}

.pricing-box {
    max-width: 500px;
    margin: 2rem auto 0 auto;
    /* Glassmorphism attempt */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 5px;
}

.offer-text {
    font-size: 1.1rem;
    color: var(--optuno-orange);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.pricing-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}

.pricing-benefits li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.pricing-benefits i {
    color: var(--optuno-orange);
    margin-right: 12px;
    font-size: 1.3rem;
    width: 20px; /* Placeholder width */
    text-align: center; /* Placeholder alignment */
}

/* Simple text checkmark placeholder */
.pricing-benefits li::before {
    content: '\2713';
    color: var(--optuno-orange);
    margin-right: 12px;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c; /* Slightly lighter dark */
    color: #bbb;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin: 0;
}

.footer a {
    color: var(--optuno-orange);
}

/* Navigation Styles */
.nav {
    /* Desktop nav is part of flexbox in header */
}

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav__item {
    margin-left: 2.5em;
}
.nav ul li {
    margin-left: 2.5em;
}

.nav__link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav ul li a{
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--optuno-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease-out;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--optuno-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease-out;
}


.nav ul li a:hover {
    color: var(--white);
}
.nav__link:hover {
    color: var(--white);
}

.nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.container:after{
    display:none;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    padding: .5em;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100; /* Above sticky header */
}

.hamburger {
    display: block;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    background: var(--white);
    width: 2em;
    height: 3px;
    border-radius: 1em;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
}

.hamburger::before { top: 6px; }
.hamburger::after { bottom: 6px; }

.scrolltop{background:#ff6600;border-radius:4px;bottom:120px;cursor:pointer;display:none;height:40px;overflow:hidden;position:fixed;right:15px;text-align:center;-webkit-transition:all 0.5s ease 0s;transition:all 0.5s ease 0s;width:40px;z-index:99;}
.scrolltop:after{font-family:FontAwesome;color:#fff;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;content:"\f077";font-size:19px;line-height:38px;}
.scrolltop:hover{background:#222222}

/*log in */
.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.walkthrough-training-credentials ul.sales_training_ul li {
    margin: 0;
}
.walkthrough-training-credentials{
        margin-left: 30px;display:none;
}
.walkthrough-training-credentials ul li a{
    padding: 4px 10px 4px 11px!important; position: relative;
}

.walkthrough-training-credentials ul li a .cart_tool_tip {
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
}

.walkthrough-training-credentials ul li a [data-tooltip]:before{
    
    position: absolute;
    top: 150%;
    left: -72%;
    margin-bottom: 5px;
    margin-left: 0px;
    padding: 5px 10px;
    background-color: #ff6600;
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    border-radius: 3px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 9px;
    white-space: nowrap;
    font-size: 9px;
    text-transform: uppercase;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.walkthrough-training-credentials ul li a [data-tooltip]:after{
  bottom: 100%;
    left: 18px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #f60;
    border-width: 5px;
    margin-left: -5px;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    max-width: inherit!important;
    max-width: none!important;
    margin-bottom:0px;    min-width: inherit;
}

.walkthrough-training-credentials ul li a:hover span[data-tooltip]:before{
  visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);  
}
.walkthrough-training-credentials ul li a:hover span[data-tooltip]:after{
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.walkthrough-training-credentials ul li a::after{
    display:none;
}
.result-keywrd {
    display: flex;
}
.result-client {
    display: flex;
}
.result-info span {
    padding-left: 5px;
}


/* Responsive Styles & Mobile Nav */
@media (max-width: 992px) { /* Adjust breakpoint if needed */
    .header .container {
        position: relative;
    }
    .result-item {
    
        width:48%;
}
.walkthrough-training-credentials ul li a {
        font-size: 1.2rem!important;
}
.walkthrough-training-credentials {
    margin-left: 0px;
}
.walkthrough-training-credentials ul.sales_training_ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: inherit;
    margin-top: 25px;

}
.walkthrough-training-credentials ul li a [data-tooltip]:before {
        left: 0%;
    }

    .nav {
        position: fixed;
        background: var(--optuno-purple);
        color: var(--white);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050; /* Below toggle, above content */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex; /* Use flex for centering */
        justify-content: center;
        align-items: center;
    }

    .nav__list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto; /* Let flex centering handle vertical */
        width: 100%;
        text-align: center;
    }
    .nav ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto; /* Let flex centering handle vertical */
        width: 100%;
        text-align: center;        margin-top: 60px;
    }

    .nav__item {
        margin-left: 0;
        margin-bottom: 2em;
    }
    .nav ul li {
        margin-left: 0;
        margin-bottom: 1em;
    }

    .nav__link {
        font-size: 1.5rem;
        padding: 0.5em 1em;
    }
    .nav ul li a {
        font-size: 1.5rem;
        padding: 0.5em 1em;
    }
    .nav ul li a::after {
        display: none; /* Remove underline on mobile */
    }

    .nav-toggle {
        display: block;        
        background: transparent !important;
        padding: .5em;
        margin: 0;
        font-size: inherit;transition: none;
    }

    /* JS toggles this class on body */
    .nav-open .nav {
        transform: translateX(0);
                display: block;
    }

    .nav-open .nav-toggle {
        position: fixed; /* Keep toggle fixed when menu is open */
        right: 0.5em;
        top: 1.7em; /* Adjust position slightly */
        transform: none;        transition: none;
    }

    .nav-open .hamburger {
        transform: rotate(.625turn);
    }

    .nav-open .hamburger::before {
        transform: rotate(90deg) translateX(-6px);
    }

    .nav-open .hamburger::after {
        opacity: 0;
    }

    /* Prevent body scroll when nav is open */
    .nav-open {
        overflow: hidden;
    }

    /* Adjust section padding for smaller screens */
    .section-padding {
        padding: 60px 0;
    }
    .hero {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* General Mobile Adjustments */
    body {
        font-size: 15px; /* Slightly adjust base font size for mobile */
        line-height: 1.6; /* Adjust line height for mobile readability */
    }
    .container {
        padding: 0 15px; /* Reduce container padding */
    }
    .section-padding {
        padding: 30px 0; /* Reduce section padding further */
    }
    #process.section-padding {
        padding-top: 30px; /* Adjust specific section padding for mobile */
        padding-bottom: 10px; /* Further reduced for less space */
    }

    #features.section-padding {
        padding-top: 15px; /* Reduce top padding for features section on mobile */
    }

    .section-subtitle {
        margin-top: 0.5rem; /* Adjust this value for more/less space */
        margin-bottom: 2rem; /* Optional: Adjust this too */
    }

    /* Headings */
    h1, h2, h3, h4 {
        line-height: 1.3; /* Adjust heading line height */
    }
    .hero h1 {
        font-size: 2rem; /* Further reduce hero heading */
    }
    .about h2 {
        font-size: 2.2rem; /* Adjust about heading */
    }
    h2.section-title {
        font-size: 1.8rem; /* Reduce section titles */
        margin-bottom: 2rem;
    }
    #features h2.section-title {
        white-space: normal; /* Allow wrapping on mobile */
        font-size: 1.8rem; /* Match other section titles */
    }
    .about h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .feature-category h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .process-step h4 {
        font-size: 1.4rem; /* Adjust process step heading */
        margin-bottom: 0.8rem;
    }
    .goal h2 {
        font-size: 1.8rem;
    }

    /* Text */
    p {
        font-size: 1rem; /* Adjust default paragraph size */
    }
    .hero p {
        font-size: 1.05rem; /* Adjust hero paragraph */
    }
    .about p {
        font-size: 1.05rem; /* Adjust about paragraph */
    }
    .process > .container > p {
        font-size: 1.05rem; /* Adjust process intro paragraph */
    }
    .feature-category li {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
      
    }
    .process-step li {
        font-size: 1rem; /* Adjust process list item size */
        padding-left: 1.3em;
    }
    .process-step li::before {
        margin-left: -1.3em;
    }
    .process-step .nested-list {
        padding-left: 1.3em;
    }
    .goal p {
        font-size: 1.05rem;
    }
    .goal .highlight {
        font-size: 1.1rem;
    }
    .result-info p {
        font-size: 0.9rem;
    }
    .pricing-box {
        padding: 30px;
    }
    .price {
        font-size: 3rem;
    }
    .price span {
        font-size: 1rem;
    }
    .offer-text {
        font-size: 1rem;
    }
    .pricing-benefits li {
        font-size: 1rem;
    }

    /* Layout & Spacing */
    .features-grid {
        gap: 25px;
    }
    .feature-category {
        padding: 25px; /* Reduce padding */
    }
    .process-steps-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .process-step {
        flex-basis: 100%; /* Full width on smaller screens */
        padding: 1.5rem; /* Reduce padding */
    }
    .step-number {
        min-width: 1.8em;
        height: 1.8em;
        font-size: 1.1rem; /* Adjust number size */
        margin-right: 0.6em;
    }
    .process-step ul {
        padding-left: calc(1.8em + 0.6em);
    }
    /*
    .results-grid {
        gap: 25px;
    }
    */

    /* Remove redundant/conflicting rules from previous block */
    /* .process-timeline::before { left: 30px; } */
    /* .process-step { padding-left: 70px; } */ /* Handled by flexbox gap and padding */
    /* .step-number { width: 45px; height: 45px; line-height: 45px; font-size: 1.3rem; margin-left: 7.5px; border-width: 3px; box-shadow: 0 0 0 3px var(--optuno-orange); } */ /* Replaced with simpler flex approach */
    /* .cta-button { padding: 12px 30px; } */ /* Keep consistent or adjust if needed */
}

/* Lightbox Customizations (Optional) */
.lb-data .lb-caption {
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.lb-data .lb-number {
    font-family: var(--font-body);
    font-size: 0.85rem;
}




/* Tooltip Styles */
[data-tooltip] {
  position: relative; /* Needed for absolute positioning of the tooltip */
  cursor: help; /* Indicate interactivity */
}

/* Tooltip text */
[data-tooltip]::after {
  content: attr(data-tooltip); /* Use the data-tooltip attribute content */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%; /* Position above the element */
  margin-bottom: 5px; /* Space between element and tooltip */
  background-color: #333; /* Dark background */
  color: #fff; /* White text */
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9em;
  white-space: pre-wrap; /* Allow line breaks within the tooltip */
  min-width: 150px; /* Minimum width */
  max-width: 300px; /* Maximum width */
  text-align: center;
  visibility: hidden; /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
  z-index: 10; /* Ensure it's above other elements */
}

/* Show tooltip on hover */
[data-tooltip]:hover::after {
  visibility: visible;
  opacity: 1;
}

/* Optional: Add a small arrow */
/* [data-tooltip]::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: -5px; /* Position arrow just below the tooltip box */
/*  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent; /* Arrow pointing down */
/*  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 11;
}

[data-tooltip]:hover::before {
  visibility: visible;
  opacity: 1;
} */




/* How It Works Section Styles */
#process.section-padding {
    padding-top: 40px; /* Reduced top padding */
    padding-bottom: 30px; /* Increased bottom padding */
}

.process-steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: #f9f9f9; /* Light background for each step */
    border-radius: 8px;
    padding: 2rem; /* Increased padding */
    /*flex: 1 1 45%;*/
    width:100%;
    /* Allow steps to wrap on smaller screens */
    box-shadow: var(--shadow-soft); /* Use updated soft shadow */
    min-width: 280px; /* Ensure steps don't get too narrow */
}

.process-step h4 {
    color: #6a1b9a; /* Use a theme color */
    font-size: 1.6rem; /* Further increased size */
    margin-bottom: 1rem;
    display: flex;
    /* align-items: center; */ /* Remove vertical centering which might cause issues if heights differ */
    align-items: flex-start; /* Align items to the top */
    position: relative; /* Needed for potential absolute positioning adjustments if required */
    padding-top: 5px; /* Add some padding to prevent overlap */
    font-family: var(--font-body);
}

.step-number {
    display: inline-flex; /* Use inline-flex for better alignment control */
    align-items: center; /* Center number vertically within the circle */
    justify-content: center; /* Center number horizontally */
    background-color: #6a1b9a; /* Theme color background */
    color: #fff;
    border-radius: 50%;
    min-width: 2em; /* Use min-width */
    height: 2em;
    line-height: 1; /* Remove fixed line-height, rely on flex alignment */
    text-align: center;
    margin-right: 0.75em;
    font-weight: bold;
    flex-shrink: 0; /* Prevent the number circle from shrinking */
}

/* Adjust list padding to align with text after number */
.process-step ul {
    list-style: none; /* Remove default bullets */
    padding-left: calc(2em + 0.75em); /* Match indentation with number + margin */
    margin-top: -0.5rem; /* Adjust spacing relative to heading */
}

.process-step li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5em; /* Space for custom bullet */
    font-size: 1.1rem; /* Further increased size */
}

.process-step li::before {
    content: '\2022'; /* Bullet character */
    color: #ff6f00; /* Use an accent color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em; /* Position bullet */
    position: absolute;
}

.process-step .nested-list {
    padding-left: 1.5em; /* Indent nested lists */
    margin-top: 0.5rem;
}

.process-step .nested-list li::before {
    content: '\25E6'; /* Different bullet for nested items */
    color: #6a1b9a; /* Theme color */
}

/* Responsive adjustments for process steps */
@media (max-width: 768px) {
    .process-steps-container {
        flex-direction: column;
    }
    .process-step {
        flex-basis: 100%; /* Full width on smaller screens */
    }
    .hero {
        padding: 40px 0 30px;
    }
.wlcm-sec p {
    margin-bottom: 15px;
} 
#process.section-padding {
    padding-bottom: 0px;
}
#features .walk-plan-sec h2 {
    font-size: 1.8rem;    margin-bottom: 20px;
}
#features {
    padding-bottom: 30px;
}
.offer-text {
       
        margin-bottom: 0px;
    }
.process-step {
    padding: 20px;
}
.result-item {
    
        width:100%;margin:0 0 30px 0;
}
.result-item:last-child{
    margin-bottom:0px;
}
.results-grid {
    margin: 0;
}
.result-item img {
    height: auto;
}
}

cite, em, i {
    font-style: italic;
}


/* Back to Top Button Styles */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff6f00; /* Orange color like example */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px; /* Slightly rounded corners */
    z-index: 9999; /* Ensure it's above most other elements */
    display: flex; /* Use flexbox to center icon */
    align-items: center; /* Center icon vertically */
    justify-content: center; /* Center icon horizontally */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    /* Add these two lines: */
    font-size: 1.8rem; /* Adjust this value for size */
    font-weight: bold; /* Makes the caret thicker */
}

#back-to-top.show {
    /* display: flex; /* Base style already has flex */
    opacity: 1;
    visibility: visible;
}

#back-to-top i.arrow-up {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    position: relative;
    top: -2px; /* Adjust arrow position */
}

#back-to-top:hover {
    background-color: #e66000; /* Darker orange on hover */
}



.step-title {
    flex-grow: 1; /* Allow title to take remaining space */
    /* No specific alignment needed here as flex-start on h4 handles it */
}



/* Center intro paragraphs in Process section */
.process .wlcm-sec  p {
    text-align: center;
    max-width: 800px; /* Keep line length reasonable */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem; /* Increased size */
}




#process h2.section-title {
    margin-bottom: 1rem; /* Reduced margin to match .about h2 */
}
