/* Mouse Follower Library CSS */
.mf-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    direction: ltr;
    contain: layout style size;
    pointer-events: none;
    transition: opacity .3s, color .4s
}

.mf-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    transform: scale(0.2);
    background: currentColor;
    border-radius: 50%;
    transition: transform .25s ease-in-out, opacity .1s
}

.mf-cursor.-inverse {
    color: #fff
}

@supports(mix-blend-mode: exclusion) {
    .mf-cursor.-exclusion {
        mix-blend-mode: exclusion
    }

    .mf-cursor.-exclusion:before {
        background: #fff
    }
}

.mf-cursor.-pointer:before {
    transform: scale(0.15)
}

.mf-cursor.-text:before {
    opacity: .85;
    transform: scale(1.7)
}

.mf-cursor.-text.-active:before {
    transform: scale(1.6);
    transition-duration: .2s
}

.mf-cursor.-icon:before {
    transform: scale(1.5)
}

.mf-cursor.-icon.-active:before {
    transform: scale(1.4)
}

.mf-cursor.-hidden:before {
    transform: scale(0)
}

.mf-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    transition: opacity .4s, transform .3s
}

.mf-cursor.-text .mf-cursor-text,
.mf-cursor.-icon .mf-cursor-text {
    opacity: 1;
    transform: scale(1)
}

.mf-cursor-media {
    position: absolute;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px
}

.mf-cursor-media img,
.mf-cursor-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

@supports(object-fit: cover) {

    .mf-cursor-media img,
    .mf-cursor-media video {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateZ(0)
    }
}

.mf-cursor-media-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(0) translateZ(0);
    padding: 1px;
    opacity: 0;
    border-radius: 50%;
    transition: transform .35s, opacity .2s .2s
}

.mf-cursor.-media .mf-cursor-media-box {
    opacity: 1;
    transform: scale(0.696);
    transition-duration: .4s, .4s;
    transition-delay: 0s, 0s
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #EEE9E3;
    overflow-x: hidden;
    width: 100%;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Navbar Styles */
/* Mouse Follower Styling - Ensure visibility over everything */
.mf-cursor {
    z-index: 100000 !important;
}

.mf-cursor:before {
    background: #FF3C00 !important;
}

/* Custom Navbar Wrapper */
.custom-navbar-wrapper * {
    font-family: 'Inter', sans-serif !important;
}

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(238, 233, 227, 0.9);
    /* Subtle transparency */
    backdrop-filter: blur(12px);
    /* Modern frosted look */
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-navbar.scrolled {
    padding: 12px 0;
    background: rgba(238, 233, 227, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo-img {
    height: 48px;
    /* Increased back to original-ish size */
    width: auto;
    display: block;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-item {
    opacity: 0;
    transform: translateY(-10px);
}

.nav-link {
    position: relative;
    padding: 12px 18px;
    /* Increased for better tap target */
    font-size: 15px;
    /* Increased for better visibility */
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-block;
}

.social-icon-btn {
    width: 44px;
    /* Minimum recommended tap target size */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

/* Modern underline reveal */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #FF3C00;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link:hover {
    color: #FF3C00;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: #FF3C00;
}

.nav-link.active::after {
    transform: scaleX(1);
    background: #FF3C00;
}

.footer-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #FF3C00 0%, #FF5722 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-cta-btn span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.footer-cta-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50px;
    z-index: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-btn:hover::before {
    transform: translateY(0);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4);
    color: #FF3C00;
}

.footer-cta-btn:hover span {
    color: #FF3C00;
}

/* Nav Button Styles with same effect */
.cta-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, #FF3C00 0%, #FF5722 100%);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 60, 0, 0.2);
    border: 1.5px solid #FF3C00;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    /* Ensure block model for transform */
}

.cta-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.cta-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 48px;
    /* Slightly smaller to fit border */
}

.cta-button:hover::before {
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 60, 0, 0.35);
    border-color: #FF3C00;
    /* Keep border orange */
}

.cta-button:hover span {
    color: #FF3C00 !important;
}

/* Hamburger Fixes */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: #000;
    border: none;
    z-index: 10001;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: #FF3C00;
    transform: scale(1.05);
}

.hamburger-line {
    width: 18px;
    height: 1.5px;
    background-color: #fff !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active .hamburger-line {
    background: #fff !important;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #FF3C00 !important;
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #FF3C00 !important;
}

.mobile-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #EEE9E3;
    z-index: 9990;
    padding: 120px 40px 40px;
    display: none;
    opacity: 0;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.mobile-link {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
    color: #FF3C00;
}

.mobile-item {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-link {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    border: 1.5px solid transparent;
}

.mobile-link:hover,
.mobile-link.active {
    background: linear-gradient(135deg, #FF3C00 0%, #FF5722 100%);
    color: #fff !important;
    transform: translateX(4px);
    border-color: #FF3C00;
}

/* Layout System */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    padding-top: 150px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-end;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.hero-lottie-wrapper {
    position: absolute;
    top: 45%;
    left: max(40px, calc(50% - 660px));
    transform: translateY(-50%);
    width: 100%;
    max-width: 140px;
    display: flex;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.hero-accent-lottie {
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 1200px) {
    .hero-lottie-wrapper {
        left: 40px;
        top: 40%;
    }
}

@media (max-width: 1024px) {
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-lottie-wrapper {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        display: flex !important;
        order: 2;
        margin: 40px auto 0;
        max-width: 120px;
    }

    .book-call {
        order: 1;
    }
}


/* Tricker Section */
.tricker {
    padding: 40px 0 80px 0;
    overflow: hidden;
    background: transparent;
}

.tricker-wrapper {
    display: flex;
    width: fit-content;
    animation: scroll-tricker 40s linear infinite;
}

.tricker-single-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

.tricker-single-image {
    height: 55px;
    width: auto;
    display: block;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
}

.tricker-single-image:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.tricker-divider {
    width: 2px;
    height: 50px;
    background-color: #FF3C00;
    flex-shrink: 0;
    opacity: 0.8;
}

@keyframes scroll-tricker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .tricker-single-image {
        height: 25px;
    }

    .tricker-single-wrap {
        gap: 40px;
        padding-right: 40px;
    }

    .tricker-divider {
        height: 20px;
    }
}

/* Services Accordion Section */
.services-section {
    padding: 140px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.services-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

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

.accordion-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: -0.02em;
}

.accordion-item:hover .accordion-title {
    color: #FF3C00;
    transform: translateX(10px);
}

.accordion-item.active .accordion-title {
    color: #FF3C00;
}

.accordion-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.accordion-text {
    padding-top: 20px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    max-width: 90%;
}

.explore-services {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    background-color: #FF3C00;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    padding: 16px 28px;
    border-radius: 100px;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 60, 0, 0.2);
}

.explore-services:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.explore-services .book-call-text {
    position: relative;
    height: 1.25em;
    overflow: hidden;
    display: inline-block;
}

.explore-services .book-call-text span {
    display: block;
    height: 1.25em;
    line-height: 1.25em;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.explore-services:hover .book-call-text span {
    transform: translateY(-1.25em);
}

.explore-services .book-call-arrow svg path {
    stroke: #fff;
}





@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

.section-divider {
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #FF3C00, transparent);
    margin: 0 auto;
    opacity: 0.8;
}

/* Marquee Styles */
.marquee-section {
    background-color: #EEE9E3;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-wrapper {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.marquee-item {
    font-size: 110px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -4px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.marquee-dot {
    width: 24px;
    height: 24px;
    background-color: #FF3C00;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 40px;
        gap: 20px;
        letter-spacing: -1px;
    }

    .marquee-dot {
        width: 12px;
        height: 12px;
    }

    .marquee-section {
        padding: 25px 0;
    }
}

/* Growth Ticker Styles */
.growth-ticker {
    padding: 80px 0;
    background-color: #EEE9E3;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.growth-wrapper {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 30s linear infinite;
}

.growth-item {
    font-size: 140px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -5px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    text-transform: capitalize;
}

.growth-dot {
    width: 25px;
    height: 25px;
    background-color: #FF3C00;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .growth-item {
        font-size: 60px;
        letter-spacing: -2px;
        gap: 20px;
    }

    .growth-dot {
        width: 12px;
        height: 12px;
    }

    .growth-ticker {
        padding: 40px 0;
    }
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    background: transparent;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #000;
}

.badge-dot {
    width: 12px;
    height: 12px;
    background: #FF3C00;
    border-radius: 50%;
}

.headline-container {
    font-family: 'Inter', sans-serif !important;
    font-size: 5rem;
    font-weight: 900;
    color: #000;
    line-height: 1.05;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.orange-pop-wrap {
    display: inline-flex;
    align-items: center;
    color: #FF3C00;
    will-change: transform;
}

.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Scaling */
@media (max-width: 1200px) {
    .headline-container {
        font-size: 4rem;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-section {
        padding: 80px 0;
    }

    .headline-container {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .headline-container {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .about-badge {
        margin-bottom: 25px;
        font-size: 13px;
    }
}

.book-call {
    display: inline-flex;
    align-items: center;
    background-color: #FF3C00;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    padding: 18px 30px;
    border-radius: 100px;
    gap: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 60, 0, 0.2);
}

.book-call:hover {
    background-color: #000000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.book-call .book-call-text {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: inline-block;
    pointer-events: none;
    /* Let the button handle events */
}

.book-call-text span {
    display: block;
    height: 1.2em;
    line-height: 1.2em;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    /* Allow GSAP to move it */
}

.book-call:hover .book-call-text span {
    transform: translateY(-1.2em);
}

/* Fix arrow color inside new background button */
.book-call .book-call-arrow svg path {
    stroke: #ffffff;
}

.book-call-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.book-call:hover .book-call-arrow {
    transform: translate(3px, -3px);
}

.book-call-arrow svg {
    width: 100%;
    height: 100%;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.95;
    color: #000;
    letter-spacing: -3px;
    position: relative;
    top: -120px;
    margin-left: 30px;
}

.hero-title .dot {
    color: #ff5722;
    display: inline-block;
    /* Required for transform */
}



/* Updated for GSAP Animation */
.word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.15em;
    /* Use em for relative spacing */
    line-height: 1;
}

.word-wrapper:last-child {
    margin-right: 0;
}

/* Inline Image Animation */
.inline-image-wrapper {
    display: inline-block;
    width: 0;
    /* Starts hidden, GSAP will animate this */
    height: 0.85em;
    /* Slightly taller for better card proportions */
    vertical-align: middle;
    /* Better alignment with text */
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    margin: 0;
    /* GSAP will add padding/margin via gaps */
    transform: translateY(-2px);
    /* Fine-tune vertical position */
    background: #e0e0e0;
    /* Fallback background while loading */
}

.inline-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    /* Ensures image follows container rounding */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .inline-image-wrapper {
        height: 0.75em;
    }

    .inline-image-wrapper img {
        min-width: 80px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
        top: -80px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
        top: 0;
        margin-left: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-left {
        margin-bottom: 20px;
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero {
        align-items: center;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {

    .nav-links,
    .nav-container>.cta-button {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
        /* Slightly smaller for cleaner line breaks */
        letter-spacing: -1px;
        line-height: 1.15;
        margin-left: 0;
        text-align: left;
        width: 100%;
        top: 0;
    }

    .hero-title br {
        display: block;
        /* Force breaks on mobile for specific balance */
    }

    .hero-left {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .book-call {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    .explore-services {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .footer-cta-btn {
        width: 100%;
        text-align: center;
        padding: 18px;
        font-size: 16px;
    }

    .footer-left-top {
        width: 100%;
        min-height: auto;
        gap: 15px;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-center {
        top: 0 !important;
        margin: 10px 0;
    }

    .footer-contact-info {
        width: fit-content;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 10px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        text-align: left;
    }

    .contact-item:last-child {
        align-items: flex-start;
    }

    .contact-item span {
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 600;
        color: #000;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .inline-image-wrapper {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .logo-img {
        height: 34px;
    }

    .footer-card {
        padding: 40px 20px;
        gap: 40px;
        border-radius: 24px;
    }

    .footer-contact-info {
        gap: 14px;
    }

    .contact-item span {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-logo-large {
        width: 180px;
    }

    .social-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .hours-time {
        font-size: 1.25rem;
    }
}

/* Footer Styles */
.footer-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #EEE9E3;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.footer-card {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    border-radius: 40px;
    padding: 70px 80px;
    width: 100%;
    max-width: 1400px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#footer-confetti {
    z-index: 99 !important;
    pointer-events: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 60px;
}

.footer-left-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 180px;
}

.copyright-text {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.footer-cta-btn {
    background: linear-gradient(135deg, #FF3C00 0%, #FF5722 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.2);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 60, 0, 0.3);
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #FF3C00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.contact-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.contact-item:hover .contact-icon {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-item:hover .contact-icon i {
    color: #FF3C00;
}

.contact-item:last-child {
    align-items: flex-start;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo-large {
    width: 220px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo-large:hover {
    transform: scale(1.02);
}

.footer-right-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.office-hours {
    text-align: right;
}

.hours-label {
    font-size: 0.95rem;
    color: #666;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.hours-time {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons .social-icon-btn {
    width: 44px;
    height: 44px;
    background-color: #FF3C00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons .social-icon-btn i {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.social-icons .social-icon-btn:hover {
    background-color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icons .social-icon-btn:hover i {
    color: #FF3C00 !important;
}

.footer-right-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.office-hours {
    text-align: right;
}

.hours-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.hours-time {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
}

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

.social-icon-btn {
    width: 40px;
    height: 40px;
    background-color: #FF3C00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .footer-card {
        padding: 50px 30px;
        border-radius: 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-left-top {
        align-items: center;
        min-height: auto;
        gap: 20px;
    }

    .footer-contact-info {
        text-align: center;
        align-items: center;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-right-bottom {
        align-items: center;
    }

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

    .hours-time {
        font-size: 1.4rem;
    }
}

/* Testimonials Section (Index) & About */
.ai-testimonials {
    background: #EEE9E3;
    padding: 100px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-title {
    text-align: center;
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.testimonial-carousel {
    max-width: 1100px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
}

.testimonial-slide {
    min-width: 100%;
    background: #fff;
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(255, 60, 0, 0.05);
}

.testimonial-category {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FF3C00;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-slide h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.testimonial-slide p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-author {
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    font-size: 1.1rem;
}

.testimonial-audio-btn {
    background: #FF3C00;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.testimonial-audio-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #FF3C00;
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .ai-testimonials {
        padding: 40px 10px;
    }

    .ai-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .testimonial-slide {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .testimonial-slide h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .testimonial-slide p {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .testimonial-author {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .testimonial-stars {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .testimonial-audio-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Works Section */
.works-section {
    background-color: #EEE9E3;
    padding: 120px 0;
    overflow: hidden;
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
    align-items: start;
}

.works-col {
    display: flex;
    flex-direction: column;
}

.works-left {
    margin-top: 100px;
}

.works-right {
    margin-bottom: 100px;
}

.works-badge {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-transform: uppercase;
}

.works-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #FF3C00;
    border-radius: 50%;
    display: inline-block;
}

.works-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    background: #fff;
    height: 60vh;
}

.works-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-image-wrap:hover img {
    transform: scale(1.03);
}

.works-text-part {
    position: relative;
}

.works-text-part h2 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    color: #000;
    letter-spacing: -3px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #EEE9E3;
    text-align: center;
    position: relative;
    cursor: default;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0 10px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.floating-btn {
    position: fixed;
    top: 0;
    left: 0;
    width: 110px;
    height: 44px;
    background-color: #FF3C00;
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    box-shadow: 0 8px 16px rgba(255, 60, 0, 0.25);
}

.cta-content:hover~.floating-btn,
.cta-content:active~.floating-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cta-section.is-hovering .floating-btn {
    background-color: #fff;
    color: #FF3C00;
}

.works-left .works-text-part {
    margin-top: 80px;
}

.works-right .works-image-wrap {
    margin-top: 80px;
}

@media (max-width: 1200px) {
    .works-grid {
        gap: 80px;
    }

    .works-text-part h2 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .works-left,
    .works-right {
        margin: 0;
    }

    .works-left .works-text-part,
    .works-right .works-image-wrap {
        margin-top: 40px;
    }

    .works-text-part h2 {
        font-size: 42px;
    }

    .works-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .works-text-part h2 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
}

/* Stacked Advantages Section -> Grid Layout */
.stack-section {
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #EEE9E3;
    /* Reverted to brand background */
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stack-section {
        padding: 60px 20px;
    }
}

.card-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border initially */
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card-item:hover {
    transform: translateY(-8px);
    border-color: #FF3C00;
    box-shadow: 0 20px 40px rgba(255, 60, 0, 0.15);
}

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

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

.icon-box {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: #FF3C00;
    background: rgba(255, 60, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
}

.card-item:hover .icon-box {
    background: #FF3C00;
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.icon-box svg {
    fill: currentColor;
    width: 100%;
    height: 100%;
}

.card-item h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.card-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-item p.intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    font-weight: 500;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    /* Keep list items left aligned for readability but centered container */
    display: inline-block;
}

.bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

.bullet-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff3c00;
    font-weight: bold;
}

.result-box {
    background: #fff5f2;
    padding: 15px 25px;
    border-radius: 12px;
    border-left: 4px solid #ff3c00;
    text-align: center;
}

.result-box span {
    font-weight: 800;
    color: #ff3c00;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 4px;
}

.result-box p {
    margin: 0;
    font-weight: 600;
    color: #000000;
}



@media (max-width: 767px) {
    .card-item h2 {
        font-size: 1.85rem;
        letter-spacing: -0.02em;
    }

    .card-item p.intro {
        font-size: 1rem;
        margin-top: 10px;
    }

    .bullet-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .card-item h2 {
        font-size: 1.45rem;
        letter-spacing: 0.02em;
        overflow-wrap: break-word;
    }
}

/* ========================================= */
/* PAGE SPECIFIC OVERRIDES                   */
/* ========================================= */

/*** About Page Hero Overrides ***/
.about-hero {
    align-items: center;
    /* different from align-items: flex-end in index */
}

.about-hero .hero-inner {
    grid-template-columns: 1.5fr 1fr;
    /* different from 1fr 2fr */
    gap: 60px;
    align-items: flex-start;
}

.about-hero .hero-left {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
}

.about-hero .hero-title {
    font-size: 90px;
    top: 0;
    margin-left: 0;
    text-transform: capitalize;
}

.about-hero .hero-right {
    justify-content: center;
}

/* Responsive Overrides for About Page */
@media (max-width: 1200px) {
    .about-hero .hero-title {
        font-size: 70px;
    }
}

@media (max-width: 1024px) {
    .about-hero .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .about-hero .hero-right {
        justify-content: flex-start;
    }

    .about-hero .hero-title {
        font-size: 60px;
    }

    .about-hero {
        padding-top: 140px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 40px;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    overflow: hidden;
}

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

.what-we-do-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-we-do-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-we-do-text {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 25px;
    margin-top: 10px;
}

.highlight {
    color: #FF3C00;
    font-weight: 800;
}

.bold {
    font-weight: 800;
    color: #000;
}

.what-we-do-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    max-width: 90%;
}

@media (max-width: 1024px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .what-we-do-text {
        font-size: 2rem;
    }

    .what-we-do-left {
        order: 2;
    }

    .what-we-do-right {
        order: 1;
    }
}

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

    .what-we-do-text {
        font-size: 1.75rem;
    }

    .what-we-do-subtext {
        font-size: 1.1rem;
    }
}

/* Vision Section */
.vision-section {
    padding: 120px 0;
    text-align: center;
    background-color: #EEE9E3;
}

.vision-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}

.vision-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 1000px;
    margin: 0 auto 60px;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .vision-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }
}

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

    .vision-title {
        font-size: 1.8rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    background: #EEE9E3;
    padding: 100px 5%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.service-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

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

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 14px;
    height: 14px;
    background: #FF3C00;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
}

.card-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #E8E4DF;
    font-size: 1.05rem;
    color: #6B6763;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

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

.feature-item:hover {
    color: #1a1a1a;
    padding-left: 8px;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: #FF3C00;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.card-result {
    margin-top: 24px;
    padding: 18px 22px;
    background: #FFF5F2;
    border-radius: 12px;
    border-left: 4px solid #FF3C00;
}

.result-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    font-style: italic;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 30px;
    }

    .service-card {
        padding: 40px 32px;
    }

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

    .card-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: 80px 4%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 35px 28px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-subtitle {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .feature-item {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .services-grid-section {
        padding: 60px 4%;
    }

    .service-card {
        padding: 28px 22px;
    }

    .card-header {
        gap: 12px;
    }

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

    .card-subtitle {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}

/* Mission Section Lottie */
.mission-lottie-container {
    padding: 60px 0;
    text-align: center;
}

/* Digital Solutions Hero Styles */
.digital-hero {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(to right, #E7E2DB 33%, #EEE9E3 33%);
}

@media (max-width: 1024px) {
    .digital-hero {
        background: #EEE9E3;
        /* Simplify background on mobile */
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.digital-hero .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-start;
    gap: 60px;
}

.digital-hero .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 650px;
    margin-bottom: 0;
}

.digital-hero .hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.05;
    color: #000;
    margin-top: 80px;
    margin-bottom: 15px;
    margin-left: -6px;
    /* Optical alignment with the badge dot */
    padding-left: 0;
    text-align: left;
    /* Space for the subtext that will be auto pushed */
    letter-spacing: -0.04em;
    text-transform: none;
    /* Keep the casing from HTML */
}

.digital-hero .hero-subtext {
    margin-top: auto;
    font-size: 1.2rem;
    color: #555;
    max-width: 580px;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .digital-hero .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 1024px) {
    .digital-hero .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .digital-hero .hero-left {
        min-height: auto;
    }

    .digital-hero .hero-subtext {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .digital-hero .hero-title {
        font-size: 3.2rem;
        margin-top: 40px;
        margin-left: 0;
    }

    .digital-hero .hero-inner {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .digital-hero .hero-title {
        font-size: 2.5rem;
    }

    .digital-hero .hero-subtext {
        font-size: 1.1rem;
    }
}

/* What We Do (Digital Solutions) */
.what-we-do {
    background: #EEE9E3;
    padding: 120px 20px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

.what-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.what-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FF3C00;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
}

.what-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    opacity: 0;
}

.strike {
    position: relative;
    display: inline-block;
}

.strike::after {
    content: '';
    position: absolute;
    left: -4%;
    top: 55%;
    width: 108%;
    height: 6px;
    background: #FF3C00;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 4px;
    z-index: -1;
}

.what-main {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #6B6763;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.what-main strong,
.highlight {
    color: #1a1a1a;
    font-weight: 700;
}

.what-divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF3C00, transparent);
    margin: 0 auto 32px;
}

.what-sub {
    font-size: 1.1rem;
    color: #6B6763;
    opacity: 0;
    transform: translateY(16px);
}

.what-sub span {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 80px 20px;
    }

    .what-heading {
        font-size: 2.2rem;
    }

    .what-main {
        font-size: 1.15rem;
    }
}

/* Digital Solutions Header & Helpers */
.solutions-header {
    padding-top: 100px;
    text-align: center;
    background: #EEE9E3;
}

.about-badge.centered {
    justify-content: center;
    margin-bottom: 20px;
}

.solutions-title {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}

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

.lottie-divider {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background-color: #EEE9E3;
}

.cta-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (max-width: 900px) {
    .solutions-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .solutions-title {
        font-size: 2.25rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .solutions-header {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 1.75rem;
    }
}

/* Services Pricing Section */
.pricing-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 15px;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-intro h1 {
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pricing-intro p {
    font-size: clamp(16px, 4vw, 20px);
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.trust-badge {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-style: italic;
    color: #666;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-selector-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.selector-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.service-btn.active {
    background: #FF3C00;
    border-color: #FF3C00;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 60, 0, 0.3);
}

@media (max-width: 600px) {
    .service-buttons {
        gap: 8px;
    }

    .service-btn {
        padding: 10px 18px;
        font-size: 13px;
        flex: 1 1 calc(50% - 8px);
        /* Two buttons per row */
        text-align: center;
    }
}

.pricing-table-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Ensure the table containers remain hidden by default when they have the 'hidden' class */
.pricing-table-container.hidden {
    display: none;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

@media (min-width: 769px) {
    .pricing-table thead {
        background: linear-gradient(135deg, #FF3C00 0%, #ff5722 100%);
        color: #fff;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 24px 20px;
        border-right: 1px solid #f0f0f0;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }

    .pricing-table td {
        color: #444;
        font-weight: 500;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
        text-align: left;
        font-weight: 800;
        width: 200px;
        color: #000;
    }

    .pricing-table th:nth-child(3),
    .pricing-table td:nth-child(3) {
        background-color: rgba(255, 60, 0, 0.025);
    }

    .pricing-table tbody tr:hover {
        background: #FFF5F2;
    }
}

.pricing-cards {
    display: none;
}

@media (max-width: 768px) {
    .pricing-wrapper {
        padding: 60px 10px;
    }

    .pricing-table-container {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .pricing-table thead,
    .pricing-table {
        display: none;
    }

    .pricing-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .price-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        text-align: left;
        border: 1px solid #f0f0f0;
    }

    .price-card.featured {
        background: linear-gradient(135deg, #fff 0%, #FFF8F5 100%);
        border: 2px solid #FF3C00;
        box-shadow: 0 10px 30px rgba(255, 60, 0, 0.1);
    }

    .recommended-badge {
        position: absolute;
        top: -14px;
        left: 24px;
        background: linear-gradient(135deg, #FF3C00 0%, #FF5722 100%);
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.05em;
        box-shadow: 0 4px 12px rgba(255, 60, 0, 0.15);
        z-index: 10;
        text-transform: uppercase;
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #eeeeee;
        margin-bottom: 20px;
        position: relative;
    }

    .card-title {
        font-size: 22px;
        font-weight: 900;
        line-height: 1.1;
        color: #000;
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 65%;
        text-transform: uppercase;
        letter-spacing: -0.01em;
    }

    .card-price {
        font-size: 18px;
        color: #FF3C00;
        font-weight: 800;
        text-align: right;
        line-height: 1.1;
        flex-shrink: 0;
    }

    .card-feature {
        display: flex;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid #f9f9f9;
        align-items: center;
    }

    .card-feature:last-of-type {
        border-bottom: none;
    }

    .feature-label {
        font-weight: 600;
        color: #6B6763;
        font-size: 15px;
    }

    .feature-value {
        font-weight: 700;
        color: #000;
        text-align: right;
        font-size: 15px;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.table-helper {
    text-align: center;
    padding: 20px;
    background: #F8F6F3;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.pricing-footer-cta {
    text-align: center;
    background: linear-gradient(135deg, #FF3C00 0%, #ff5722 100%);
    color: #fff;
    border-radius: 24px;
    padding: 50px 20px;
    margin-top: 40px;
}

.pricing-footer-cta h2 {
    color: #fff;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 250px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        min-width: unset;
    }
}

.cta-btn.primary {
    background: #fff;
    color: #FF3C00;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Pricing Process Section */
.pricing-process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.combined-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.section-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.how-pricing-works h2,
.pricing-philosophy h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.steps-grid,
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item,
.philosophy-item {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 90px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.step-item:hover,
.philosophy-item:hover {
    background: rgba(255, 232, 224, 0.9);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(255, 60, 0, 0.12);
}

.step-number,
.philosophy-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF3C00, #FF5722);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4,
.philosophy-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.step-content p,
.philosophy-content p {
    font-size: 0.95rem;
    color: #6B6763;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .combined-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 32px 24px;
    }

    .pricing-table-container,
    .section-container {
        border-radius: 16px;
    }
}

.ai-process {
    background: #EEE9E3;
    padding: 100px 20px;
    color: #000;
}

.ai-process .container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-header h2 {
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.process-header p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6B6763;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 29px;
    width: 3px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #FF3C00 0%, rgba(255, 60, 0, 0.3) 100%);
    border-radius: 2px;
    z-index: 0;
}

.ai-process .step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.step-icon {
    background: linear-gradient(135deg, #FF3C00 0%, #FF5722 100%);
    color: #fff;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 60, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-process .step:hover .step-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 60, 0, 0.35);
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: #6B6763;
    letter-spacing: -0.01em;
}

@media (max-width: 480px) {
    .process-header h2 {
        font-size: 1.75rem;
    }

    .process-header p {
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .process-line {
        left: 22px;
        width: 2px;
    }
}

/* Impact Section */
.impact-section {
    background: #EEE9E3;
    padding: 110px 20px;
    color: #000;
}

.impact-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.impact-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.impact-header p {
    font-size: 1.25rem;
    color: #6B6763;
}

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

.impact-card:last-child {
    grid-column: span 2;
}

.impact-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 40px 32px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    transform: scale(0.92);
    filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.impact-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 72, 15, 0.08);
}

.impact-card.highlight {
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.12), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 72, 15, 0.08);
}

.impact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF3C00, #FF5722);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(255, 60, 0, 0.35);
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* Responsiveness for AI Process & Impact */
@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .process-header h2,
    .impact-header h2 {
        font-size: 2.25rem;
    }

    .process-line {
        left: 24px;
    }

    .ai-process .step {
        gap: 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .impact-card:last-child {
        grid-column: span 2;
    }
}

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

    .impact-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {

    .process-header h2,
    .impact-header h2 {
        font-size: 1.75rem;
    }

    .process-line {
        left: 22px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
    }

    .impact-icon {
        width: 46px;
        height: 46px;
    }
}

/* Audience Section (Who We Work With) */
.audience-section {
    background: #EEE9E3;
    padding: 110px 20px;
    color: #000;
}

.audience-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.audience-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.audience-header p {
    font-size: 1.25rem;
    color: #6B6763;
}

.audience-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.audience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.audience-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(-40px);
}

.audience-pill i {
    color: #FF3C00;
    font-size: 1.1rem;
}

.audience-highlight {
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.12), rgba(255, 255, 255, 0.85));
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(40px);
}

.audience-highlight h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.audience-highlight p {
    font-size: 1.05rem;
    color: #6B6763;
    line-height: 1.7;
}

/* Responsiveness for Audience */
@media (max-width: 900px) {
    .audience-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audience-highlight {
        text-align: center;
        padding: 36px;
    }
}

@media (max-width: 640px) {
    .audience-pill {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .audience-highlight {
        padding: 32px 28px;
    }
}

@media (max-width: 480px) {
    .audience-pill {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .audience-highlight {
        padding: 28px 24px;
        border-radius: 20px;
    }
}

/* AI Consultancy Page */
.ai-hero {
    background-color: #EEE9E3;
    padding: 140px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

.ai-hero-title {
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #1a1a1a;
    margin: 32px 0;
}

.ai-hero-subtext {
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    line-height: 1.65;
    color: #6B6763;
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 500;
}

.ai-hero-cta .cta-btn.primary {
    background: #FF3C00;
    color: #fff;
    min-width: 250px;
}

.ai-hero-cta .cta-btn.primary:hover {
    background: #E63600;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 60, 0, 0.2);
}

@media (max-width: 768px) {
    .ai-hero {
        padding: 100px 20px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #FF3C00;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #E63600;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon-float {
    width: 35px;
    height: 35px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon-float {
        width: 28px;
        height: 28px;
    }
}

/* End of File */