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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

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

/* Modern Mobile Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
    padding: 16px 0;
    transform: translateY(-100%);
}

/* Inner pages navigation - visible by default */
.nav-container.inner-page-nav {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container.inner-page-nav .logo {
    visibility: visible;
}

.nav-container.inner-page-nav .mobile-menu-toggle {
    visibility: visible;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.nav-container.inner-page-nav .hamburger-line {
    background: white;
}

.nav-container.inner-page-nav .logo img {
    height: 50px;
    filter: grayscale(1) brightness(10) contrast(1);
    opacity: 1;
}

.nav-container.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

/* Hero Logo Styling - left aligned within hero sections */
.hero-logo {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 4;
}

.hero-logo img {
    height: 72px;
    filter: grayscale(1) brightness(10) contrast(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    drop-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(1) brightness(12) contrast(1);
}

/* Hero Hamburger Menu - right aligned within hero sections */
.hero-hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
}

/* Hide header elements by default */
.logo {
    visibility: hidden;
}

.mobile-menu-toggle {
    visibility: hidden;
}

/* Show header elements when scrolled */
.nav-container.scrolled .logo {
    visibility: visible;
}

.nav-container.scrolled .mobile-menu-toggle {
    visibility: visible;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.nav-container.scrolled .hamburger-line {
    background: white;
}

.nav-container.scrolled .logo img {
    height: 50px;
    filter: grayscale(1) brightness(10) contrast(1);
    opacity: 1;
}

/* Hero elements remain visible */
.hero-hamburger .mobile-menu-toggle {
    visibility: visible;
}

/* Mobile menu logo styling */
.mobile-menu-header .logo {
    padding-left: 60px;
    visibility: visible;
}

.mobile-menu-header .logo img {
    height: 96px;
    filter: grayscale(1) brightness(10) contrast(1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    margin-right: 4px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    margin-bottom: 4px;
}

.hamburger-line:nth-child(2) {
    margin-bottom: 4px;
}

.hamburger-line:nth-child(3) {
    margin-bottom: 0;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 80px 30px 40px;
    max-width: 480px;
    margin: 0 auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav-menu li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-menu li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Manrope', sans-serif;
}

.mobile-nav-menu a:hover {
    color: #FF6B35;
    padding-left: 20px;
}

.mobile-nav-menu a.active {
    color: #FF6B35;
    font-weight: 400;
}

.mobile-nav-menu a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    border-radius: 2px;
    transform: translateY(-50%);
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    margin: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    padding: 18px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.mobile-menu-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #FF6B35;
}

/* Hero Sections */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title,
.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.hero-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
}

.hero-cta.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Page Headers */
.page-header,
.about-hero,
.contact-hero,
.insights-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insights-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.insights-hero .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insights-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.insights-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.insights-hero .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.5;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Manrope', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #e55a2b;
}

/* Services Page Specific */
.services-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.services-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.service-number {
    color: #FF6B35;
    font-weight: 600;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-cta {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.service-cta:hover {
    color: #ffffff;
}

/* Active Service Item Styling */
.service-item.active {
    position: relative;
    padding: 40px 0 50px;
    border-bottom: 2px solid #FF6B35;
}

.service-item.active .service-title {
    color: white;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.service-item.active .service-number {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1rem;
}

.service-item.active .service-description {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.service-item.active .service-cta {
    background: #FF6B35;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-item.active .service-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Non-active Service Items */
.service-item:not(.active) {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:not(.active) .service-title {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.service-item:not(.active) .service-number {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.service-item:not(.active) .service-description,
.service-item:not(.active) .service-cta {
    display: none;
}

.service-item:not(.active):hover .service-title {
    color: rgba(255, 255, 255, 0.7);
}

.service-item:not(.active):hover .service-number {
    color: rgba(255, 107, 53, 0.7);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Insights Page */
.filter-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.filter-btn:active {
    transform: translateY(0);
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 12px 45px 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    width: 280px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.search-icon svg {
    width: 16px;
    height: 16px;
}

.featured-insight {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.featured-insight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-image-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.featured-image-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 10px 0;
    font-family: 'Manrope', sans-serif;
}

.featured-image-subtitle {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.author-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-initial {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.featured-image {
    background-size: cover;
    background-position: center;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.insight-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.insight-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.insight-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.insight-content {
    padding: 25px;
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.insight-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.insight-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.insight-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
}

/* Contact Page */
.contact-badge,
.company-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #FF6B35;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    overflow: hidden;
}

.contact-info {
    position: sticky;
    top: 140px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h4 {
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.method-content p {
    color: #666;
    margin-bottom: 10px;
}

.method-content a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

.response-time {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.response-time h4 {
    color: #FF6B35;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.consultation-form {
    display: grid;
    gap: 25px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.consultation-type {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.type-option {
    position: relative;
}

.type-option input[type="radio"] {
    display: none;
}

.type-option label {
    display: block;
    padding: 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.type-option input[type="radio"]:checked + label {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.type-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.type-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.type-description {
    font-size: 12px;
    color: #666;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* BANT Multi-Step Form Styles */

/* Multi-Step Form */
.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    min-height: 400px;
}

.form-step.active {
    display: block;
    opacity: 1;
}

.step-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    font-family: 'Manrope', sans-serif;
}

.step-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Checkbox Groups */
.checkbox-group {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-option:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.05);
}

.checkbox-option.selected {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 12px 0 0;
    flex-shrink: 0;
    accent-color: #FF6B35;
    cursor: pointer;
}

.checkbox-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
}

.checkbox-option.selected .checkbox-text {
    color: white;
    font-weight: 500;
}

/* Adaptive Fields */
.adaptive-field {
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
    border-left: 3px solid #FF6B35;
    padding-left: 16px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 0 8px 8px 0;
}

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

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 16px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-btn {
    background: linear-gradient(135deg, #4A90E2, #5BA3F5);
    border-color: #4A90E2;
}

.next-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateY(-1px);
}

/* Progress Steps */
.form-progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
    flex-wrap: wrap;
}

.progress-step {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.progress-step.active {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    border-color: #FF6B35;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.progress-step.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-color: #4CAF50;
}

.progress-step.completed::after {
    content: "✓";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d94e26);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* BANT Success Messages */
.bant-form-success {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.1));
    border-radius: 16px;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: block;
}

.success-icon.hot-lead {
    animation: pulse 2s infinite;
}

.success-icon.warm-lead {
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #FFD700; }
    to { text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700; }
}

.bant-form-success h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

.bant-form-success p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bant-form-success p strong {
    color: #4CAF50;
    font-weight: 600;
}

.success-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.success-actions .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Error Messages */
.group-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    font-weight: 500;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

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

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.privacy-note {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.privacy-note a {
    color: #FF6B35;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* Tools Page Styles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.tools-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    color: white;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tool-card.roi {
    --gradient: linear-gradient(135deg, #FF6B35, #FF8E53);
}

.tool-card.cultural {
    --gradient: linear-gradient(135deg, #007AFF, #5AC8FA);
}

.tool-card.growth {
    --gradient: linear-gradient(135deg, #34C759, #30D158);
}

.tool-card.market {
    --gradient: linear-gradient(135deg, #5856D6, #AF52DE);
}

.tool-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.tool-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.tool-features {
    list-style: none;
    margin-bottom: 30px;
}

.tool-features li {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.tool-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-cta {
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Footer Moving Text Animation */
.footer-moving-text {
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.moving-text-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollText 40s linear infinite;
    gap: 60px;
}

.moving-text-item {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.moving-text-separator {
    font-size: clamp(2rem, 6vw, 4rem);
    color: rgba(255, 107, 53, 0.2);
    font-weight: 300;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer Main Content */
.footer-main-content {
    background: #1a1a1a;
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    text-align: center;
}

.footer-cta-section {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.footer-cta-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 60px 0;
    font-weight: 300;
    line-height: 1.2;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-cta-button:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer-cta-button .cta-dot {
    width: 12px;
    height: 12px;
    background: #FF6B35;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-cta-button:hover .cta-dot {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact a {
    color: #FF6B35;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* CTA Sections */
.cta-section,
.newsletter-cta,
.tools-cta {
    background: #FF6B35;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content,
.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2,
.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content p,
.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #FF6B35;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.newsletter-form button {
    background: white;
    color: #FF6B35;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Office Info */
.office-info {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

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

.office-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.office-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.office-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Coming Soon */
.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.preview-highlights {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: left;
}

.preview-highlights h3 {
    margin-bottom: 20px;
    color: #333;
}

.preview-highlights ul {
    list-style: none;
    padding: 0;
}

.preview-highlights li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.preview-highlights li::before {
    content: '📈';
    position: absolute;
    left: 0;
}

.preview-highlights li:last-child {
    border-bottom: none;
}

.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Company Stats */
.company-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* About Page Specific Styles */
.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.social-link:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Timeline Enhancement */
.journey-timeline {
    position: relative;
    padding: 20px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FF6B35, rgba(255, 107, 53, 0.3));
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 80px;
    margin-bottom: 30px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 20px;
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Value Cards Enhancement */
.value-card {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    border-color: #FF6B35;
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
}

/* About Page CTA Section */
.about-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.cta-primary {
    background: white;
    color: #FF6B35;
}

.cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LCAxMDcsIDUzLCAwLjAzKSIgZmlsbC1ydWxlPSJub256ZXJvIj48Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSI0Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.5;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-badge {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.newsletter-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Manrope', sans-serif;
}

.newsletter-cta p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 30px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 26px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 26px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #e55a2b;
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-note {
    font-size: 14px;
    color: #666;
    margin: 0;
    opacity: 0.8;
}

/* Loading and No Results */
.loading, .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading p, .no-results h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.no-results p {
    color: #666;
    font-size: 16px;
}

.loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsiveness for about page */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-principles {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .origin-story,
    .company-values,
    .team-section,
    .expertise-section,
    .partnership-approach {
        padding: 60px 0;
    }
    
    .approach-principles {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: none;
    }
    
    .principle-item {
        padding: 30px 25px;
        text-align: center;
    }
    
    .story-content h2,
    .approach-content h2 {
        font-size: 2rem;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
    
    .journey-timeline::before {
        left: 25px;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .expertise-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: none;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
}

/* About Page Section Styles */
.origin-story {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.founder-highlight {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.founder-highlight h4 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.company-values {
    padding: 100px 0;
    background: white;
}

.team-section {
    padding: 100px 0;
    background: #f8f9fa;
    display: none;
}

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

.team-member {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.member-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: #FF6B35;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.member-bio {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.member-experience {
    text-align: left;
    margin-bottom: 30px;
}

.member-experience h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.experience-list li {
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.experience-list li:last-child {
    border-bottom: none;
}

.expertise-section {
    padding: 100px 0;
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

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

.expertise-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    display: block;
    margin-bottom: 15px;
}

.expertise-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.expertise-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.partnership-approach {
    padding: 100px 0;
    background: #f8f9fa;
}

.approach-content p:first-of-type {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.8;
}


.approach-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.principle-item {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.principle-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    border-color: #FF6B35;
}

.principle-item h4 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.principle-item p {
    color: #666;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Skip Links for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-size: 14px;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Focus Indicators */
*:focus-visible {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
.cta-button:focus-visible,
.tool-cta:focus-visible {
    outline: 3px solid #FF6B35;
    outline-offset: 2px;
}

/* Standardized Breadcrumb Styles */
.breadcrumb-container {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B35;
}

.breadcrumb a:focus-visible {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
    border-radius: 2px;
}

.breadcrumb span {
    color: #FF6B35;
    font-weight: 500;
}

/* Form Accessibility Styles */
.form-fieldset {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    background: #fafafa;
}

.form-legend {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    padding: 0 12px;
    margin-bottom: 16px;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
    min-height: 18px;
}

.help-text {
    display: block;
    color: #666;
    font-size: 13px;
    margin-top: 4px;
    font-style: italic;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
    background-color: #f8fff8;
}

/* Form submission states */
.form-submit-btn {
    position: relative;
    transition: all 0.3s ease;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.form-success-message {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.form-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 16px;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-image {
        order: -1;
        height: 300px;
    }
}

/* Tablet Landscape Optimization */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        padding: 0 32px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-moving-text {
        height: 80px;
    }
    
    .footer-main-content {
        padding: 80px 0 60px;
    }
    
    .footer-cta-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .footer-cta-subtitle {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }
    
    /* Ensure minimum touch targets */
    .mobile-menu-toggle,
    .tool-cta,
    .cta-button,
    button {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu a {
        padding: 12px 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .insights-hero .hero-stats {
        gap: 30px;
    }
    
    .insights-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .featured-insight {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-image-title {
        font-size: 1.8rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 15px;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero section mobile optimization */
    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 20px;
        min-height: 70vh;
    }
    
    /* Additional touch target improvements */
    .hero-cta,
    .service-cta,
    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 12px 20px;
    }
    
    .hero-title,
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .consultation-type {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-moving-text {
        height: 60px;
    }
    
    .moving-text-item {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .moving-text-separator {
        font-size: clamp(1.5rem, 4vw, 3rem);
    }
    
    .footer-main-content {
        padding: 60px 0 40px;
    }
    
    .footer-cta-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
    
    .footer-cta-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 40px;
    }
    
    .footer-cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .featured-insight {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        width: 100%;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .company-stats {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .insights-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .featured-content {
        padding: 30px 20px;
    }
    
    .newsletter-cta h2 {
        font-size: 2rem;
    }
    
    .newsletter-cta p {
        font-size: 1rem;
    }
    
    .page-header,
    .about-hero,
    .contact-hero,
    .insights-hero {
        padding: 120px 0 60px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .hero-cta,
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Mobile BANT Form Responsiveness */
@media (max-width: 768px) {
    .form-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-progress-steps {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .progress-step {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .step-header h4 {
        font-size: 1.3rem;
    }
    
    .checkbox-group {
        gap: 8px;
    }
    
    .checkbox-option {
        padding: 12px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .cta-button.secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .bant-form-success {
        padding: 40px 24px;
    }
    
    .form-step {
        min-height: 300px;
    }
}

/* Project Investment Framework Section */
.investment-framework {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.investment-framework::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 199, 89, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.investment-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.investment-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 30px 0;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
}

.investment-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.investment-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.investment-tier {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 45px 35px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.investment-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 50%, #FFB366 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.investment-tier:hover::before {
    opacity: 1;
}

.investment-tier:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.investment-tier.popular {
    border-color: rgba(255, 107, 53, 0.5);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.investment-tier.popular::before {
    opacity: 1;
}

.investment-tier.popular:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 
        0 40px 100px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tier-header {
    margin-bottom: 35px;
    text-align: center;
}

.tier-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.01em;
}

.tier-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.tier-pricing {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.tier-pricing::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 100%);
    border-radius: 1px;
}

.price-range {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

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

.tier-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.feature-item:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    position: relative;
}

.feature-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.tier-cta {
    margin-top: auto;
}

.tier-button {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tier-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.tier-button:hover::before {
    left: 100%;
}

.tier-button.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
    border-color: #FF6B35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.tier-button.primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e67a42 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.tier-button.secondary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tier-button.secondary:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

/* Investment Framework Mobile Responsiveness */
@media (max-width: 1024px) {
    .investment-framework {
        padding: 80px 0;
    }
    
    .investment-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .investment-tier:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .investment-tier.popular {
        transform: scale(1.03);
    }
    
    .investment-tier.popular:hover {
        transform: scale(1.03) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .investment-framework {
        padding: 60px 0;
    }
    
    .investment-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .investment-tier.popular {
        transform: none;
    }
    
    .investment-tier.popular:hover {
        transform: translateY(-10px);
    }
    
    .investment-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .investment-header {
        margin-bottom: 60px;
    }
    
    .tier-pricing {
        margin-bottom: 30px;
    }
    
    .tier-features {
        margin-bottom: 30px;
    }
    
    .tier-name {
        font-size: 1.8rem;
    }
    
    .price-range {
        font-size: 2.2rem;
    }
    
    .investment-tier {
        padding: 35px 25px 30px;
    }
}
