.elementor-1980 .elementor-element.elementor-element-cbb0dd5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-79px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-50af8dd *//* Process Page Styles - Towsen Clinic */

:root {
    --charcoal: #333231;
    --off-white: #E9E5DC;
    --warm-gray: #A8A6A1;
    --soft-peach: #E4C1AE;
    --leaf-green: #485B3A;
    
    /* Additional colors */
    --charcoal-80: rgba(51, 50, 49, 0.8);
    --white-90: rgba(255, 255, 255, 0.9);
    --green-dark: #3A4A2F;
    --peach-light: #F0D5C3;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(51, 50, 49, 0.08);
    --shadow-md: 0 4px 16px rgba(51, 50, 49, 0.12);
    --shadow-lg: 0 8px 32px rgba(51, 50, 49, 0.16);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--leaf-green);
}

.nav-links a.active {
    color: var(--leaf-green);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--leaf-green);
}

.nav-cta {
    background: var(--leaf-green);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-luxury {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(51, 50, 49, 0.9) 0%, 
        rgba(72, 91, 58, 0.8) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.5) 35px,
        rgba(255, 255, 255, 0.5) 70px
    );
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.luxury-badge {
    color: var(--soft-peach);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-separator {
    color: rgba(228, 193, 174, 0.4);
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.title-line-2 {
    display: block;
    font-weight: 600;
    color: var(--soft-peach);
}

.hero-luxury-desc {
    font-size: 1.25rem;
    color: rgba(233, 229, 220, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--soft-peach);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--peach-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 193, 174, 0.3);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

/* Section Defaults */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--leaf-green);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-emphasis {
    color: var(--leaf-green);
    font-style: italic;
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--charcoal-80);
    text-align: center;
}

/* Step Sections */
.step-section {
    padding: 5rem 0;
    background: white;
}

.step-section.alt-bg {
    background: var(--off-white);
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--leaf-green);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-title-group {
    flex: 1;
}

.step-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.step-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--charcoal-80);
    font-size: 0.875rem;
}

.meta-separator {
    color: var(--warm-gray);
}

.step-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal-80);
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Consultation Grid */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.consultation-card {
    background: white;
    border: 1px solid rgba(168, 166, 161, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-section.alt-bg .consultation-card {
    background: white;
}

.consultation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--leaf-green);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.consultation-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.consultation-card p {
    color: var(--charcoal-80);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Lab Panels */
.lab-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.lab-panel {
    background: white;
    border-left: 4px solid var(--leaf-green);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.lab-panel h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.lab-panel ul {
    list-style: none;
    padding: 0;
}

.lab-panel li {
    padding: 0.5rem 0;
    color: var(--charcoal-80);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(168, 166, 161, 0.1);
}

.lab-panel li:last-child {
    border-bottom: none;
}

.lab-panel li::before {
    content: "→";
    color: var(--leaf-green);
    margin-right: 0.75rem;
    font-weight: bold;
}

.timeline-note {
    background: var(--leaf-green);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

/* Review Cards */
.review-cards {
    display: grid;
    gap: 2rem;
}

.review-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--soft-peach);
}

.review-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--charcoal-80);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-card ul {
    list-style: none;
    padding-left: 1.5rem;
}

.review-card li {
    color: var(--charcoal-80);
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.review-card li::before {
    content: "•";
    color: var(--soft-peach);
    font-weight: bold;
    margin-right: 0.75rem;
    margin-left: -1.5rem;
}

/* Initiation Grid */
.initiation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.initiation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.initiation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.initiation-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.initiation-card .card-icon {
    font-size: 1.5rem;
}

.initiation-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.initiation-card p {
    color: var(--charcoal-80);
    line-height: 1.6;
}

/* Follow-up Timeline */
.followup-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.followup-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--leaf-green), var(--soft-peach));
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--leaf-green);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--leaf-green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-item.featured .timeline-marker {
    background: var(--leaf-green);
    color: white;
    transform: scale(1.1);
}

.timeline-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--charcoal-80);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Difference Section */
.difference-section {
    padding: 5rem 0;
    background: var(--off-white);
}

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

.difference-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 166, 161, 0.2);
}

.difference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--leaf-green);
}

.difference-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.difference-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.difference-card p {
    color: var(--charcoal-80);
    line-height: 1.6;
}

/* Investment Section */
.investment-section {
    padding: 5rem 0;
    background: var(--charcoal);
}

.investment-section .section-label {
    color: var(--soft-peach);
}

.investment-section .section-title {
    color: white;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.investment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(233, 229, 220, 0.1);
}

.investment-card.featured {
    background: rgba(228, 193, 174, 0.1);
    border-color: var(--soft-peach);
}

.investment-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.phase-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(233, 229, 220, 0.1);
}

.phase-block:last-child {
    border-bottom: none;
}

.phase-block h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--soft-peach);
    margin-bottom: 1rem;
}

.phase-block ul {
    list-style: none;
    padding: 0;
}

.phase-block li {
    color: rgba(233, 229, 220, 0.9);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-block li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--soft-peach);
}

.total-time {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(233, 229, 220, 0.1);
    color: var(--soft-peach);
    font-weight: 600;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(233, 229, 220, 0.1);
}

.item-label {
    color: rgba(233, 229, 220, 0.9);
    font-size: 1rem;
}

.item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--soft-peach);
    font-weight: 600;
}

.pricing-note {
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 229, 220, 0.2);
}

.pricing-note p {
    color: rgba(233, 229, 220, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.payment-options {
    color: var(--soft-peach);
    font-weight: 600;
}

/* Results Timeline Section */
.results-timeline {
    padding: 5rem 0;
    background: white;
}

.results-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.results-track::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-gray), var(--leaf-green), var(--soft-peach));
}

.result-phase {
    flex: 1;
    text-align: center;
    position: relative;
}

.phase-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid var(--warm-gray);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.result-phase.featured .phase-marker {
    background: linear-gradient(135deg, var(--leaf-green), var(--soft-peach));
    color: white;
    border: none;
    transform: scale(1.2);
}

.phase-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.phase-content p {
    color: var(--charcoal-80);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* CTA Section */
.cta-luxury {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--leaf-green), var(--green-dark));
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.05) 35px,
        rgba(255, 255, 255, 0.05) 70px
    );
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(233, 229, 220, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--leaf-green);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-final-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: var(--off-white);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.cta-final-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Footer */
.footer-luxury {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(233, 229, 220, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--soft-peach);
}

.footer-column a {
    display: block;
    color: rgba(233, 229, 220, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: rgba(233, 229, 220, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-cta {
    display: inline-block;
    background: var(--soft-peach);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-cta:hover {
    background: var(--peach-light);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: rgba(233, 229, 220, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .consultation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .followup-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .followup-timeline::before {
        display: none;
    }
    
    .results-track {
        flex-direction: column;
        gap: 2rem;
    }
    
    .results-track::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .consultation-grid,
    .lab-panels,
    .initiation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 4rem 1.5rem;
    }
    
    .section-container {
        padding: 0 1.5rem;
    }
    
    .hero-badge-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge-separator {
        display: none;
    }
    
    .cta-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */