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

:root {
    --primary-gradient: linear-gradient(135deg, #94466b 0%, #b97b30 100%);
    --primary-pink: #94466b;
    --primary-orange: #b97b30;
    --dark-bg: #1a1a1a;
    --darker-bg: #171716;
    --text-light: #ffffff;
    --text-gray: #c0c0c0;
    --card-bg: #252525;
    --header-color: #e4e2dd;
    --soft-bg: #e4e2dd;
    --accent-copper: #b97b30;
    --accent-plum: #94466b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-orange);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10001;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Custom Focus Indicator */
*:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(194, 70, 122, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-gradient);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    min-width: 200px;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger:hover span {
    background: var(--primary-orange);
}

.hamburger:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 4px;
}

/* Hamburger Animation when open */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 1.5s ease;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 4rem;
    padding-left: 4rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 2rem;
}

.company-name {
    font-size: 5.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.tagline {
    font-size: 2rem;
    color: var(--text-gray);
    font-weight: 300;
    animation: fadeIn 1.5s ease 0.5s both;
}

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

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--header-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(50px);
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 360px;
}

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

.service-box:hover {
    transform: translateY(-10px);
    border: 1px solid var(--primary-pink);
    box-shadow: 0 20px 40px rgba(194, 70, 122, 0.3);
    background: linear-gradient(135deg, rgba(194, 70, 122, 0.1), rgba(212, 145, 93, 0.1));
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
}

.service-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--header-color);
}

.service-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.learn-more {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

/* Clients Section */
.clients {
    padding: 5rem 0 3rem 0;
    background: #e4e2dd;
}

.clients .section-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
}

.clients .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #b97b30 0%, #94466b 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(185, 123, 48, 0.3);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.client-logo {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: none;
    flex-shrink: 0;
}

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

.client-logo img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Differentiators Section */
.differentiators {
    background: #171716;
    padding: 6rem 0;
}

.differentiators .container {
    max-width: 900px;
}

.differentiators-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.differentiators-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #b97b30 0%, #94466b 100%);
    border-radius: 2px;
}

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

.differentiators-list li {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2rem;
}

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

.differentiators-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #94466b;
    border-radius: 50%;
}

.differentiators-list h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.differentiators-list p {
    color: #e4e2dd;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .differentiators {
        padding: 4rem 0;
    }

    .differentiators-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .differentiators-list li {
        margin-bottom: 2.5rem;
    }

    .differentiators-list h4 {
        font-size: 1.2rem;
    }

    .differentiators-list p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(194, 70, 122, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Page Styles */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 70, 122, 0.7) 0%, rgba(212, 145, 93, 0.6) 100%);
    z-index: 1;
}

/* Contact page hero background */
.contact-hero::before {
    background: url('images/hero-ai-human2.png') center center / cover no-repeat;
}

/* Vibe Coding page hero background */
.vibe-coding-hero::before {
    background: url('images/vibe-coding.png') center center / cover no-repeat;
}

/* RPA page hero background */
.rpa-hero::before {
    background: url('images/rpa.png') center center / cover no-repeat;
}

/* Technology Consulting page hero background */
.consulting-hero::before {
    background: url('images/tech-consult.png') center center / cover no-repeat;
}

/* Power Apps page hero background */
.power-apps-hero::before {
    background: url('images/365apps.png') center center / cover no-repeat;
}

/* About Us page hero background */
.about-hero::before {
    background: url('images/about.png') center center / cover no-repeat;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 70, 122, 0.3) 0%, rgba(212, 145, 93, 0.3) 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease;
}

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

.page-hero p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease 0.3s both;
}

.page-content {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-content h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.page-content h3 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.page-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content ul,
.page-content ol {
    color: var(--text-gray);
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.page-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
    padding: 1rem 1.5rem;
    background: rgba(194, 70, 122, 0.05);
    border-left: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-content li:nth-child(1) { animation-delay: 0.1s; }
.page-content li:nth-child(2) { animation-delay: 0.15s; }
.page-content li:nth-child(3) { animation-delay: 0.2s; }
.page-content li:nth-child(4) { animation-delay: 0.25s; }
.page-content li:nth-child(5) { animation-delay: 0.3s; }
.page-content li:nth-child(6) { animation-delay: 0.35s; }
.page-content li:nth-child(7) { animation-delay: 0.4s; }
.page-content li:nth-child(8) { animation-delay: 0.45s; }
.page-content li:nth-child(9) { animation-delay: 0.5s; }
.page-content li:nth-child(10) { animation-delay: 0.55s; }

.page-content li:hover {
    background: rgba(194, 70, 122, 0.1);
    border-left-color: var(--primary-pink);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(194, 70, 122, 0.2);
}

.page-content li strong {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.page-content ol {
    counter-reset: custom-counter;
}

.page-content ol li {
    counter-increment: custom-counter;
    padding-left: 3rem;
    position: relative;
}

.page-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

@media (max-width: 640px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(194, 70, 122, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 70, 122, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(194, 70, 122, 0.35);
    background: linear-gradient(135deg, rgba(194, 70, 122, 0.05), rgba(212, 145, 93, 0.05));
}

.feature-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.feature-card p {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-light);
}

/* What We Automate - Department Panels */
.automation-heading {
    text-align: center;
    margin: 4rem 0 1rem !important;
}

.automation-heading::after {
    left: 50% !important;
    transform: translateX(-50%);
    width: 80px !important;
}

.automation-departments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 20px;
}

.department-accordion {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.department-accordion.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-header {
    background: rgba(37, 37, 37, 0.6);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.accordion-header:hover {
    background: rgba(37, 37, 37, 0.8);
    border-color: rgba(185, 123, 48, 0.3);
    transform: translateX(4px);
}

.accordion-header.active {
    background: rgba(37, 37, 37, 0.8);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.department-title {
    color: #b97b30;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-header:hover .department-title {
    color: #d4a35a;
}

.accordion-chevron {
    color: #94466b;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-header.active .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(27, 27, 26, 0.6);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid transparent;
    border-top: none;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem;
    border-color: rgba(185, 123, 48, 0.15);
}

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

.department-list li {
    color: #e0e0e0;
    font-size: 0.92rem;
    line-height: 1.9;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.department-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94466b;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Responsive for Department Accordion */
@media (max-width: 768px) {
    .automation-departments {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
    }

    .department-title {
        font-size: 1.1rem;
    }

    .accordion-content.active {
        padding: 1.2rem 1.5rem 1.5rem;
    }

    .department-list li {
        font-size: 0.88rem;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(194, 70, 122, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--header-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--darker-bg);
    border: 1px solid rgba(194, 70, 122, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(194, 70, 122, 0.1);
}

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

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(194, 70, 122, 0.4);
}

.contact-info {
    margin-top: 4rem;
    text-align: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--header-color);
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: var(--primary-gradient);
    color: white;
}

.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 70, 122, 0.4);
    filter: brightness(1.1);
}

.contact-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Cookie Banner */
/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23, 23, 22, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(185, 123, 48, 0.3);
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.cookie-banner-content {
    flex: 1;
}

.cookie-banner-title {
    color: #b97b30;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cookie-banner-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn:focus {
    outline: 2px solid #b97b30;
    outline-offset: 2px;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #b97b30 0%, #94466b 100%);
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 123, 48, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(185, 123, 48, 0.5);
}

.cookie-btn-secondary:hover {
    background: rgba(185, 123, 48, 0.1);
    border-color: #b97b30;
    color: #b97b30;
}

.cookie-policy-link {
    color: #b97b30;
    font-size: 0.875rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #94466b;
}

/* Highlighted Section - Full Width Wrapper */
.highlighted-section-wrapper {
    background-color: #e4e2dd;
    padding: 4.8rem 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.highlighted-section-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(148, 70, 107, 0.08) 0%, transparent 60%);
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
}

.highlighted-section-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(185, 123, 48, 0.08) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.highlighted-section {
    background-color: rgba(228, 226, 221, 0.25);
    backdrop-filter: blur(20px);
    padding: 5rem 4rem;
    border-radius: 16px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(23, 23, 22, 0.08),
                0 2px 8px rgba(23, 23, 22, 0.04);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlighted-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlighted-section h2 {
    color: #171716;
    background: none;
    -webkit-text-fill-color: #171716;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 3.5rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlighted-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #b97b30 0%, #94466b 100%);
    border-radius: 2px;
}

.highlighted-section p,
.highlighted-section li {
    color: rgba(23, 23, 22, 0.85);
    background: transparent;
}

.highlighted-section ul {
    list-style: none;
    padding-left: 0;
}

.highlighted-section ul li {
    position: relative;
    padding-left: 2.5rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1.1rem;
    background: transparent;
    border: none;
    border-left: none;
    transition: all 0.3s ease;
}

.highlighted-section ul li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1.7rem;
    width: 8px;
    height: 8px;
    background: #94466b;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.highlighted-section ul li:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(148, 70, 107, 0.4);
}

.highlighted-section ul li strong {
    color: #171716;
    font-weight: 700;
    letter-spacing: 0.2px;
    background: none;
    -webkit-text-fill-color: #171716;
}

.highlighted-section ol {
    list-style: none;
    padding-left: 0;
}

.highlighted-section ol li {
    background: transparent;
    border-left: none;
    padding-left: 3.5rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.highlighted-section ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #b97b30 0%, #94466b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(148, 70, 107, 0.2);
}

.highlighted-section ol li:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(148, 70, 107, 0.35);
}

.highlighted-section ol li strong {
    color: #171716;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Highlighted Section - Minimal Variant (No Panel) */
.highlighted-section-minimal {
    background-color: transparent;
    backdrop-filter: none;
    padding: 2rem 0;
    border-radius: 0;
    margin: 0 auto;
    max-width: 1400px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlighted-section-minimal.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlighted-section-minimal h2 {
    color: #171716;
    background: none;
    -webkit-text-fill-color: #171716;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlighted-section-minimal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b97b30 0%, #94466b 100%);
    border-radius: 2px;
}

.highlighted-section-minimal p,
.highlighted-section-minimal li {
    color: #171716;
    background: transparent;
}

.highlighted-section-minimal ul {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.highlighted-section-minimal ul li {
    position: relative;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 0;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.15rem;
    background: transparent;
    border: none;
    text-align: left;
}

.highlighted-section-minimal ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 7px;
    height: 7px;
    background: #94466b;
    border-radius: 50%;
}

.highlighted-section-minimal ul li strong {
    color: #171716;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.highlighted-section-minimal ol {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.highlighted-section-minimal ol li {
    background: transparent;
    border-left: none;
    padding-left: 3.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 0;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.15rem;
    position: relative;
    text-align: left;
}

.highlighted-section-minimal ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #b97b30 0%, #94466b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.highlighted-section-minimal ol li strong {
    color: #171716;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Premium Cards for Light Background (Why Choose section) */
.highlighted-section-wrapper .highlighted-section-minimal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.highlighted-section-wrapper .highlighted-section-minimal h2 {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.highlighted-section-wrapper .feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* First 3 cards span 2 columns each */
.highlighted-section-wrapper .feature-grid .feature-card:nth-child(1) {
    grid-column: 1 / 3;
}

.highlighted-section-wrapper .feature-grid .feature-card:nth-child(2) {
    grid-column: 3 / 5;
}

.highlighted-section-wrapper .feature-grid .feature-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Last 2 cards centered - each spans 2 columns with 1 column margin on each side */
.highlighted-section-wrapper .feature-grid .feature-card:nth-child(4) {
    grid-column: 2 / 4;
}

.highlighted-section-wrapper .feature-grid .feature-card:nth-child(5) {
    grid-column: 4 / 6;
}

@media (max-width: 968px) {
    .highlighted-section-wrapper .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(1),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(2),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(3),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(4),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .highlighted-section-wrapper .feature-grid {
        grid-template-columns: 1fr;
    }

    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(1),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(2),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(3),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(4),
    .highlighted-section-wrapper .feature-grid .feature-card:nth-child(5) {
        grid-column: auto;
    }
}

.highlighted-section-wrapper .feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185, 123, 48, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.highlighted-section-wrapper .feature-card::before {
    background: linear-gradient(90deg, transparent, rgba(185, 123, 48, 0.1), transparent);
}

.highlighted-section-wrapper .feature-card::after {
    background: var(--primary-gradient);
}

.highlighted-section-wrapper .feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(185, 123, 48, 0.3);
    background: rgba(255, 255, 255, 1);
}

.highlighted-section-wrapper .feature-card h3,
.highlighted-section-wrapper .feature-card h4 {
    color: #171716;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlighted-section-wrapper .feature-card:hover h3,
.highlighted-section-wrapper .feature-card:hover h4 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlighted-section-wrapper .feature-card p {
    color: #333;
}

.highlighted-section-wrapper .feature-card:hover p {
    color: #171716;
}

/* Process Flow - Horizontal Layout */
.process-flow-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1rem 1rem 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    flex: 1;
}

.process-flow::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.process-nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    flex-shrink: 0;
    z-index: 10;
}

.process-nav-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.process-nav-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    filter: drop-shadow(0 0 0px transparent);
    transition: all 0.3s ease;
}

.process-nav-arrow:hover {
    color: rgba(0, 0, 0, 0.8);
}

.process-nav-arrow:hover svg {
    filter: drop-shadow(0 0 6px rgba(185, 123, 48, 0.5)) drop-shadow(0 0 10px rgba(148, 70, 107, 0.3));
}

.process-nav-arrow:active {
    transform: scale(0.95);
}

.process-step {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
    display: flex;
    flex-direction: column;
}

.highlighted-section-minimal.visible .process-step {
    opacity: 1;
    transform: translateX(0);
}

.highlighted-section-minimal.visible .process-step[data-step="1"] {
    transition-delay: 0.1s;
}

.highlighted-section-minimal.visible .process-step[data-step="2"] {
    transition-delay: 0.3s;
}

.highlighted-section-minimal.visible .process-step[data-step="3"] {
    transition-delay: 0.5s;
}

.highlighted-section-minimal.visible .process-step[data-step="4"] {
    transition-delay: 0.7s;
}

.highlighted-section-minimal.visible .process-step[data-step="5"] {
    transition-delay: 0.9s;
}

.highlighted-section-minimal.visible .process-step[data-step="6"] {
    transition-delay: 1.1s;
}

.process-step:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 24px rgba(185, 123, 48, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b97b30 0%, #94466b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(185, 123, 48, 0.3);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    color: #b97b30;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.step-content h4 {
    color: #171716;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.step-content p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.process-arrow {
    font-size: 2rem;
    color: #b97b30;
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlighted-section-minimal.visible .process-arrow {
    opacity: 1;
    transform: scale(1);
}

.process-arrow:nth-of-type(2) {
    transition-delay: 0.2s;
}

.process-arrow:nth-of-type(4) {
    transition-delay: 0.4s;
}

.process-arrow:nth-of-type(6) {
    transition-delay: 0.6s;
}

.process-arrow:nth-of-type(8) {
    transition-delay: 0.8s;
}

/* Responsive adjustments for process flow */
@media (max-width: 1200px) {
    .process-flow {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .process-step {
        min-width: 160px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .highlighted-section-minimal {
        padding: 1.5rem 0;
    }

    .process-flow-wrapper {
        flex-direction: column;
    }

    .process-nav-arrow {
        display: none;
    }

    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        overflow-x: visible;
    }

    .process-step {
        min-width: 100%;
        max-width: 100%;
        min-height: auto;
        transform: translateY(-20px);
    }

    .highlighted-section-minimal.visible .process-step {
        transform: translateY(0);
    }

    .process-step:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .highlighted-section-minimal.visible .process-arrow {
        transform: rotate(90deg) scale(1);
    }

    /* Cookie Banner Mobile Styles */
    .cookie-banner {
        padding: 1.25rem 1rem;
        bottom: 0;
    }

    .cookie-banner-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: left;
    }

    .cookie-banner-title {
        font-size: 1.1rem;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        min-height: 44px;
        font-size: 0.9rem;
    }

    .cookie-policy-link {
        margin-top: 0.5rem;
        text-align: center;
        font-size: 0.9rem;
    }
}

/* Company Section */
.company-section {
    padding: 8rem 0;
    background: #e4e2dd;
}

.company-section .container {
    max-width: 900px;
}

.company-section h2 {
    color: var(--darker-bg);
    background: none;
    -webkit-text-fill-color: var(--darker-bg);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.company-section p {
    color: #333;
    background: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Founder Profile Section */
.founder-profile {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(194, 70, 122, 0.1);
}

.founder-photo {
    flex-shrink: 0;
    text-align: center;
}

.founder-photo img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid transparent;
    background: var(--primary-gradient);
    padding: 3px;
    box-shadow: 0 10px 30px rgba(194, 70, 122, 0.3);
}

.founder-title {
    margin-top: 1.5rem;
}

.founder-title h3 {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.founder-title .title {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.founder-bio {
    flex: 1;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.fade-up,
.fade-in,
.slide-left,
.slide-right,
.scale-up {
    opacity: 0;
}

.fade-up.animate {
    animation: fadeUp 0.8s ease forwards;
}

.fade-in.animate {
    animation: fadeIn 0.8s ease forwards;
}

.slide-left.animate {
    animation: slideLeft 0.8s ease forwards;
}

.slide-right.animate {
    animation: slideRight 0.8s ease forwards;
}

.scale-up.animate {
    animation: scaleUp 0.6s ease forwards;
}

/* Enhanced Founder Profile with Animated Border */
.founder-profile {
    position: relative;
}

.founder-profile::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-orange), var(--primary-pink));
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient 3s ease infinite;
}

.founder-profile:hover::before {
    opacity: 1;
}

.founder-photo img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.founder-profile:hover .founder-photo img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(194, 70, 122, 0.5);
}

/* Enhanced Company Section with Floating Orbs */
.company-section {
    position: relative;
    overflow: hidden;
}

.company-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 70, 122, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.company-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 145, 93, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.company-section .container {
    position: relative;
    z-index: 1;
}

.company-section h2 {
    position: relative;
    display: inline-block;
}

.company-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-gradient);
    transition: width 0.6s ease;
}

.company-section h2.animate::after {
    width: 100%;
}

/* Enhanced Feature Cards with Shimmer Effect */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 70, 122, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 40px rgba(194, 70, 122, 0.3);
}

/* Responsive Design */
/* Tablet: 2 columns for service cards */
@media (max-width: 1024px) {
    .service-box {
        flex: 0 1 calc(50% - 1rem);
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .founder-profile {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .founder-photo img {
        width: 220px;
        height: 275px;
    }

    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-content h2 {
        font-size: 2.2rem;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--primary-gradient);
    }

    /* Mobile Dropdown Menu */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(37, 37, 37, 0.95);
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a {
        padding-left: 2.5rem;
        font-size: 0.95rem;
    }

    .services-toggle::after,
    .products-toggle::after {
        content: ' ▾';
        font-size: 0.8em;
        margin-left: 0.5rem;
    }

    .dropdown.active .services-toggle::after,
    .dropdown.active .products-toggle::after {
        content: ' ▴';
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-box {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .hero-content {
        padding: 1rem;
        text-align: center;
        padding-left: 1rem;
    }

    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    /* Mobile Typography Improvements */
    .page-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    /* Mobile Spacing */
    .container {
        padding: 0 1.25rem;
    }

    .hero-content {
        padding: 2rem 1.25rem;
    }

    /* Mobile Images */
    .hero-image img {
        object-fit: cover;
        object-position: center;
    }

    /* Mobile Buttons */
    .cta-button,
    .btn,
    button:not(.hamburger):not(.cookie-btn) {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
    }

    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Small Mobile Devices (360px - 640px) */
@media (max-width: 640px) {
    /* Typography for very small screens */
    .company-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Tighter spacing on small screens */
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    /* Full-width buttons on small screens */
    .cta-button,
    .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Mobile navigation narrower */
    .nav-menu {
        width: 85%;
        max-width: 300px;
    }
}

/* ===== NEW ABOUT PAGE SECTIONS ===== */

/* Fullscreen Hero Section */
.about-hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.about-hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(185, 123, 48, 0.1), transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 2px;
}

/* Fade-in Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.fade-in-up-delay {
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.5s forwards;
}

/* Founder Section */
.founder-section {
    padding: 8rem 0;
    background: var(--darker-bg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.founder-image-wrapper:hover .founder-portrait {
    transform: scale(1.02);
}

.founder-text {
    padding: 2rem 0;
}

.founder-text .section-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--header-color);
    font-weight: 300;
}

.founder-role {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: left;
}

.founder-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Timeline Section - KARMAN Style */
.timeline-section {
    padding: 8rem 0;
    background: var(--darker-bg);
    position: relative;
}

.timeline-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-copper), transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(185, 123, 48, 0.6);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--accent-copper);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(185, 123, 48, 0.8),
                0 0 40px rgba(185, 123, 48, 0.4);
    z-index: 2;
}

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

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(37, 37, 37, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(185, 123, 48, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
    margin-left: 0;
}

.timeline-content:hover {
    border-color: var(--accent-copper);
    box-shadow: 0 8px 24px rgba(185, 123, 48, 0.3);
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Company Overview Section */
.company-overview-section {
    padding: 8rem 0;
    background: var(--soft-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.overview-text {
    padding: 2rem 0;
}

.overview-text .section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--darker-bg);
    font-weight: 300;
}

.overview-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
}

.overview-image-wrapper {
    position: relative;
}

.overview-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.overview-image-wrapper:hover .overview-image {
    transform: scale(1.02);
}

/* Insights Hub Section */
.insights-hub-section {
    padding: 8rem 0;
    background: var(--darker-bg);
    position: relative;
}

.insights-hub-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-pink) 20%, var(--primary-orange) 80%, transparent 100%);
    opacity: 0.5;
}

.insights-hub-section .section-title {
    font-size: 3rem;
    color: var(--header-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.insights-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.25rem;
    margin-bottom: 5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.insight-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(185, 123, 48, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 320px;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 123, 48, 0.4);
    box-shadow: 0 20px 40px rgba(185, 123, 48, 0.3);
    background: linear-gradient(135deg, rgba(194, 70, 122, 0.05), rgba(212, 145, 93, 0.05));
}

.insight-category {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(194, 70, 122, 0.4), rgba(185, 123, 48, 0.4));
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(185, 123, 48, 0.5);
    box-shadow: 0 2px 8px rgba(185, 123, 48, 0.2);
}

.insight-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-weight: 400;
}

.insight-title a {
    color: var(--header-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.insight-title a:hover {
    color: var(--primary-orange);
}

.insight-excerpt {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1rem;
}

.insight-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-link:hover {
    color: var(--primary-pink);
    transform: translateX(8px);
}

.insights-cta {
    text-align: center;
    margin-top: 3rem;
}

.insights-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #94466b 0%, #b97b30 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 123, 48, 0.4);
}

.insights-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(185, 123, 48, 0.6);
    background: linear-gradient(135deg, #a34f78 0%, #c78d3d 100%);
}

/* Responsive Design for Insights Hub */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .insights-hub-section {
        padding: 5rem 0;
    }

    .insights-hub-section .section-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .insights-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .insight-card {
        padding: 2rem;
    }

    .insight-title {
        font-size: 1.3rem;
    }

    .insights-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* What Makes Us Different Section */
.what-makes-us-different-section {
    padding: 8rem 0;
    background: var(--darker-bg);
}

.what-makes-us-different-section .section-title {
    font-size: 3rem;
    color: var(--header-color);
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-card {
    background: rgba(37, 37, 37, 0.4);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(185, 123, 48, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-gradient);
    transition: height 0.5s ease;
}

.difference-card:hover::before {
    height: 100%;
}

.difference-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-copper);
    background: rgba(37, 37, 37, 0.6);
    box-shadow: 0 12px 36px rgba(185, 123, 48, 0.3);
}

.difference-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--header-color);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.difference-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--darker-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 123, 48, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-headline {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--header-color);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--accent-copper);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(185, 123, 48, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(185, 123, 48, 0.6);
    background: #c78d3d;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .founder-grid,
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image-wrapper,
    .overview-image-wrapper {
        text-align: center;
    }

    .founder-portrait,
    .overview-image {
        max-width: 400px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px !important;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.3rem;
    }

    .container-wide {
        padding: 0 2rem;
    }

    .founder-text .section-title,
    .overview-text .section-title,
    .cta-headline {
        font-size: 2.2rem;
    }

    .founder-description,
    .overview-text p {
        font-size: 1.1rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .difference-card {
        padding: 2rem 1.5rem;
    }

    .difference-card h3 {
        font-size: 1.5rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ACCESSIBILITY WIDGET ===== */

/* Floating Accessibility Button */
.accessibility-widget-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #b97b30;
    border: none;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accessibility-widget-btn:hover {
    background: #c78d3d;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.accessibility-widget-btn:focus {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.accessibility-widget-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #1a1a1a;
    border: 1px solid rgba(185, 123, 48, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.accessibility-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-panel h3 {
    color: #e4e2dd;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(185, 123, 48, 0.3);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accessibility-option {
    margin-bottom: 0.75rem;
}

.accessibility-option button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(37, 37, 37, 0.8);
    border: 1px solid rgba(185, 123, 48, 0.2);
    border-radius: 8px;
    color: #e4e2dd;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.accessibility-option button:hover {
    background: rgba(185, 123, 48, 0.2);
    border-color: #b97b30;
    transform: translateX(4px);
}

.accessibility-option button:focus {
    outline: 2px solid #b97b30;
    outline-offset: 2px;
}

.accessibility-option button.active {
    background: rgba(185, 123, 48, 0.3);
    border-color: #b97b30;
}

.accessibility-option button .icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.accessibility-option button .status {
    font-size: 0.85rem;
    color: #b97b30;
    margin-left: auto;
}

.accessibility-reset {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(185, 123, 48, 0.2);
}

.accessibility-reset button {
    background: rgba(148, 70, 107, 0.2);
    border-color: rgba(148, 70, 107, 0.3);
}

.accessibility-reset button:hover {
    background: rgba(148, 70, 107, 0.3);
    border-color: #94466b;
}

/* Font Size Adjustments */
html.font-size-110 {
    font-size: 110%;
}

html.font-size-120 {
    font-size: 120%;
}

html.font-size-130 {
    font-size: 130%;
}

html.font-size-90 {
    font-size: 90%;
}

html.font-size-80 {
    font-size: 80%;
}

/* High Contrast Mode */
body.high-contrast {
    background-color: #000000 !important;
    color: #ffffff !important;
}

body.high-contrast * {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

body.high-contrast a {
    color: #ffff00 !important;
    text-decoration: underline !important;
}

body.high-contrast button {
    background-color: #333333 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

body.high-contrast .navbar,
body.high-contrast .footer,
body.high-contrast .page-hero,
body.high-contrast .service-box,
body.high-contrast .feature-card {
    background-color: #000000 !important;
}

body.high-contrast img {
    opacity: 0.8;
    border: 2px solid #ffffff !important;
}

/* Highlight Links Mode */
body.highlight-links a {
    text-decoration: underline !important;
    background-color: rgba(185, 123, 48, 0.2) !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
    outline: 2px solid #b97b30 !important;
}

body.highlight-links a:hover {
    background-color: rgba(185, 123, 48, 0.4) !important;
}

/* Reduce Motion Mode */
body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Enhanced Focus Mode */
body.show-focus *:focus {
    outline: 4px solid #ffff00 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 6px rgba(255, 255, 0, 0.3) !important;
}

body.show-focus a:focus {
    background-color: #ffff00 !important;
    color: #000000 !important;
}

/* Responsive Accessibility Widget */
@media (max-width: 768px) {
    .accessibility-widget-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .accessibility-panel {
        bottom: 75px;
        right: 15px;
        left: 15px;
        width: auto;
    }
}

/* ============================================
   OPERATIONAL DIAGNOSTIC PAGE STYLES
   ============================================ */

/* Diagnostic Hero Section */
.diagnostic-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
    text-align: center;
    padding: 8rem 2rem;
}

.diagnostic-hero .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* New Hero Title with Mixed Styling */
.heroTitle {
    font-size: 4.75rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 800ms ease-out 200ms forwards;
}

.heroTitle--base {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.heroTitle--accent {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

/* Staggered reveal utilities */
.reveal {
    opacity: 0;
    animation: fadeInUp 800ms ease-out forwards;
}

.reveal--delay-1 {
    animation-delay: 700ms;
}

.reveal--delay-2 {
    animation-delay: 900ms;
}

.reveal--delay-3 {
    animation-delay: 1100ms;
}

.reveal--delay-4 {
    animation-delay: 1300ms;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .heroTitle,
    .reveal {
        animation: fadeOnly 600ms ease-out forwards !important;
        transform: none !important;
    }

    @keyframes fadeOnly {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
}

.diagnostic-hero-subtitle {
    font-size: 1.5rem;
    color: var(--header-color);
    margin-bottom: 1rem;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.diagnostic-hero-microline {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Outcome Strip */
.outcome-strip {
    background: rgba(23, 23, 22, 0.6);
    border-top: 1px solid rgba(185, 123, 48, 0.2);
    border-bottom: 1px solid rgba(185, 123, 48, 0.2);
    padding: 2rem 1rem;
    margin-top: -2rem;
}

.outcome-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-item {
    text-align: center;
    padding: 1rem;
}

.outcome-item-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.outcome-item-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta-button {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(185, 123, 48, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 123, 48, 0.6);
}

.sticky-cta-primary {
    font-size: 1.1rem;
}

.sticky-cta-secondary {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
    text-align: center;
}

/* Mobile sticky CTA */
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
    }

    .sticky-cta-button {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        border-radius: 0;
        padding: 1.25rem 1.5rem;
    }

    .sticky-cta-secondary {
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 0;
        padding-left: 1rem;
    }
}

.diagnostic-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-gradient);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 123, 48, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 123, 48, 0.5);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: rgba(185, 123, 48, 0.1);
    border-color: var(--accent-copper);
}

.trust-bullets {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.trust-bullet svg {
    flex-shrink: 0;
}

.trust-icon {
    color: var(--header-color);
    transition: color 0.3s ease;
}

.trust-bullet:hover .trust-icon {
    color: var(--accent-copper);
}

.cta-microtext {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0.5rem 0 0.75rem 0;
    font-style: italic;
}

.hero-participants {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mid-page-cta-text {
    font-size: 1.1rem;
    color: var(--header-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.risk-reducer-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.75rem;
}

.process-deliverable-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Scroll Timeline Section */
.scroll-timeline-section {
    padding: 5rem 0;
    background: var(--darker-bg);
    position: relative;
}

.timeline-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0 2rem 80px;
}

.timeline-progress-track {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(185, 123, 48, 0.2);
    border-radius: 2px;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(185, 123, 48, 0.5);
}

.timeline-steps {
    position: relative;
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0.5;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.active {
    opacity: 1;
    transform: scale(1.02);
}

.timeline-step.completed {
    opacity: 0.7;
}

.timeline-step-marker {
    position: absolute;
    left: -80px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid rgba(185, 123, 48, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.timeline-step.active .timeline-step-dot {
    background: var(--primary-gradient);
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(185, 123, 48, 0.8), 0 0 40px rgba(148, 70, 107, 0.4);
}

.timeline-step.completed .timeline-step-dot {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.timeline-step-number {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.timeline-step.active .timeline-step-number {
    color: var(--primary-orange);
}

.timeline-step-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(185, 123, 48, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.timeline-step-content:hover {
    border-color: rgba(185, 123, 48, 0.4);
    background: rgba(37, 37, 37, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(185, 123, 48, 0.2);
}

.timeline-step-content:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 3px;
    border-color: rgba(185, 123, 48, 0.4);
}

.timeline-step.active .timeline-step-content {
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(185, 123, 48, 0.3), 0 0 60px rgba(148, 70, 107, 0.2);
}

.timeline-step-title {
    font-size: 1.8rem;
    color: var(--header-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-step.active .timeline-step-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-step-body {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Deliverables Section */
.deliverables-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

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

.deliverable-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left-color: var(--accent-plum);
}

.deliverable-card h3 {
    font-size: 1.3rem;
    color: var(--header-color);
    margin-bottom: 0.75rem;
}

.deliverable-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Who It's For Section */
.who-its-for-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.who-its-for-list {
    list-style: none;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0;
}

.who-its-for-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.list-arrow {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-its-for-list li span {
    flex: 1;
}

.who-its-for-list li:hover {
    transform: translateX(10px);
    background: rgba(37, 37, 37, 0.8);
    border-left: 4px solid var(--primary-orange);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

/* Native details/summary FAQ */
.faqItem {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-item .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: none;
    color: var(--header-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item .accordion-header:hover {
    background: rgba(185, 123, 48, 0.1);
}

.faq-item .accordion-header.active {
    background: var(--primary-gradient);
    color: var(--text-light);
}

.faq-item .accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item .accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.faq-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(23, 23, 22, 0.5);
}

.faq-item .accordion-content.active {
    max-height: 500px;
}

.faq-item .accordion-content p {
    padding: 1.5rem 2rem;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* New Native FAQ Styles */
.faqQ {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    color: var(--header-color);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
}

.faqQ::-webkit-details-marker {
    display: none;
}

.faqQ::marker {
    display: none;
}

.faqQ:hover {
    background: rgba(185, 123, 48, 0.1);
}

.faqItem[open] .faqQ {
    background: var(--primary-gradient);
    color: var(--text-light);
}

.faqIcon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faqItem[open] .faqIcon {
    transform: rotate(45deg);
}

.faqA {
    background: rgba(23, 23, 22, 0.5);
}

.faqA p {
    padding: 1.5rem 2rem;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: var(--darker-bg);
    text-align: center;
}

.final-cta-section .cta-headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-section .cta-subline {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .cta-note {
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.final-cta-section .cta-note a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.final-cta-section .cta-note a:hover {
    color: var(--accent-plum);
    text-decoration: underline;
}

/* What Happens After You Book Section */
.process-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid rgba(185, 123, 48, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(185, 123, 48, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.process-step h3 {
    font-size: 1.4rem;
    color: var(--header-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    padding: 5rem 0;
    background: var(--darker-bg);
    text-align: center;
}

.social-proof-intro {
    font-size: 1.8rem;
    color: var(--header-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-proof-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    text-align: left;
}

.testimonial-quote {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--header-color);
    font-weight: 600;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: rgba(185, 123, 48, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(185, 123, 48, 0.2);
}

.result-metric {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* Lead Capture Section */
.lead-capture-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.lead-capture-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.lead-capture-intro h2 {
    font-size: 2.2rem;
    color: var(--header-color);
    margin-bottom: 1rem;
}

.lead-capture-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.lead-capture-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(185, 123, 48, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--header-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(185, 123, 48, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(185, 123, 48, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--primary-gradient);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 123, 48, 0.5);
}

.form-privacy-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design for Diagnostic Page */
@media (max-width: 1024px) {
    .heroTitle {
        font-size: 4rem;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 768px) {
    .diagnostic-hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .heroTitle {
        font-size: 3rem;
        line-height: 1.15;
        letter-spacing: 0.02em;
    }

    .diagnostic-hero-subtitle {
        font-size: 1.2rem;
    }

    .diagnostic-hero-microline {
        font-size: 1rem;
    }

    .diagnostic-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }

    .trust-bullets {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .scroll-timeline-wrapper {
        padding-left: 60px;
    }

    .timeline-step-marker {
        left: -60px;
    }

    .timeline-step-title {
        font-size: 1.4rem;
    }

    .timeline-step-body {
        font-size: 1rem;
    }

    .timeline-step-content {
        padding: 1.5rem;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .who-its-for-list li {
        font-size: 1rem;
    }

    .faq-item .accordion-header {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }

    .outcome-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .outcome-item-text {
        font-size: 0.85rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lead-capture-form {
        padding: 2rem 1.5rem;
    }

    .final-cta-section .cta-headline {
        font-size: 1.8rem;
    }

    .final-cta-section .cta-subline {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .heroTitle {
        font-size: 2.25rem;
        letter-spacing: 0.02em;
    }

    .diagnostic-hero-subtitle {
        font-size: 1.1rem;
    }

    .diagnostic-hero-microline {
        font-size: 0.95rem;
    }

    .faqQ {
        font-size: 1.05rem;
        padding: 1.25rem 1rem;
    }

    .faqA p {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .timeline-step,
    .timeline-progress-fill,
    .timeline-step-dot,
    .timeline-step-content {
        transition: none;
    }

    .timeline-step.active {
        transform: none;
    }

    .deliverable-card:hover,
    .who-its-for-list li:hover {
        transform: none;
    }

    .cta-button-primary:hover {
        transform: none;
    }
}


/* Hero CTA Button */
.hero-cta {
    margin-top: 2rem;
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #94466b 0%, #b97b30 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 123, 48, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 123, 48, 0.6);
}

@media (max-width: 768px) {
    .hero-cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

/* ============================================
   INSIGHTS HUB PAGE STYLES
   ============================================ */

/* Insights Hub Hero Section */
.insights-hub-hero {
    padding: 8rem 0 4rem;
    background: var(--darker-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insights-hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.6;
}

.insights-hub-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--header-color);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.insights-hub-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Insights Hub Content Section */
.insights-hub-content {
    padding: 4rem 0 8rem;
    background: var(--dark-bg);
}

/* Insights Hub Grid */
.insights-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Insights Hub Card */
.insights-hub-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid rgba(185, 123, 48, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.insights-hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insights-hub-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-copper);
    box-shadow: 0 16px 48px rgba(185, 123, 48, 0.25);
}

.insights-hub-card:hover::before {
    opacity: 1;
}

/* Category Tag */
.insights-card-category {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(185, 123, 48, 0.25) 0%, rgba(148, 70, 107, 0.25) 100%);
    border: 1px solid rgba(185, 123, 48, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(185, 123, 48, 0.2);
}

/* Card Title */
.insights-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.insights-card-title a {
    color: var(--header-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--header-color) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-hub-card:hover .insights-card-title a {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Excerpt */
.insights-card-excerpt {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Read More Button */
.insights-card-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: rgba(185, 123, 48, 0.15);
    border: 2px solid var(--accent-copper);
    border-radius: 8px;
    color: var(--header-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.insights-card-button:hover {
    background: var(--accent-copper);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(185, 123, 48, 0.4);
}

/* Responsive Design for Insights Hub */
@media (max-width: 1024px) {
    .insights-hub-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .insights-hub-hero {
        padding: 6rem 0 3rem;
    }

    .insights-hub-title {
        font-size: 2.5rem;
    }

    .insights-hub-subtitle {
        font-size: 1.2rem;
    }

    .insights-hub-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insights-hub-card {
        padding: 2rem;
        min-height: auto;
    }

    .insights-card-title {
        font-size: 1.4rem;
    }

    .insights-card-excerpt {
        font-size: 1rem;
    }

    .insights-card-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .insights-hub-title {
        font-size: 2rem;
    }

    .insights-hub-subtitle {
        font-size: 1.1rem;
    }

    .insights-card-category {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .insights-card-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--darker-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(185, 123, 48, 0.1);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.75rem;
    color: var(--accent-copper);
    font-size: 1.2rem;
}

.breadcrumb li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: var(--accent-copper);
}

.breadcrumb li[aria-current="page"] {
    color: var(--header-color);
    font-weight: 500;
}

/* Article Container */
.article-container {
    background: var(--dark-bg);
}

/* Article Header */
.article-header {
    padding: 4rem 0 3rem;
    background: var(--darker-bg);
    text-align: center;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-gradient);
}

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

.article-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(185, 123, 48, 0.2) 0%, rgba(148, 70, 107, 0.2) 100%);
    border: 1px solid rgba(185, 123, 48, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--header-color);
    line-height: 1.2;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.article-meta time,
.article-reading-time {
    display: flex;
    align-items: center;
}

.article-reading-time::before {
    content: '•';
    margin-right: 0.5rem;
    color: var(--accent-copper);
}

/* Article Content */
.article-content {
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgba(23, 23, 22, 0.3), rgba(23, 23, 22, 0.5));
    position: relative;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(185, 123, 48, 0.3), transparent);
}

.article-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(185, 123, 48, 0.08);
}

.article-section:last-of-type {
    border-bottom: none;
}

.article-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--header-color);
    margin-bottom: 2rem;
    margin-top: 3rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(185, 123, 48, 0.15);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(185, 123, 48, 0.2);
}

.article-section h2:first-child {
    margin-top: 0;
}

.article-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--header-color);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-copper);
}

.article-section p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
}

.article-section p strong {
    color: var(--header-color);
    font-weight: 600;
}

.article-section p a,
.article-section li a {
    color: var(--accent-copper);
    text-decoration: none;
    border-bottom: 1px solid rgba(185, 123, 48, 0.3);
    transition: all 0.3s ease;
}

.article-section p a:hover,
.article-section li a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
    background: rgba(185, 123, 48, 0.1);
    padding: 0 0.25rem;
}

.article-section ul,
.article-section ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-section li {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Article CTA Section */
.article-cta-section {
    margin: 4rem 0;
}

.article-cta-box {
    background: linear-gradient(135deg, rgba(148, 70, 107, 0.15) 0%, rgba(185, 123, 48, 0.15) 100%);
    border: 2px solid rgba(185, 123, 48, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.article-cta-box h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--header-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.article-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 123, 48, 0.4);
}

.article-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(185, 123, 48, 0.6);
}

/* Related Articles Section */
.related-articles {
    margin: 4rem 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(185, 123, 48, 0.2);
}

.related-articles h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--header-color);
    margin-bottom: 2rem;
}

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

.related-article-card {
    background: var(--card-bg);
    border: 2px solid rgba(185, 123, 48, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-article-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 8px 24px rgba(185, 123, 48, 0.2);
}

.related-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(185, 123, 48, 0.15);
    border: 1px solid rgba(185, 123, 48, 0.3);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.related-article-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--header-color);
    line-height: 1.4;
    margin: 0;
}

/* Back to Hub Link */
.back-to-hub {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(185, 123, 48, 0.1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent-copper);
    transform: translateX(-5px);
}

/* Responsive Design for Article Pages */
@media (max-width: 1024px) {
    .article-title {
        font-size: 2.5rem;
    }

    .article-section h2 {
        font-size: 1.75rem;
    }

    .article-section p,
    .article-section li {
        font-size: 1.1rem;
        line-height: 1.95;
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 1rem 0;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .article-header {
        padding: 3rem 0 2rem;
    }

    .container-article {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-reading-time::before {
        content: '';
        margin-right: 0;
    }

    .article-content {
        padding: 3rem 0;
    }

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

    .article-section h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .article-section h3 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .article-section p,
    .article-section li {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .article-cta-box {
        padding: 2rem 1.5rem;
    }

    .article-cta-box h3 {
        font-size: 1.5rem;
    }

    .article-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

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

    .article-title {
        font-size: 1.75rem;
    }

    .article-category {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .article-section h2 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .article-section h3 {
        font-size: 1.15rem;
        padding-left: 0.75rem;
    }

    .article-section p,
    .article-section li {
        font-size: 1rem;
        line-height: 1.85;
    }

    .article-cta-box h3 {
        font-size: 1.3rem;
    }

    .related-article-card {
        padding: 1.5rem;
    }

    .related-article-card h4 {
        font-size: 1.1rem;
    }
}

/* ============================================
   RTL (Right-to-Left) Styles for Hebrew
   ============================================ */

/* Base RTL Rules */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] body {
    text-align: right;
}

[dir="rtl"] .page-content h2::after {
    left: auto;
    right: 0;
}

/* Navigation RTL */
[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu li {
    text-align: right;
}

[dir="rtl"] .mobile-menu-toggle {
    margin-left: 0;
    margin-right: auto;
}

/* Hero Section RTL */
[dir="rtl"] .hero {
    text-align: right;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .hero h2,
[dir="rtl"] .hero p {
    text-align: right;
}

[dir="rtl"] .hero-buttons {
    justify-content: flex-end;
}

/* Service Cards RTL */
[dir="rtl"] .service-box,
[dir="rtl"] .service-card,
[dir="rtl"] .insight-card,
[dir="rtl"] .feature-card,
[dir="rtl"] .difference-card {
    text-align: center;
    direction: rtl;
}

[dir="rtl"] .service-box h3,
[dir="rtl"] .service-card h3,
[dir="rtl"] .insight-card h3,
[dir="rtl"] .insight-card .insight-title,
[dir="rtl"] .feature-card h3,
[dir="rtl"] .difference-card h3,
[dir="rtl"] .service-box p,
[dir="rtl"] .service-card p,
[dir="rtl"] .insight-card p,
[dir="rtl"] .feature-card p,
[dir="rtl"] .difference-card p {
    text-align: center !important;
    align-self: stretch;
}

[dir="rtl"] .service-icon,
[dir="rtl"] .feature-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Sections RTL */
[dir="rtl"] .services-section,
[dir="rtl"] .insights-section,
[dir="rtl"] .about-section,
[dir="rtl"] .contact-section {
    text-align: right;
}

[dir="rtl"] .section-title,
[dir="rtl"] .section-subtitle {
    text-align: center;
}

/* Lists RTL */
[dir="rtl"] ul,
[dir="rtl"] ol {
    padding-right: 2rem;
    padding-left: 0;
    text-align: right;
}

[dir="rtl"] li {
    text-align: right;
}

/* Forms RTL */
[dir="rtl"] .form-group {
    text-align: right;
}

[dir="rtl"] .form-group label {
    text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea,
[dir="rtl"] .form-group select {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] textarea {
    text-align: right;
}

/* Contact Form RTL */
[dir="rtl"] .contact-form {
    text-align: right;
}

[dir="rtl"] .contact-info {
    text-align: right;
}

/* Footer RTL */
[dir="rtl"] footer {
    text-align: right;
}

[dir="rtl"] .footer-content {
    text-align: right;
}

[dir="rtl"] .footer-links {
    text-align: right;
}

[dir="rtl"] .footer-section {
    text-align: right;
}

[dir="rtl"] .footer-section h3,
[dir="rtl"] .footer-section h4 {
    text-align: right;
    background: none;
    -webkit-text-fill-color: var(--primary-pink);
    color: var(--primary-pink);
}

[dir="rtl"] .footer-section ul {
    padding-right: 0;
}

[dir="rtl"] .footer-links ul {
    padding-right: 0;
}

/* Articles & Content RTL */
[dir="rtl"] .article-header,
[dir="rtl"] .article-content,
[dir="rtl"] .article-section {
    text-align: right;
}

[dir="rtl"] .article-title,
[dir="rtl"] .article-section h2,
[dir="rtl"] .article-section h3,
[dir="rtl"] .article-section h4 {
    text-align: right;
}

[dir="rtl"] .article-section p,
[dir="rtl"] .article-section li {
    text-align: right;
}

[dir="rtl"] .article-meta {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .article-reading-time::before {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Blockquotes RTL */
[dir="rtl"] blockquote {
    border-left: none;
    border-right: 4px solid var(--primary-orange);
    padding-right: 1.5rem;
    padding-left: 1rem;
    text-align: right;
}

/* Buttons RTL */
[dir="rtl"] .btn,
[dir="rtl"] .cta-button,
[dir="rtl"] .primary-button {
    text-align: center;
}

[dir="rtl"] .btn-group {
    flex-direction: row-reverse;
}

/* Grid Layouts RTL */
[dir="rtl"] .services-grid,
[dir="rtl"] .insights-grid,
[dir="rtl"] .features-grid {
    direction: rtl;
}

/* Breadcrumbs RTL */
[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb-item::after {
    content: '\\';
    margin: 0 0.5rem;
}

/* Tables RTL */
[dir="rtl"] table {
    direction: rtl;
}

[dir="rtl"] th,
[dir="rtl"] td {
    text-align: right;
}

/* Modals & Popups RTL */
[dir="rtl"] .modal-content,
[dir="rtl"] .popup-content {
    text-align: right;
}

/* Related Articles RTL */
[dir="rtl"] .related-articles,
[dir="rtl"] .related-article-card {
    text-align: right;
}

[dir="rtl"] .related-article-card h4,
[dir="rtl"] .related-article-card p {
    text-align: right;
}

/* Process Steps RTL */
[dir="rtl"] .process-step {
    text-align: right;
}

[dir="rtl"] .process-step-number {
    margin-left: 1rem;
    margin-right: 0;
}

/* Stats/Numbers RTL */
[dir="rtl"] .stat-card,
[dir="rtl"] .number-highlight {
    text-align: right;
}

/* CTA Boxes RTL */
[dir="rtl"] .cta-box,
[dir="rtl"] .article-cta-box {
    text-align: right;
}

[dir="rtl"] .cta-box h2,
[dir="rtl"] .cta-box h3,
[dir="rtl"] .cta-box p {
    text-align: right;
}

/* Language Switcher RTL */
[dir="rtl"] .language-switcher {
    flex-direction: row-reverse;
}

/* Icons with Text RTL */
[dir="rtl"] .icon-text {
    flex-direction: row-reverse;
}

[dir="rtl"] .icon-text i,
[dir="rtl"] .icon-text svg {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Accessibility Widget RTL */
[dir="rtl"] .accessibility-widget {
    left: 20px;
    right: auto;
}

[dir="rtl"] .accessibility-menu {
    text-align: right;
}

/* Mobile Menu RTL */
[dir="rtl"] .mobile-menu {
    right: auto;
    left: 0;
    text-align: right;
}

[dir="rtl"] .mobile-menu-items {
    text-align: right;
}

/* Pagination RTL */
[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

/* Tags RTL */
[dir="rtl"] .tags,
[dir="rtl"] .tag-list {
    flex-direction: row-reverse;
    text-align: right;
}

/* Container RTL */
[dir="rtl"] .container,
[dir="rtl"] .container-article {
    direction: rtl;
}

