/* Custom Font - Canela */
@font-face {
    font-family: 'Canela';
    src: url('Canela_Collection/Canela Family/Canela-Light-Trial.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Canela';
    src: url('Canela_Collection/Canela Family/Canela-Regular-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Canela';
    src: url('Canela_Collection/Canela Family/Canela-Medium-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Canela';
    src: url('Canela_Collection/Canela Family/Canela-Bold-Trial.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-gold: #c9a961;
    --accent-gold-light: #d4b872;
    --text-dark: #0a0e27;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7f8fa;
    --bg-gray: #f0f1f3;
    --border-color: #e2e8f0;
    --font-primary: 'Source Sans 3', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Canela', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'Source Sans 3', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

/* Top Bar - Wehaus Style */
.top-bar {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 32px;
    align-items: center;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-bar-link i {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.top-bar-link:hover {
    color: var(--bg-white);
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-link i {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Sticky Header - Wehaus Style */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 16px 24px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.sticky-header.scrolled {
    background: transparent;
    padding: 8px 24px;
}

.sticky-header.initial-state .header-container {
    background: rgba(255, 255, 255, 0.08);
}

.sticky-header.initial-state .logo a,
.sticky-header.initial-state .nav-link,
.sticky-header.initial-state .menu-toggle-btn {
    color: #ffffff;
}

.sticky-header.scrolled .header-container {
    background: rgba(255, 255, 255, 1);
    transition: background 0.6s ease;
}

.sticky-header.scrolled .logo a,
.sticky-header.scrolled .nav-link {
    color: var(--text-dark);
    transition: color 0.6s ease;
}

.sticky-header.scrolled .menu-toggle-btn {
    background: var(--accent-gold);
    color: #ffffff;
    transition: background 0.6s ease, color 0.6s ease;
}

.sticky-header.scrolled .menu-toggle-btn .btn-text {
    color: #ffffff;
}

.sticky-header.scrolled .menu-toggle-btn .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.sticky-header.scrolled .menu-toggle-btn .btn-icon svg {
    color: #ffffff;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px 32px 18px 32px;
    padding-right: 5px;
    height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease, background 0.6s ease;
}

.sticky-header.scrolled .header-container {
    padding: 8px 20px 8px 20px;
    padding-right: 5px;
    max-width: 1000px;
    background: rgba(255, 255, 255, 1);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease, color 0.6s ease;
    color: #ffffff;
}

.logo-svg {
    height: 36px;
    width: auto;
    transition: all 0.4s ease, filter 0.6s ease;
    filter: brightness(0) invert(1);
}

.sticky-header.scrolled .logo-svg {
    height: 28px;
    filter: brightness(0) invert(0);
}

.logo a:hover {
    opacity: 0.7;
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
    transition: gap 0.4s ease;
}

.sticky-header.scrolled .header-nav {
    gap: 24px;
}

.nav-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease, color 0.6s ease;
    position: relative;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.sticky-header.scrolled .nav-link {
    font-size: 13px;
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sticky-header.scrolled .nav-link:hover {
    color: var(--text-dark);
}

.nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.sticky-header.scrolled .nav-link.active {
    color: var(--text-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.menu-toggle-btn {
    background: #0d1533;
    border: none;
    color: #ffffff;
    transition: all 0.4s ease, color 0.6s ease;
    padding: 12px 28px 12px 32px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 999px;
    font-family: 'Source Sans 3', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.menu-toggle-btn .btn-text {
    color: #ffffff;
}

.slide-out-icon {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.menu-toggle-btn .btn-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-toggle-btn .btn-icon svg {
    color: #000000;
    width: 16px;
    height: 16px;
}

.menu-toggle-btn:hover {
    background: #151a35;
}

.sticky-header.scrolled .menu-toggle-btn:hover {
    background: var(--accent-gold-light);
}

.menu-toggle-btn:hover .slide-out-icon {
    transform: translate3d(4px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.sticky-header.scrolled .menu-toggle-btn {
    padding: 10px 24px 10px 26px;
    font-size: 13px;
    background: var(--accent-gold);
    color: #ffffff;
}

.sticky-header.scrolled .menu-toggle-btn .btn-text {
    color: #ffffff;
}

.sticky-header.scrolled .menu-toggle-btn .btn-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

.sticky-header.scrolled .menu-toggle-btn .btn-icon svg {
    width: 14px;
    height: 14px;
    color: #ffffff;
}

.menu-toggle-btn:hover {
    background: var(--accent-gold-light);
    color: #ffffff;
}

.sticky-header.scrolled .menu-toggle-btn:hover {
    background: var(--accent-gold-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.sticky-header.initial-state .mobile-menu-toggle span {
    background: #ffffff;
}

.sticky-header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* Hero Section - Kenslow Style */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 40px 100px;
    background: #0d1533;
    position: relative;
    overflow: hidden;
    --parallax-offset: 0px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg-hero-image.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: translateY(var(--parallax-offset, 0px));
    will-change: transform, opacity;
    animation: fadeInTo20 1s ease-out 0s forwards;
    animation-fill-mode: forwards;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(14, 39, 106, 0.8) 0%, rgba(14, 39, 106, 0) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
    animation-fill-mode: forwards;
}

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--bg-white);
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    animation-fill-mode: forwards;
}

.hero-subheadline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    animation-fill-mode: forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 80px 0 56px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 1s forwards;
    animation-fill-mode: forwards;
}

.btn {
    font-family: 'Source Sans 3', sans-serif;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-white);
    color: #0d1533;
    transform: translateY(-3px);
}

.cta-section .btn-secondary {
    color: #0f1732;
    border: 2px solid #0f1732;
}

.cta-section .btn-secondary:hover {
    border-color: transparent;
}

/* Section Styles */
section {
    padding: 140px 0;
    position: relative;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.section-headline .highlight {
    color: var(--accent-gold);
}

.advisors-explanation .highlight {
    color: var(--accent-gold) !important;
}

/* Typing animation for support text */
.typing-text {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
    min-width: 0.5em;
    font-weight: 700;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    top: 0;
    color: var(--accent-gold) !important;
    font-weight: 300;
    animation: blink 1s infinite;
    opacity: 1;
}

.typing-text.typing-complete::after {
    display: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.glow-highlight {
    color: var(--accent-gold);
}

.section-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Values Section */
.values-section {
    background: var(--bg-light);
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.values-text {
    position: sticky;
    top: 120px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    padding: 48px 40px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.value-icon i {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.value-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.value-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* What We Do Section */
.what-we-do-section {
    background: var(--bg-light);
    text-align: center;
    position: relative;
    background-image: url('bottom-svg-pattern.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.four-phase-model {
    margin-top: 80px;
}

.phase-model-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.phases-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.phase-card {
    padding: 48px 32px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid var(--border-color);
    position: relative;
    text-align: left;
}

.phase-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.phase-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.phase-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.phase-icon i {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.phase-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
}

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

.phase-list li {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    text-align: left;
}

.phase-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 20px;
}

.phase-list li:last-child {
    margin-bottom: 0;
}

/* Outcomes Section */
.outcomes-section {
    background: var(--bg-white);
    text-align: center;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    margin-top: 80px;
    max-width: 976px;
    margin-left: auto;
    margin-right: auto;
}

.outcomes-grid .outcome-card:nth-child(1) {
    grid-column: 1 / span 3;
}

.outcomes-grid .outcome-card:nth-child(2) {
    grid-column: 4 / span 3;
}

.outcomes-grid .outcome-card:nth-child(3) {
    grid-column: 1 / span 2;
}

.outcomes-grid .outcome-card:nth-child(4) {
    grid-column: 3 / span 2;
}

.outcomes-grid .outcome-card:nth-child(5) {
    grid-column: 5 / span 2;
}

.outcome-card {
    padding: 48px 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.outcome-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.outcome-card:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.outcome-icon {
    font-size: 56px;
    color: var(--accent-gold);
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.outcome-icon i {
    font-size: 56px;
    width: 56px;
    height: 56px;
}

.outcome-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* How We Work With Advisors Section - Interactive Timeline */
.advisors-section-timeline {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background-image: url('bottom-svg-pattern.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.advisors-header {
    text-align: center;
    margin-bottom: 100px;
}

.advisors-header .section-intro {
    margin-bottom: 24px;
}

.advisors-explanation {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline Container */
.advisors-timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Central Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--accent-gold) 5%,
        var(--accent-gold) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
    opacity: 0.2;
    z-index: 1;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 140px;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot Wrapper */
.timeline-dot-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline Dot */
.timeline-dot {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px var(--bg-light), 0 8px 32px rgba(202, 170, 97, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.timeline-item.active .timeline-dot::before {
    transform: translate(-50%, -50%) scale(1);
}

.timeline-dot-inner {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.active .timeline-dot-inner {
    color: white;
    transform: scale(1.1);
}

.timeline-item.active .timeline-dot {
    width: 80px;
    height: 80px;
    border-width: 4px;
    box-shadow: 0 0 0 10px var(--bg-light), 0 0 40px rgba(202, 170, 97, 0.6);
}

/* Timeline Content Wrapper */
.timeline-content-wrapper {
    width: 100%;
    padding: 0 60px;
}

/* Timeline Content */
.timeline-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-content.reverse {
    flex-direction: row-reverse;
}

/* Timeline Image */
.timeline-image-wrapper {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--bg-gray);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active .timeline-image-wrapper {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.timeline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active .timeline-image {
    transform: scale(1.05);
}

.timeline-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(202, 170, 97, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.timeline-item.active .timeline-image-overlay {
    opacity: 1;
}

/* Timeline Text */
.timeline-text {
    width: 45%;
    padding: 48px 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-item.active .timeline-text {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.2;
    letter-spacing: -4px;
}

.timeline-item.active .timeline-number {
    opacity: 0.3;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.timeline-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-left: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-features li {
    opacity: 1;
    transform: translateX(0);
}

.timeline-features li:nth-child(1) { transition-delay: 0.1s; }
.timeline-features li:nth-child(2) { transition-delay: 0.2s; }
.timeline-features li:nth-child(3) { transition-delay: 0.3s; }

.timeline-features li:last-child {
    margin-bottom: 0;
}

.timeline-features i {
    font-size: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.advisors-disclosure {
    text-align: center;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 100px;
    font-style: italic;
}

/* Responsive Timeline */
@media (max-width: 968px) {
    .timeline-line {
        left: 40px;
    }

    .timeline-dot-wrapper {
        left: 40px;
    }

    .timeline-content-wrapper {
        padding-left: 100px;
        padding-right: 0;
    }

    .timeline-content,
    .timeline-content.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .timeline-image-wrapper,
    .timeline-text {
        width: 100%;
    }

    .timeline-image {
        height: 300px;
    }

    .timeline-text {
        padding: 32px;
    }

    .timeline-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .advisors-section-timeline {
        padding: 100px 0;
    }

    .timeline-item {
        margin-bottom: 100px;
        min-height: auto;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-dot-wrapper {
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .timeline-dot {
        width: 48px;
        height: 48px;
    }

    .timeline-dot-inner {
        font-size: 20px;
    }

    .timeline-item.active .timeline-dot {
        width: 60px;
        height: 60px;
    }

    .timeline-content-wrapper {
        padding-left: 80px;
    }

    .timeline-image {
        height: 250px;
    }

    .timeline-title {
        font-size: 24px;
    }

    .timeline-description {
        font-size: 16px;
    }

    .timeline-number {
        font-size: 56px;
    }
}

/* Services Section */
.services-section {
    background: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    padding: 60px 48px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid transparent;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    border-color: var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.service-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.service-label {
    font-size: 14px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Case Studies Section */
.case-studies-section {
    background: var(--bg-light);
    text-align: center;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.case-study-card {
    padding: 60px 48px;
    background: var(--bg-white);
    border-radius: 12px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid var(--border-color);
}

.case-study-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.case-year {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.case-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Trust Section */
.trust-section {
    background: var(--bg-white);
}

.trust-content {
    text-align: center;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.trust-metric {
    padding: 48px 32px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.trust-metric.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-metric:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-icon i {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.trust-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.trust-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Values Detail Section */
.values-detail-section {
    background: var(--bg-light);
    text-align: center;
    position: relative;
    background-image: url('bottom-svg-pattern.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.values-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.value-feature {
    padding: 48px 40px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.value-feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-feature-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-feature-icon i {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.feature-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.feature-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Who We Work With Section */
.who-section {
    background: var(--bg-white);
    text-align: center;
}

.best-fit-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 100px;
}

.profile-card {
    position: relative;
    overflow: hidden;
    padding: 48px 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.profile-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.profile-card:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.profile-icon {
    font-size: 56px;
    margin-bottom: 28px;
    color: var(--accent-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.profile-icon i {
    font-size: 56px;
    width: 56px;
    height: 56px;
}

.profile-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
}

.profile-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.profile-card:hover .profile-hover-image {
    opacity: 1;
}

.profile-card .profile-icon,
.profile-card h3 {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:hover .profile-icon,
.profile-card:hover h3 {
    opacity: 0;
}

.not-fit-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.not-fit-headline {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.not-fit-headline .highlight {
    color: var(--accent-gold);
}

.disqualifiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.disqualifier-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.disqualifier-item:hover {
    background: var(--bg-white);
}

.disqualifier-icon {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disqualifier-icon i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.disqualifier-item p {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 17px;
}

.fit-check-link {
    display: block;
    text-align: center;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.fit-check-link:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

/* Section Divider */
.section-divider {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.divider-line {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-color) 20%, 
        var(--accent-gold) 50%, 
        var(--border-color) 80%, 
        transparent 100%
    );
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(202, 170, 97, 0.5);
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    text-align: center;
    display: none;
}

/* Hide Team nav link */
.header-nav .nav-link[href="#team"] {
    display: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.team-card {
    background: var(--bg-white);
    border: none;
    border-radius: 16px;
    padding: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    position: relative;
}

.team-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 16px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo {
    height: 60%;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: var(--bg-white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-info {
    transform: translateY(0);
}

.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-photo-placeholder {
    color: var(--text-light);
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 8px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.team-title {
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 0;
}

.team-role {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 28px;
}

.view-details-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.role-details {
    margin-top: 28px;
    padding: 28px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: left;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

/* How We Work Section */
.how-we-work-section {
    background: var(--bg-white);
    text-align: center;
}

.work-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.work-feature {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.work-feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.work-feature:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 32px;
    color: var(--accent-gold);
    font-weight: 700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.work-feature p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* CTA Section */
/* Contact Us Section */
.contact-section {
    background: var(--bg-light);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-image: url('bottom-svg-pattern.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-left {
    color: var(--text-dark);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 97, 0.1);
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.contact-badge:hover {
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-2px);
}

.contact-badge .star-icon {
    width: 14px;
    height: 14px;
    fill: var(--accent-gold);
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.contact-heading .highlight {
    color: var(--accent-gold);
}

.contact-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0 0 16px 0;
    font-family: var(--font-primary);
}

.contact-reassurance {
    font-size: 16px;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
    font-family: var(--font-primary);
    opacity: 0.9;
}

.contact-right {
    position: relative;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    background: var(--accent-gold);
    transform: none;
    box-shadow: none;
}

.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    font-family: var(--font-primary);
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clouds-overlay {
    display: none;
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 56px 0 24px;
    flex-wrap: wrap;
}

.cta-reassurance {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: var(--text-medium);
    text-align: center;
    margin-top: 0;
    font-style: italic;
}

/* Step By Step Plan Section */
.step-by-step-section {
    background: var(--bg-white);
    text-align: center;
    padding: 140px 0;
    display: none;
}

.step-by-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-by-step-card {
    padding: 48px 32px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.step-by-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
    background: var(--bg-white);
}

.step-icon {
    font-size: 56px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    width: 96px;
    height: 96px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.step-icon i {
    font-size: 56px;
    width: 56px;
    height: 56px;
}

.step-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(10px);
}

.step-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
}

/* Animated CTA Section */
.cta {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    padding: 140px 0;
}

.cta-sticky {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image {
    position: absolute;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    will-change: transform;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
}

.cta-image:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.cta-image._01 {
    width: 180px;
    height: 180px;
    margin-top: -90px;
    margin-left: -90px;
    transform: translate3d(-42.9155vw, -30.04085vh, 0px);
}

.cta-image._02 {
    width: 220px;
    height: 220px;
    margin-top: -110px;
    margin-left: -110px;
    transform: translate3d(0vw, -30.04085vh, 0px);
}

.cta-image._03 {
    width: 190px;
    height: 190px;
    margin-top: -95px;
    margin-left: -95px;
    transform: translate3d(42.9155vw, -30.04085vh, 0px);
}

.cta-image._04 {
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    transform: translate3d(42.9155vw, 25.7493vh, 0px);
}

.cta-image._05 {
    width: 210px;
    height: 210px;
    margin-top: -105px;
    margin-left: -105px;
    transform: translate3d(25.7493vw, 42.9155vh, 0px);
}

.cta-image._06 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
    transform: translate3d(0vw, 30.04085vh, 0px);
}

.cta-image._07 {
    width: 195px;
    height: 195px;
    margin-top: -97.5px;
    margin-left: -97.5px;
    transform: translate3d(-25.7493vw, 38.62395vh, 0px);
}

.cta-image._08 {
    width: 185px;
    height: 185px;
    margin-top: -92.5px;
    margin-left: -92.5px;
    transform: translate3d(-47.20705vw, 17.1662vh, 0px);
}

.cta-text-weap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    max-width: 800px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-style-h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -1px;
    text-align: center;
}

.cta-text .bold {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Responsive adjustments for CTA */
@media (max-width: 968px) {
    .cta {
        padding: 100px 0;
    }

    .cta-sticky {
        min-height: 500px;
    }

    .cta-image-wrap {
        height: 500px;
    }

    .cta-text-weap {
        max-width: 600px;
        padding: 40px;
    }

    .text-style-h3 {
        font-size: 28px;
    }

    .cta-image {
        width: 150px;
        height: 150px;
    }

    .cta-image._01,
    .cta-image._02,
    .cta-image._03,
    .cta-image._04,
    .cta-image._05,
    .cta-image._06,
    .cta-image._07,
    .cta-image._08 {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }

    .cta-sticky {
        min-height: 400px;
    }

    .cta-image-wrap {
        height: 400px;
    }

    .cta-text-weap {
        max-width: 90%;
        padding: 32px;
    }

    .text-style-h3 {
        font-size: 24px;
    }

    .cta-image {
        width: 100px;
        height: 100px;
    }

    .cta-image._01,
    .cta-image._02,
    .cta-image._03,
    .cta-image._04,
    .cta-image._05,
    .cta-image._06,
    .cta-image._07,
    .cta-image._08 {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .cta-text-weap {
        padding: 24px;
    }

    .text-style-h3 {
        font-size: 20px;
    }

    .cta-image {
        width: 80px;
        height: 80px;
    }

    .cta-image._01,
    .cta-image._02,
    .cta-image._03,
    .cta-image._04,
    .cta-image._05,
    .cta-image._06,
    .cta-image._07,
    .cta-image._08 {
        width: 70px;
        height: 70px;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 100px 40px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(202, 170, 97, 0.3) 20%, 
        var(--accent-gold) 50%, 
        rgba(202, 170, 97, 0.3) 80%, 
        transparent 100%
    );
}

.footer-top-border {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(202, 170, 97, 0.2) 20%, 
        var(--accent-gold) 50%, 
        rgba(202, 170, 97, 0.2) 80%, 
        transparent 100%
    );
    margin-bottom: 60px;
    transform-origin: left;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-svg {
    height: 36px;
    width: auto;
    display: block;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-svg {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--bg-white);
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease, transform 0.3s ease;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    position: relative;
    padding-left: 0;
    display: inline-block;
    width: fit-content;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.footer-link:hover::before {
    width: 4px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    text-align: right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-style: italic;
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(202, 170, 97, 0.2) 50%, 
        transparent 100%
    );
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(202, 170, 97, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    font-size: 24px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-gold-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(202, 170, 97, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .scroll-to-top i {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer {
        padding: 80px 32px 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-center {
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }

    .footer-section-title {
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 24px 24px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-logo-svg {
        height: 36px;
    }

    .footer-tagline {
        font-size: 15px;
    }

    .footer-section-title {
        font-size: 16px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-disclaimer,
    .footer-copyright {
        font-size: 13px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .top-bar-container {
        padding: 0 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .top-bar-left {
        gap: 20px;
        flex-wrap: wrap;
    }

    .top-bar-link {
        font-size: 13px;
    }

    .header-container {
        padding: 12px 20px;
        height: auto;
        min-height: 60px;
    }

    .sticky-header.scrolled .header-container {
        padding: 8px 16px;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: flex;
    }

    .header-nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header-nav .nav-link {
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
        color: var(--text-dark) !important;
        font-size: 16px;
        text-align: left;
    }

    .header-nav .nav-link:last-child {
        border-bottom: none;
    }

    .header-nav .nav-link::after {
        display: none;
    }

    .header-nav .nav-link:hover {
        color: var(--accent-gold) !important;
    }

    /* Override initial state and scrolled state colors for mobile menu */
    .sticky-header.initial-state .header-nav .nav-link,
    .sticky-header.scrolled .header-nav .nav-link {
        color: var(--text-dark) !important;
    }

    .sticky-header.initial-state .header-nav .nav-link:hover,
    .sticky-header.scrolled .header-nav .nav-link:hover {
        color: var(--accent-gold) !important;
    }

    .menu-toggle-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .top-bar {
        display: none;
    }

    .sticky-header {
        top: 0;
        padding: 12px 16px;
    }

    .sticky-header.scrolled {
        padding: 8px 16px;
    }

    .header-container {
        padding: 12px 16px;
        height: auto;
        min-height: 56px;
    }

    .sticky-header.scrolled .header-container {
        padding: 8px 12px;
    }

    .logo-svg {
        height: 32px;
    }

    .sticky-header.scrolled .logo-svg {
        height: 24px;
    }

    .header-nav {
        top: 60px;
        padding: 20px 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

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

    .values-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-text {
        position: static;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 32px;
    }

    .header-container {
        padding: 20px 32px;
    }

    .header-nav {
        display: none;
    }

    .header-nav.mobile-active {
        display: flex;
    }

    section {
        padding: 100px 0;
    }

    .hero-section {
        padding: 160px 32px 80px;
    }

    .section-headline {
        font-size: 40px;
    }

    .phases-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .services-grid,
    .advisors-grid,
    .case-studies-grid,
    .trust-metrics,
    .values-features {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid .outcome-card:nth-child(n) {
        grid-column: span 1;
    }

    .best-fit-profiles,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header-container {
        padding: 18px 24px;
    }

    .top-bar-container {
        padding: 0 24px;
    }

    .hero-headline {
        font-size: 38px;
    }

    .hero-subheadline {
        font-size: 20px;
    }

    .section-headline {
        font-size: 40px;
    }

    .section-intro {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .footer-center {
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }

    .footer-section-title {
        margin-bottom: 12px;
    }

    section {
        padding: 80px 0;
    }

    .hero-section {
        padding: 140px 24px 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .phases-timeline {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid .outcome-card:nth-child(n) {
        grid-column: span 1;
    }

    .step-by-step-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        padding: 16px;
    }

    .hero-section {
        padding: 120px 16px 50px;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .section-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-intro {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .hero-ctas,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .header-nav {
        gap: 16px;
        padding: 24px 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .value-card,
    .profile-card,
    .phase-card,
    .outcome-card,
    .advisor-card,
    .team-card,
    .work-feature {
        padding: 32px 24px;
    }

    .process-wrapper {
        margin: 40px auto 0;
        gap: 8px;
    }

    .process-item {
        min-height: 300px;
    }

    .process-content-overlay {
        padding: 20px;
    }

    .process-number {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .process-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .how-it-works-section {
        padding: 50px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInTo20 {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.2;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* How It Works Section - Accordion Style */
.how-it-works-section {
    background: var(--bg-white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url('bottom-svg-pattern.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.process-wrapper {
    max-width: 1140px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
    height: 456px;
}

.process-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 1s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 50px;
    display: flex;
    flex-direction: column;
    will-change: flex-basis, transform;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.process-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.process-item.active {
    flex: 1 1 auto;
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.process-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-item:hover .process-card-image {
    transform: scale(1.05);
}

.process-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.process-item.active .process-card-image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.process-card-image-1 {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-color: #f4a261;
}

.process-card-image-2 {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-color: #264653;
}

.process-card-image-3 {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2015&q=80');
    background-color: #e9c46a;
}

.process-card-image-4 {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-color: #2a9d8f;
}

.process-card-image-5 {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-color: #667eea;
}

.process-content-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    color: white;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
    pointer-events: none;
}

.process-item.active .process-content-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.process-number {
    font-size: 72px;
    font-weight: 500;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    filter: blur(10px);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: white;
    margin: 0 0 16px 0;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.process-description {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    text-align: left;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

/* How We Work Section */
.section.we-work {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.main-section-wrapper {
    position: relative;
    width: 100%;
}

.we-work-main-wrapper {
    position: relative;
    width: 100%;
}

.w-layout-blockcontainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.container.w-container {
    padding-left: 24px;
    padding-right: 24px;
}

.we-work-wrapper {
    position: relative;
    z-index: 2;
}

/* Title Section */
.we-work-title-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.subtitle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.subtitle-box.center {
    justify-content: center;
}

.subtitle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.subtitle-dot.light {
    background: var(--accent-gold);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.subtitle.light {
    color: var(--navy-blue);
}

.section-title.we-work {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.2;
    margin: 0;
}

/* Content Wrapper */
.we-work-content-wrapper-sticky {
    position: relative;
}

.we-work-content-wrapper {
    margin-bottom: 120px;
    position: relative;
}

.we-work-content-wrapper:last-child {
    margin-bottom: 0;
}

.we-work-content-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

/* Scale Wrapper (Step Indicator) */
.we-work-scale-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.we-work-scale-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.we-work-scale-img-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.we-work-scale-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.we-work-scale-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.we-work-scale-inner-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.we-work-scale-inner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.we-work-scale-text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.we-work-scale-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy-blue);
    text-align: center;
}

/* Content Flex */
.we-work-content-inner-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
}

.we-work-content-inner-img-box {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.we-work-content-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.we-work-content-inner-img-box:hover .we-work-content-inner-img {
    transform: scale(1.05);
}

/* Content Text */
.we-work-content-title-wrappre {
    flex: 1;
}

.we-work-content-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--navy-blue);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.we-work-content-details {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Button Wrapper */
.we-work-button-wrapper {
    margin-top: 32px;
}

.primary-button-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--navy-blue);
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.primary-button-block.white-button {
    background: white;
    border: 2px solid var(--navy-blue);
}

.primary-button-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.button-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
    transition: transform 0.3s ease;
}

.button-text.brand-color {
    color: var(--navy-blue);
}

.button-text.is-absolute {
    position: absolute;
    opacity: 0;
}

/* Decorative Circles */
.we-work-carcle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(202, 170, 97, 0.1), rgba(15, 23, 50, 0.1));
    pointer-events: none;
    z-index: 1;
}

.we-work-carcle.one {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -200px;
}

.we-work-carcle.two {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -150px;
}

.we-work-carcle.three {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -250px;
}

/* We Work Responsive */
@media (max-width: 968px) {
    .section.we-work {
        padding: 80px 0;
    }

    .we-work-title-wrapper {
        margin-bottom: 60px;
    }

    .section-title.we-work {
        font-size: 36px;
    }

    .we-work-content-wrapper {
        margin-bottom: 80px;
    }

    .we-work-content-inner {
        flex-direction: column;
        gap: 40px;
    }

    .we-work-scale-wrapper {
        width: 150px;
        height: 150px;
    }

    .we-work-content-inner-flex {
        flex-direction: column;
        gap: 32px;
    }

    .we-work-content-inner-img-box {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }

    .we-work-content-title {
        font-size: 28px;
    }

    .we-work-content-details {
        font-size: 16px;
    }

    .we-work-carcle.one,
    .we-work-carcle.two,
    .we-work-carcle.three {
        display: none;
    }
}

@media (max-width: 768px) {
    .section.we-work {
        padding: 60px 0;
    }

    .section-title.we-work {
        font-size: 32px;
    }

    .we-work-scale-wrapper {
        width: 120px;
        height: 120px;
    }

    .we-work-content-title {
        font-size: 24px;
    }
}

@media (max-width: 968px) {
    .process-wrapper {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .process-item {
        flex: 1 1 auto;
        min-height: 400px;
    }

    .process-item.active {
        min-width: 100%;
    }

    .process-content-overlay {
        padding: 32px;
    }

    .process-number {
        font-size: 56px;
    }

    .process-title {
        font-size: 28px;
    }

    .process-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-section .container {
        padding: 0 24px;
    }

    .process-wrapper {
        margin: 60px auto 0;
        gap: 12px;
        padding: 0;
    }

    .process-item {
        min-height: 350px;
        flex: 0 0 100px;
    }

    .process-content-overlay {
        padding: 24px;
    }

    .process-number {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .process-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .process-description {
        font-size: 15px;
    }

    .step-by-step-card {
        padding: 32px 24px;
    }

    .step-icon {
        font-size: 48px;
    }

    .step-icon i {
        font-size: 48px;
        width: 48px;
        height: 48px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-description {
        font-size: 15px;
    }
}

/* Contact Section Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 24px;
    }

    .contact-heading {
        font-size: 48px;
    }

    .contact-form {
        padding: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 150px;
    }

    .contact-container {
        padding: 0 20px;
        gap: 40px;
    }

    .contact-heading {
        font-size: 36px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
}