.nav-item,
main {
    position: relative
}

.text-0 h4,
.text-7,
.text-8 {
    line-height: 2
}

.cookie-btn,
.logos,
.scroll-text {
    white-space: nowrap
}

/* Helper Classes */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false
}

@keyframes spin {
    from {
        --angle: 0deg
    }

    to {
        --angle: 360deg
    }
}

@media (min-width: 1600px) {
    .home-hero .hero-copy h1 {
        font-size: 3.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Speed Score Badge - Reset & Centering */
.speed-score-badge {
    position: relative;
    display: inline-flex;
    padding: 2px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(111, 66, 193, 0.3));
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.2);
    margin-bottom: 2rem;
    /* Give it space */
}

@media (min-width: 992px) {
    .speed-score-badge {
        transform: none;
        margin: 0 auto 2rem auto;
        /* Explicitly Center */
        left: 0;
        top: 0;
    }
}

/* Vertical Case Tags */
.case-tags {
    display: flex;
    flex-direction: column;
    /* Vertical Stack */
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    /* Left align */
}

.tech-tag {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    /* Slightly rounded, more pro */
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.tech-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #0d6efd;
    /* Brand color dot */
    border-radius: 50%;
    margin-right: 8px;
    opacity: 0.7;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    /* Slide effect */
}

/* Helper background and border classes */
.bg-dark-soft {
    background-color: rgba(255, 255, 255, 0.03) !important;
}

.border-primary-light {
    border: 1px solid rgba(13, 110, 253, 0.2) !important;
}

/* Premium Tech Card Design */
.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-card h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0d6efd !important;
    /* Ensure blue text */
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    /* Ensure readable white text */
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Infinite Scroll Fixes */
/* [REMOVED DUPLICATE .logo-track] */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(1em)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1em)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes comeOut {
    from {
        opacity: 0;
        transform: translate(-50%, -60%)
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%)
    }
}

@keyframes line {
    10% {
        transform: scaleY(0);
        transform-origin: center top
    }

    50% {
        transform-origin: center top;
        transform: scale(1)
    }

    51% {
        transform-origin: center bottom
    }

    100% {
        transform-origin: center bottom;
        transform: scaleY(0)
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateX(-50%) translateY(0)
    }

    40% {
        transform: translateX(-50%) translateY(10px)
    }

    60% {
        transform: translateX(-50%) translateY(5px)
    }
}

@keyframes bounce-2 {

    0%,
    10%,
    100%,
    20% {
        transform: translateY(0)
    }

    5% {
        transform: translateY(10px)
    }

    15% {
        transform: translateY(5px)
    }
}

@keyframes SlideRight {
    from {
        transform: translate3d(-100%, 0, 0);
        opacity: 0
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes SlideLeft {
    from {
        transform: translate3d(100%, 0, 0);
        opacity: 0
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes SlideDown {
    from {
        transform: translate3d(0, -100%, 0);
        opacity: 0
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes SlideUp {
    from {
        transform: translate3d(0, 100%, 0);
        opacity: 0
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateLeft {
    0% {
        transform: translateX(100%) rotateY(0);
        opacity: 0
    }

    75% {
        transform: translateX(0) rotateY(0);
        opacity: .65
    }

    80% {
        transform: translateX(0) rotateY(-90deg)
    }

    85% {
        transform: translateX(0) rotateY(-180deg)
    }

    90% {
        transform: translateX(0) rotateY(-270deg)
    }

    100% {
        transform: translateX(0) rotateY(-360deg)
    }
}

@keyframes rotateRight {
    0% {
        transform: translateX(-100%) rotateY(0);
        opacity: 0
    }

    75% {
        transform: translateX(0) rotateY(0);
        opacity: .65
    }

    80% {
        transform: translateX(0) rotateY(90deg)
    }

    85% {
        transform: translateX(0) rotateY(180deg)
    }

    90% {
        transform: translateX(0) rotateY(270deg)
    }

    100% {
        transform: translateX(0) rotateY(360deg)
    }
}

/* Removed conflicting scroll animation */

.hidden,
.small-device-spline {
    display: none
}

.down,
.items,
.text-0 {
    display: flex
}

body {
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for sticky header */
}

body,
html {
    margin: 0;
    font-family: 'Instrument Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #050507;
    background-image:
        radial-gradient(circle at 15% 0%, rgba(13, 110, 253, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(111, 66, 193, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(13, 110, 253, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    color: #e2e8f0;
}

main {
    z-index: 1
}

.navbar {
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(13, 110, 253, .2);
}

@media (min-width:768px) and (max-width:991px) {
    .home-hero {
        min-height: 100svh;
        padding: 5.5rem 0 2.5rem;
    }

    .home-hero .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: calc(100svh - 8rem);
        gap: 2.2rem;
    }

    .home-hero .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .home-hero .hero-actions {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .home-hero .hero-copy {
        align-items: center;
        text-align: center;
        gap: 1.45rem;
    }

    .home-hero .hero-copy h1 {
        font-size: clamp(2rem, 4.2vw, 2.65rem);
        line-height: 1.18;
        margin-bottom: 1.7rem;
    }

    .home-hero .hero-copy p {
        max-width: 720px;
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .home-hero .hero-actions {
        margin: 1.4rem 0 1rem;
    }

    .home-hero .hero-actions a {
        font-size: 1rem;
        padding: .9rem 1.7rem;
    }

    .home-hero .hero-metrics {
        margin: 1.2rem 0;
        gap: 1.1rem;
        font-size: 1rem;
    }

    .home-hero .hero-aside {
        max-width: 640px;
        align-self: flex-start;
        transform: translateY(-14px);
        font-size: .98rem;
        line-height: 1.6;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .home-page .section-title {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
        line-height: 1.25;
    }

    .home-page .section-lead {
        font-size: 1.02rem;
        line-height: 1.65;
    }

    .home-page .service-card h3,
    .home-page .article-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .home-page .service-card p,
    .home-page .article-card p {
        font-size: 1.01rem;
        line-height: 1.6;
    }

    .home-page .main-button,
    .home-page .hero-secondary {
        font-size: 1rem;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .section-title {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
        line-height: 1.25;
    }

    .section-lead {
        font-size: 1.02rem;
        line-height: 1.65;
    }

    .main-button,
    .hero-secondary {
        font-size: 1rem;
    }

    .service-card h3,
    .article-card h3,
    .pillar-card h3,
    .benefit-card h3,
    .case-item h3,
    .testimonial-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .service-card p,
    .article-card p,
    .pillar-card p,
    .benefit-card p,
    .case-item p,
    .testimonial-card p {
        font-size: 1.01rem;
        line-height: 1.6;
    }

    .hero-copy p,
    .service-hero-copy p,
    .articles-hero .hero-copy p,
    .contact-hero-copy p {
        font-size: 1.02rem;
        line-height: 1.6;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .services-page .section-title {
        font-size: clamp(1.8rem, 3.2vw, 2.25rem);
        line-height: 1.28;
    }

    .services-page .section-lead {
        font-size: 1.04rem;
        line-height: 1.68;
    }

    .services-page .service-card h3 {
        font-size: 1.12rem;
        line-height: 1.32;
    }

    .services-page .service-card p {
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .services-page .pillar-card h3,
    .services-page .benefit-item h3 {
        font-size: 1.08rem;
        line-height: 1.3;
    }

    .services-page .pillar-card p,
    .services-page .benefit-item p {
        font-size: 1.01rem;
        line-height: 1.58;
    }

    .services-page .engagement-step h3 {
        font-size: 1.08rem;
        line-height: 1.3;
    }

    .services-page .engagement-step p {
        font-size: 1.01rem;
        line-height: 1.55;
    }
}

/* Services Page H1 Responsive Sizes */
.services-page .service-hero-copy h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

@media (min-width: 992px) {

    .services-page .service-hero-copy h1,
    .page-website .service-hero-copy h1 {
        font-size: 2.8rem;
        /* Smaller for laptops */
    }
}

@media (min-width: 1400px) {
    .services-page .service-hero-copy h1 {
        font-size: 3.5rem;
        /* Larger for desktop */
    }
}

@media (min-width:768px) and (max-width:991px) {
    .about-page .section-title {
        font-size: clamp(1.8rem, 3.1vw, 2.25rem);
        line-height: 1.28;
    }

    .about-page .section-lead {
        font-size: 1.04rem;
        line-height: 1.68;
    }

    .about-page .about-intro-copy h1 {
        font-size: clamp(2rem, 4vw, 2.7rem);
        line-height: 1.18;
    }

    .about-page .about-intro-copy p {
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .about-page .meta-block span {
        font-size: .98rem;
    }

    .about-page .journey-year {
        font-size: 1.05rem;
    }

    .about-page .journey-timeline p {
        font-size: 1.01rem;
        line-height: 1.6;
    }

    .about-page .culture-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .about-page .culture-card p {
        font-size: 1.01rem;
        line-height: 1.58;
    }

    .about-page .solo-profile-main h2 {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
        line-height: 1.22;
    }

    .about-page .solo-profile-main p,
    .about-page .solo-profile-aside p,
    .about-page .solo-profile-list,
    .about-page .studio-list {
        font-size: 1.01rem;
        line-height: 1.6;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .articles-page .section-title {
        font-size: clamp(1.8rem, 3.1vw, 2.25rem);
        line-height: 1.28;
    }

    .articles-page .section-lead {
        font-size: 1.04rem;
        line-height: 1.68;
    }

    .articles-page .articles-hero .hero-copy h1 {
        font-size: clamp(2rem, 4vw, 2.6rem);
        line-height: 1.18;
    }

    .articles-page .articles-hero .hero-copy p {
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .articles-page .article-card h3 {
        font-size: 1.12rem;
        line-height: 1.32;
    }

    .articles-page .article-card p {
        font-size: 1.01rem;
        line-height: 1.6;
    }

    .articles-page .popular-card h3 {
        font-size: 1.14rem;
        line-height: 1.32;
    }

    .articles-page .popular-card p {
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .articles-page .category-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .articles-page .category-card p {
        font-size: 1.01rem;
        line-height: 1.58;
    }

    .articles-page .article-meta {
        font-size: .96rem;
    }

    .articles-page .article-cta {
        font-size: 1rem;
    }

    .articles-page .articles-grid {
        gap: .6rem;
    }

    .articles-page .article-card {
        padding: 1.2rem;
        gap: .65rem;
    }

    .articles-page h1 {
        font-size: clamp(2rem, 4.2vw, 2.7rem);
        line-height: 1.18;
    }

    .articles-page h2 {
        font-size: clamp(1.7rem, 3.5vw, 2.2rem);
        line-height: 1.25;
    }

    .articles-page h3 {
        font-size: 1.14rem;
        line-height: 1.32;
    }

    .articles-page p,
    .articles-page li {
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .articles-page .article-badge {
        font-size: .94rem;
    }
}

header {
    z-index: 9999;
    font-size: 1.1rem
}

#header {
    transition: transform 1s;
    background-color: transparent !important
}

#header.off {
    transform: translateY(-150%)
}

/* ... */
.navbar-collapse {
    z-index: 10000
}

/* ... */
.ham-menu.active {
    z-index: 10001
}

.ham-menu.active span:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg)
}

.ham-menu.active span:nth-child(2) {
    opacity: 0%
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg)
}

.navbar-button-c {
    display: flex;
    align-items: center;
}

.navbar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:991px) {
    .navbar {
        margin: 0 1rem;
        border-radius: 1rem;
        padding: .55rem 1rem;
    }

    .navbar-brand img {
        width: 9.5rem;
        height: auto;
    }

    .navbar-button-c {
        margin-left: 0;
    }
}

@media (max-width:767px) {
    .navbar {
        margin: .65rem;
        margin-bottom: 0;
        border-radius: .9rem;
        padding: .5rem .85rem;
    }

    .navbar-brand img {
        width: 8.5rem;
        height: auto;
    }

    .navbar-button-c {
        width: 100%;
        margin-top: .75rem;
    }

    .navbar-button {
        width: 100%;
        padding: .75rem 1rem !important;
        border-radius: .75rem !important;
    }

    .navbar-nav {
        align-items: flex-start;
        padding-top: .5rem;
        border-top: 1px solid rgba(13, 110, 253, .16);
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: .6rem 0;
    }
}

@media (max-width:575px) {
    .navbar {
        margin: .5rem;
        border-radius: .8rem;
        padding: .45rem .75rem;
    }

    .navbar-brand img {
        width: 7.5rem;
        height: auto;
    }

    .navbar-button {
        font-size: .95rem;
    }
}

.container-scroll,
.ham-menu span {
    top: 50%;
    transform: translate(-50%, -50%)
}

.nav-link,
.navbar-button {
    z-index: 100;
    position: relative
}

.nav-link {
    font-size: clamp(.8rem, 2vw, 1.2rem);
    color: #000;
    padding: .5rem
}

.nav-link-active {
    color: #0d6efd !important;
    font-weight: 700 !important
}

.navbar-button {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 12rem;
    margin-left: 0
}

.navbar-button:hover {
    animation: .3s linear forwards increase
}

.navbar-collapse {
    z-index: 999
}

.ham-menu {
    width: 50px;
    height: 50px;
    margin-left: auto;
    position: relative;
    vertical-align: middle
}

.ham-menu span {
    height: 3px;
    width: 80%;
    background-color: #000;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    transition: .5s
}

.ham-menu span:first-child {
    top: 25%
}

.ham-menu span:nth-child(3) {
    top: 75%
}

.ham-menu.active {
    z-index: 3
}

.ham-menu.active span:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg)
}

.ham-menu.active span:nth-child(2) {
    opacity: 0%
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg)
}

.container-scroll {
    position: fixed;
    left: 50px
}

.down,
.down .go-down {
    position: relative
}

.hp-down {
    opacity: 0;
    animation: 1s cubic-bezier(.11, 0, .5, 0) .6s forwards fadeIn;
    width: fit-content;
    height: fit-content;
    z-index: 1;
    color: #fff
}

.down {
    margin: 0 auto;
    z-index: 2;
    flex-direction: column;
    align-items: center
}

.down .go-down:after,
.down .go-down:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 70px;
    background-color: #fff;
    opacity: .07;
    transform: translateX(-50%)
}

.down .go-down:before {
    top: 100%;
    margin-top: 5px
}

.down .go-down:after {
    bottom: 100%;
    margin-bottom: 7.5px;
    opacity: 1;
    transform: scaleY(0);
    animation: 2s cubic-bezier(.4, 0, .4, .65) infinite both line
}

.scroll-text {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 13px;
    transform: rotate(180deg);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0
}

#whatsapp-btn {
    animation: 3.5s 5s infinite bounce-2
}

.main-title {
    margin-bottom: 3rem;
    font-size: 5.5rem;
    letter-spacing: .3rem
}

.sub-title {
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-size: 1.7rem;
    letter-spacing: 1.35px
}

#contactForm,
.scroll-arrow {
    margin: 0 auto
}

.text-0 h4,
.text-7,
.text-8 {
    letter-spacing: 1px
}

.main-button {
    text-decoration: none;
    padding: 1.7rem 2.2rem;
    background-color: #fff;
    color: #000;
    border-radius: 12rem
}

.main-button:hover {
    animation: 1s forwards increase
}

.scroll-arrow-cont {
    animation: 2s forwards fadeIn
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #fff;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: 2s 2s infinite bounce;
    opacity: 1
}

.fade-in,
.hidden {
    opacity: 0;
    will-change: transform, opacity;
}

.vertical-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background-color: #fff;
    opacity: 1;
    z-index: -999
}

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

.text-0 {
    justify-items: center;
    text-align: center;
    padding-left: 5% !important;
    padding-right: 5% !important
}

.c-text-2,
.c-text-3,
.c-text-4,
.c-text-5,
.c-text-6 {
    margin-top: 10%
}

.text-1,
.text-2,
.text-3,
.text-4,
.text-5,
.text-6 {
    flex-direction: column;
    background-color: #fff;
    color: #000;
    align-items: center;
    z-index: 10;
    margin-left: 15%;
    margin-right: 15%;
    padding: 20px;
    border-radius: 12rem
}

#final-container,
.c-items,
.c-packages,
.c-text-8,
.swiper-container {
    padding-bottom: 5%
}

.text-1 p,
.text-2 p,
.text-3 p,
.text-4 p,
.text-5 p,
.text-6 p {
    padding: 2rem;
    text-align: center
}

.fade-in.slide-right.visible {
    animation: 1.5s forwards SlideRight
}

.fade-in.slide-left.visible {
    animation: 1.5s forwards SlideLeft
}

.fade-in.slide-down.visible {
    animation: 2s forwards SlideDown
}

.fade-in.slide-up.visible {
    animation: 1.5s forwards SlideUp
}

/* Pure CSS animations for Above-The-Fold elements (LCP Optimization) */
.hero-animate-up {
    opacity: 0;
    animation: 1.5s forwards SlideUp;
    will-change: transform, opacity;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.c-text-7 {
    padding-top: 5%
}

.text-7 {
    padding: 5%
}

.items,
.text-8 {
    padding-left: 6%;
    padding-right: 7%
}

.c-packages {
    max-width: 100% !important
}

.card-header-1 {
    background-color: #3dcbfe !important
}

.card-header-2 {
    background-color: #0fa3db !important
}

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

.footer-nav,
.footer-svg,
.scroll-track {
    display: inline-block
}

.item-col-1,
.item-col-2,
.item-col-3 {
    text-align: center;
    justify-content: center;
    position: relative;
    padding: 0 77px 25px
}

.item-col-1:after,
.item-col-2:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #f2f2f2
}

.icon svg {
    width: 12vh;
    height: 12vh
}

#final-container {
    max-width: 100vw !important
}

.cta-button,
.cta-button-about-us {
    background-color: #fff;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 10;
    font-weight: bolder;
    letter-spacing: 1px;
    border-radius: 1.5rem;
    text-decoration: none
}

.cta-button-about-us:hover:after,
.cta-button-about-us:hover:before,
.cta-button:hover:after,
.cta-button:hover:before {
    content: '';
    position: absolute;
    z-index: -1;
    background-image: conic-gradient(from var(--angle), transparent 70%, #fff);
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    padding: 3rem 19.05rem;
    animation: 3.5s linear infinite spin;
    border-radius: 2rem
}

.card-svg {
    fill: black
}

svg {
    fill: #fff
}

.scroll-track .swiper-logo {
    position: relative;
    margin-left: 50px;
    margin-right: 50px
}

.logos {
    overflow: hidden;
    pointer-events: none;
    position: relative;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform
}

.logos::after,
.logos::before {
    position: absolute;
    top: 0;
    width: 5%;
    height: 100%;
    content: "";
    z-index: 2
}

.logos::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #000)
}

.logos::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #000)
}

.services-arrow .go-down,
.services-arrow .go-down:before {
    width: 2px;
    height: calc(1.375rem + 1.5vw);
    background-color: #fff
}

.logos {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.tech-track {
    animation: 20s linear infinite scroll;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    gap: 8rem;
    padding-right: 8rem;
    align-items: center;
}

.text-9 {
    letter-spacing: 2px
}

.footer-svg {
    position: relative;
    padding-bottom: 1rem
}

.footer-svg:hover svg {
    transform: scale(1.5)
}

.footer-nav:not(.footer-nav-active):hover::after,
.footer-nav:not(.footer-nav-active):hover::before,
.footer-svg:hover::after,
.footer-svg:hover::before {
    transform: translateY(0);
    border-bottom: .2rem solid #fff;
    opacity: 1;
    z-index: 10
}

.footer-nav {
    position: relative
}

.footer-nav-active {
    border-bottom: .2rem solid #fff;
    font-weight: bolder
}

.footer-nav:hover {
    font-weight: bolder;
    cursor: pointer
}

.my-web {
    transition: font-weight .3s
}

@media (min-width:768px) {
    .navbar {
        top: 1.6rem;
        left: 50%;
        transform: translateX(-50%);
        height: 4.6rem;
        border-radius: 12rem;
        max-width: fit-content
    }
}

@media (max-width:767px) {

    .my-web,
    .nav {
        display: flex
    }

    .nav-item {
        border-bottom: 1px solid #000
    }

    .navbar {
        border-radius: 12px
    }

    .navbar-button-c {
        display: flex;
        justify-content: center
    }

    .main-title {
        font-size: 2.5rem;
        letter-spacing: .3rem
    }

    .sub-title,
    .text-0 h4 {
        font-size: 1.2rem;
        line-height: 1.2
    }

    .sub-title {
        text-align: center;
        letter-spacing: 1px;
        margin-right: 7%;
        margin-left: 7%
    }

    .scroll-arrow-cont {
        position: fixed;
        bottom: env(safe-area-inset-bottom);
        left: 50%
    }

    .text-0 {
        padding-left: 5%;
        padding-right: 5%;
        justify-content: left;
        text-align: justify
    }

    .text-0 h4 {
        letter-spacing: .4px
    }

    .c-text-2,
    .c-text-3,
    .c-text-4,
    .c-text-5,
    .c-text-6 {
        margin-top: 25%
    }

    .text-1,
    .text-2,
    .text-3,
    .text-4,
    .text-5,
    .text-6 {
        margin-left: 0;
        margin-right: 0;
        padding: 2px;
        border-radius: 2.5rem
    }

    .text-1 h3,
    .text-2 h3,
    .text-3 h3,
    .text-4 h3,
    .text-5 h3,
    .text-6 h3 {
        padding: 10px 5px 0;
        text-align: center
    }

    .text-1 p,
    .text-2 p,
    .text-3 p,
    .text-4 p,
    .text-5 p,
    .text-6 p {
        padding: 10px 15px;
        justify-content: left;
        text-align: justify;
        line-height: 1.3;
        letter-spacing: .4
    }

    .c-text-7 {
        padding: 15% 5%
    }

    .text-7 {
        padding: 15% 5% 0;
        text-align: justify;
        line-height: 1.25;
        letter-spacing: .5px
    }

    .c-packages {
        padding-bottom: 0
    }

    #final-container,
    .c-items,
    .c-text-8 {
        padding-bottom: 15%
    }

    .c-text-8 {
        padding-top: 15%
    }

    .text-8 {
        line-height: 1.45;
        letter-spacing: 1.4px
    }

    .item-col-1,
    .item-col-2,
    .item-col-3,
    .items {
        padding: 0
    }

    .icon svg {
        width: 8vh;
        height: 8vh
    }

    .cta-button a {
        line-height: 1.5;
        letter-spacing: 1.6px
    }

    .infinite-scroll {
        padding-bottom: 1.5rem
    }

    .tech-track {
        gap: 2rem;
        padding-right: 2rem;
    }

    .swiper-logo {
        width: 60px !important;
        height: auto !important;
    }

    .nav {
        flex-direction: column
    }

    .nav.border-bottom {
        border: none !important
    }

    .footer-nav {
        padding: 2%;
        font-size: 1.1rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto
    }

    .social-media-links {
        justify-content: center;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #fff
    }

    .my-web {
        justify-content: center;
        transition: none
    }

    .my-web:hover {
        font-weight: 500
    }

    .logos,
    .swiper-logo {
        transform: translateZ(0)
    }

    .scroll-track {
        animation: 15s linear infinite scroll
    }

    #contactForm {
        width: 80%
    }

    .contact-info-c-details {
        padding-top: 5vh
    }
}

@media (min-width:768px) and (max-width:991px) {

    .my-web,
    .nav {
        display: flex
    }

    header {
        font-size: .8rem
    }

    .navbar-brand img {
        width: 11rem;
        height: auto
    }

    .navbar-button:after,
    .navbar-button:before,
    .container-scroll {
        left: 3vw
    }

    .main-title {
        font-size: 4rem;
        letter-spacing: .4rem
    }

    .sub-title {
        font-size: 1.35rem;
        text-align: center;
        line-height: 1.4;
        letter-spacing: 1.2px;
        margin-right: 7vw;
        margin-left: 7vw;
        margin-bottom: 10vh
    }

    .text-0 {
        padding-left: 5%;
        padding-right: 5%;
        justify-content: left;
        text-align: justify
    }

    .text-0 h4 {
        font-size: 1.35rem;
        line-height: 1.3;
        letter-spacing: .6px
    }

    .card-body ul,
    .text-7 {
        font-size: 1.2rem
    }

    .c-text-1 {
        background-clip: padding-box
    }

    .c-text-2,
    .c-text-3,
    .c-text-4,
    .c-text-5,
    .c-text-6 {
        margin-top: 10vh;
        background-clip: padding-box
    }

    .text-1,
    .text-2,
    .text-3,
    .text-4,
    .text-5,
    .text-6 {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 12rem
    }

    .text-1 h3,
    .text-2 h3,
    .text-3 h3,
    .text-4 h3,
    .text-5 h3,
    .text-6 h3 {
        padding: 1rem 0;
        margin-bottom: 0;
        text-align: center
    }

    .text-1 p,
    .text-2 p,
    .text-3 p,
    .text-4 p,
    .text-5 p,
    .text-6 p {
        padding: 0 3rem 2.5rem;
        margin: 0;
        justify-content: left;
        text-align: justify;
        line-height: 1.3;
        letter-spacing: .4
    }

    .c-text-7 {
        padding: 10% 5% !important
    }

    .text-7 {
        padding: 10% 0 0;
        text-align: justify;
        line-height: 1.25;
        letter-spacing: .5px
    }

    #final-container,
    .c-items,
    .c-packages {
        padding-bottom: 10%
    }

    .col {
        padding: 0 1.5vw !important
    }

    .c-text-8 {
        padding-top: 0;
        padding-bottom: 10%
    }

    .text-8 {
        line-height: 1.35;
        letter-spacing: 1.3px
    }

    .item-col-1,
    .item-col-3,
    .items {
        padding: 0
    }

    .item-col-2 {
        padding: 0 3.5%
    }

    .icon svg {
        width: 10vh;
        height: 10vh
    }

    .cta-button a {
        line-height: 1.5;
        letter-spacing: 1.6px
    }

    .infinite-scroll {
        padding-bottom: 1.5rem
    }

    .nav {
        flex-direction: column
    }

    .nav.border-bottom {
        border: none !important
    }

    .footer-nav {
        padding: 1%;
        font-size: 1.1rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto
    }

    .social-media-links {
        justify-content: center;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #fff
    }

    .my-web {
        justify-content: center;
        transition: none
    }

    .my-web:hover {
        font-weight: 500
    }
}

@media (min-width:992px) and (max-width:1199px) {
    header {
        font-size: .85rem
    }

    .navbar-brand img {
        width: 12rem;
        height: auto
    }

    .navbar-button:after,
    .navbar-button:before,
    .container-scroll {
        left: 3vw
    }

    .main-title {
        font-size: 4.25rem;
        letter-spacing: .5rem
    }

    .sub-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.5;
        letter-spacing: 1.4px;
        margin-right: 7vw;
        margin-left: 7vw
    }

    .text-0 {
        padding: 0 4%;
        justify-content: left;
        text-align: justify
    }

    .text-0 h4 {
        font-size: 1.35rem;
        line-height: 1.4;
        letter-spacing: .7px
    }

    .c-text-1 {
        background-clip: padding-box
    }

    .c-text-2,
    .c-text-3,
    .c-text-4,
    .c-text-5,
    .c-text-6 {
        margin-top: 10vh;
        background-clip: padding-box
    }

    .text-1,
    .text-2,
    .text-3,
    .text-4,
    .text-5,
    .text-6 {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 12rem
    }

    .text-1 h3,
    .text-2 h3,
    .text-3 h3,
    .text-4 h3,
    .text-5 h3,
    .text-6 h3 {
        padding: 1rem 0;
        margin-bottom: 0;
        text-align: center
    }

    .text-1 p,
    .text-2 p,
    .text-3 p,
    .text-4 p,
    .text-5 p,
    .text-6 p {
        padding: 0 3rem 2.5rem;
        margin: 0;
        justify-content: left;
        text-align: justify;
        line-height: 1.3;
        letter-spacing: .4
    }

    .c-text-7 {
        padding: 7% 4% !important
    }

    .text-7 {
        padding: 7% 0 0;
        text-align: justify;
        font-size: 1.2rem;
        line-height: 1.25;
        letter-spacing: .5px
    }

    #final-container,
    .c-items,
    .c-packages,
    .c-text-8 {
        padding-bottom: 7%
    }

    .card-body ul {
        font-size: 1.1rem;
        line-height: 1.75
    }

    #c-cards {
        max-width: 1100px !important
    }

    .c-text-8 {
        padding-top: 0
    }

    .text-8 {
        line-height: 1.35;
        letter-spacing: 1.3px
    }

    .icon svg {
        width: 11vw;
        height: 11vw
    }

    .items {
        padding: 0 5%
    }

    .item-col-1,
    .item-col-3 {
        padding: 3% 1.5rem
    }

    .item-col-2 {
        padding: 3% 3rem
    }

    .cta-button a {
        line-height: 1.5;
        letter-spacing: 1.6px
    }

    .infinite-scroll {
        padding-bottom: 2rem
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    header {
        font-size: 1rem
    }

    .navbar-brand img {
        width: 13rem;
        height: auto
    }

    .container-scroll {
        left: 3vw
    }

    .main-title {
        padding-top: 7.5vh;
        font-size: 4.75rem;
        letter-spacing: .6rem
    }

    .sub-title {
        font-size: 1.65rem;
        text-align: center;
        line-height: 1.6;
        letter-spacing: 1.7px;
        margin-right: 7vw;
        margin-left: 7vw
    }

    .text-0 {
        padding: 0 10vw !important
    }

    .c-text-1,
    .c-text-2,
    .c-text-3,
    .c-text-4,
    .c-text-5,
    .c-text-6 {
        padding: 0 7vw !important;
        background-clip: padding-box
    }

    .text-0 h4 {
        font-size: 1.55rem;
        line-height: 1.6;
        letter-spacing: .8px
    }

    .c-text-2,
    .c-text-3,
    .c-text-4,
    .c-text-5,
    .c-text-6 {
        margin-top: 15vh
    }

    .text-1,
    .text-2,
    .text-3,
    .text-4,
    .text-5,
    .text-6 {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 12rem
    }

    .text-1 h3,
    .text-2 h3,
    .text-3 h3,
    .text-4 h3,
    .text-5 h3,
    .text-6 h3 {
        padding: 1rem 0;
        margin-bottom: 0;
        text-align: center
    }

    .text-1 p,
    .text-2 p,
    .text-3 p,
    .text-4 p,
    .text-5 p,
    .text-6 p {
        padding: 0 3rem 2.5rem;
        margin: 0;
        justify-content: left;
        text-align: justify;
        line-height: 1.3;
        letter-spacing: .4
    }

    .c-text-7 {
        padding: 7% 4% !important
    }

    .text-7 {
        padding: 7% 0 0;
        text-align: justify;
        font-size: 1.3rem;
        line-height: 1.4;
        letter-spacing: .7px
    }

    #final-container,
    .c-items,
    .c-packages,
    .c-text-8 {
        padding-bottom: 7%
    }

    #c-cards {
        max-width: 90vw !important
    }

    #c-cards .card {
        height: 100%
    }

    .card-body {
        position: relative
    }

    #c-cards .btn {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 90% !important
    }

    .card-body ul {
        font-size: 1.1rem;
        line-height: 1.75;
        padding-bottom: 3rem
    }

    .c-text-8 {
        padding-top: 0
    }

    .text-8 {
        line-height: 1.35;
        letter-spacing: 1.3px
    }

    .icon svg {
        width: 11vw;
        height: 11vw
    }

    .items {
        padding: 0
    }

    .item-col-1,
    .item-col-2,
    .item-col-3 {
        padding: 3% 0
    }

    .cta-button a {
        line-height: 1.5;
        letter-spacing: 1.6px
    }

    .infinite-scroll {
        padding-bottom: 2rem
    }
}

@media (min-width:1400px) and (max-width:1799px) {
    header {
        font-size: 1rem
    }

    .navbar-brand img {
        width: 13rem;
        height: auto
    }

    .container-scroll {
        left: 2vw
    }

    .main-title {
        padding-top: 8.5vh;
        font-size: 4.75rem;
        letter-spacing: .6rem
    }

    .c-text-1,
    .text-0 {
        padding: 0 12.5vw !important
    }

    .sub-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.6;
        letter-spacing: 1.35px;
        margin-right: 3.5vw;
        margin-left: 3.5vw
    }

    .text-0 h4 {
        font-size: 1.55rem;
        line-height: 1.6;
        letter-spacing: .9px
    }

    .c-text-1 {
        background-clip: padding-box
    }

    .c-text-2,
    .c-text-3,
    .c-text-4,
    .c-text-5,
    .c-text-6 {
        padding: 0 12.5vw !important;
        margin-top: 15vh;
        background-clip: padding-box
    }

    .text-1,
    .text-2,
    .text-3,
    .text-4,
    .text-5,
    .text-6 {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 12rem
    }

    .text-1 h3,
    .text-2 h3,
    .text-3 h3,
    .text-4 h3,
    .text-5 h3,
    .text-6 h3 {
        padding: 1rem 0;
        margin-bottom: 0;
        text-align: center
    }

    .text-1 p,
    .text-2 p,
    .text-3 p,
    .text-4 p,
    .text-5 p,
    .text-6 p {
        padding: 0 3rem 2.5rem;
        margin: 0;
        justify-content: left;
        text-align: justify;
        line-height: 1.3;
        letter-spacing: .4
    }

    .icon svg {
        width: 13vw;
        height: auto
    }
}

@media (prefers-reduced-motion:reduce) {
    .scroll-track {
        animation-duration: 0s !important
    }
}

.contact-info-c {
    max-width: 90% !important;
    padding-bottom: 15vh
}

#main-contact {
    height: 100%
}

.main-container-contact {
    height: fit-content !important;
    padding-top: 10vh
}

.main-title-contact {
    padding: 8.5vh 0;
    margin: 0
}

.contact-info-c iframe {
    width: 100%;
    height: 50vh
}

.contact-info-c-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 45vh
}

.contact-info-t-details {
    font-size: 1.5rem
}

.contact-info-details {
    font-size: 1.25rem;
    padding-top: 1.5rem;
    display: block;
    text-decoration: none;
    color: inherit
}

.contact-form-c {
    max-width: 100% !important
}

.c-about-content,
.main-container-services,
.services-c {
    max-width: 90% !important
}

@media (min-width:768px) and (max-width:991px) {
    #contactForm {
        width: 60%
    }

    .contact-info-c-details {
        padding-top: 5vh
    }
}

@media (min-width:992px) and (max-width:1399px) {
    #contactForm {
        width: 60%
    }
}

@media (min-width:1400px) {
    #contactForm {
        width: 45%
    }
}

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

.form-title h3 {
    font-size: 2.25rem !important
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    font-size: 1rem
}

.form-group label {
    position: absolute;
    top: 0;
    left: .75rem;
    transform: translateY(.75rem);
    transition: .2s ease-out;
    color: #999;
    pointer-events: none;
    font-size: 1rem
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    transform: translateY(-1.25rem) scale(.85);
    padding: 0 .4rem;
    color: #fff
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: #4a90e2
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent
}

.error-message {
    color: #f44;
    font-size: .875rem;
    margin-top: .25rem;
    display: block
}

.disabled-style {
    opacity: .5 !important;
    cursor: not-allowed !important;
    pointer-events: auto !important
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, .9);
    padding: 2px 6px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s
}

.form-group textarea:focus+label+.error-message+.char-counter {
    opacity: 1;
    visibility: visible
}

.form-submit {
    display: block;
    opacity: 1;
    cursor: pointer;
    background-color: #0d6efd;
    color: #fff;
    border: 0;
    padding: 1rem;
    border-radius: 12rem;
    margin: 1rem auto 7vh
}

@keyframes underlineAnimate {
    0% {
        background-position: right;
        opacity: 0
    }

    15% {
        opacity: 1
    }

    30% {
        background-position: left
    }

    45% {
        background-position: right
    }

    60% {
        background-position: left;
        filter: brightness(150%)
    }

    75% {
        background-position: right;
        filter: brightness(100%)
    }

    85% {
        background-position: right;
        filter: brightness(200%);
        transform: scaleY(1.2)
    }

    100% {
        background-position: right;
        opacity: 0;
        transform: scaleY(1)
    }
}

#main-about,
#main-services {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.main-title-services,
.services-arrow {
    display: flex;
    align-items: center
}

.main-container-services {
    height: fit-content !important
}

.main-title-services {
    font-size: calc(2rem + 1.5vw);
    position: relative;
    padding: 8.5vh 0 12.5vh;
    margin: 0;
    gap: 10px
}

.services-arrow .go-down {
    position: relative;
    display: block;
    transform: scaleY(0);
    animation: 2s cubic-bezier(.4, 0, .4, .65) infinite both line
}

.services-arrow .go-down:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: .07
}

.main-description-services {
    text-align: center;
    max-width: 90% !important;
    margin-bottom: 0;
    position: relative;
    display: inline-block
}

.main-description-services::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, #fff 50%, rgba(255, 255, 255, 0) 75%);
    background-size: 300% 100%;
    background-position: right;
    animation: 6s ease-in-out infinite underlineAnimate
}

.main-sub-description-services {
    color: rgba(255, 255, 255, .69);
    padding-top: 2rem
}

.main-sub-description-services i {
    font-weight: bolder;
    letter-spacing: 1px
}

#services-spline-viewer spline-viewer {
    width: 100%;
    height: 70vh;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    opacity: 0;
    animation: 2s ease-in forwards fadeIn
}

.services p {
    color: rgba(255, 255, 255, .69)
}

.services-c {
    padding-bottom: 7.5vh
}

.services-title {
    padding-bottom: 10%
}

.services .row {
    padding-bottom: 2rem
}

.web-design-img {
    opacity: 0;
    width: 15vw;
    height: auto
}

.fade-in.visible.rotate-left {
    animation: 3s linear forwards rotateLeft;
    opacity: .75
}

.fade-in.visible.rotate-right {
    animation: 3s linear forwards rotateRight;
    opacity: .75
}

.main-container-about {
    height: fit-content !important;
    max-width: 1000% !important
}

.big-device-spline {
    display: block
}

#about-spline spline-viewer {
    width: 100%;
    height: 90vh
}

.main-title-about {
    font-size: calc(.75rem + 1.5vw);
    font-weight: 900
}

.about-p-1,
.about-p-2 {
    text-align: justify;
    line-height: 1.7
}

.citation-about {
    font-size: 1.65rem;
    letter-spacing: 1.5px
}

.about-arrow {
    display: flex;
    align-items: center;
    transform: translateX(50%)
}

.about-arrow .go-down {
    position: relative;
    width: 2px;
    height: 100px;
    background-color: #fff;
    display: block;
    transform: scaleY(0);
    animation: 2s cubic-bezier(.4, 0, .4, .65) infinite both line
}

.about-arrow .go-down:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100px;
    background-color: #fff;
    transform: translateX(-50%);
    opacity: .07
}

.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 999
}

.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .2);
    z-index: 1000;
    text-align: center;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: popupAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes popupAppear {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.popup-icon {
    margin-bottom: 10px
}

.popup-icon svg {
    fill: #000
}

.popup-text {
    color: #333;
    font-size: 16px
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: 0 0;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color .2s
}

.close-button:hover {
    background-color: #f0f0f0
}

@media (max-width:992px) {
    #main-services {
        height: calc(var(--vh) * 100);
        margin-bottom: 10vh
    }

    #services-spline-viewer spline-viewer {
        transform: scale(.7);
        opacity: 1;
        animation: none
    }

    .main-title-services {
        padding-top: calc(22.5vh + (100vh - (var(--vh) * 100)));
        padding-bottom: 2rem
    }

    .big-device-spline,
    .main-sub-description-services {
        display: none
    }

    .services-title {
        padding-bottom: 5vh
    }

    .web-design-img {
        width: 50vw;
        padding-bottom: 2.5vh
    }

    #main-about {
        height: calc(var(--vh) * 100)
    }

    .main-title-about {
        font-size: calc(.75rem + 2.5vw)
    }

    #about-spline spline-viewer {
        height: 70vh;
        width: 100%
    }

    .small-device-spline {
        display: block
    }

    .cta-button-about-us:hover:after,
    .cta-button-about-us:hover:before,
    .cta-button:hover:after,
    .cta-button:hover:before {
        animation: none;
        background-image: none
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 90%;
    max-width: fit-content;
    margin: 2rem auto;
    background: rgba(28, 28, 30, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    z-index: 9999;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 0;
    display: none;
    opacity: 0;
    will-change: transform, opacity
}

.cookie-consent.show {
    display: block;
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

.cookie-content {
    padding: 2rem;
    color: #fff
}

.cookie-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem
}

.title-container {
    display: flex;
    align-items: center;
    gap: 12px
}

.title-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(90deg, #fff, #a8a8a8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
}

.cookie-icon {
    width: 28px;
    height: 28px;
    opacity: .9
}

.cookie-body {
    color: #a8a8a8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-right: 1rem
}

.cookie-link {
    color: #2997ff;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s
}

.cookie-btn {
    cursor: pointer;
    overflow: hidden;
    transition: .3s
}

.cookie-link:hover {
    color: #147ce5;
    text-decoration: none
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative
}

.decline-btn {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px)
}

.decline-btn:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-1px)
}

.accept-btn {
    background: #0066cc;
    color: #fff
}

.accept-btn:hover {
    background: #004d99;
    transform: translateY(-1px)
}

@media (max-width:768px) {
    .cookie-consent {
        width: calc(100% - 2rem);
        margin: 1rem;
        left: 0;
        transform: translateY(100%);
        border-radius: 20px;
    }

    .cookie-consent.show {
        animation: none;
        transform: translateY(0);
        opacity: 1
    }

    .cookie-content {
        padding: 1.5rem
    }

    .cookie-buttons {
        flex-direction: column-reverse;
        gap: .75rem
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px
    }

    .title-container h3 {
        font-size: 1.25rem
    }

    .cookie-body {
        font-size: .95rem;
        margin-bottom: 1.5rem;
        padding-right: 0
    }
}

@media (prefers-color-scheme:dark) {
    .cookie-consent {
        background: rgba(28, 28, 30, .95)
    }
}

.cookie-body::-webkit-scrollbar {
    width: 8px
}

.cookie-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .1);
    border-radius: 4px
}

.cookie-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 4px
}

.cookie-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
    opacity: 0;
    transition: opacity .3s
}

.cookie-btn:hover::after {
    opacity: 1
}

.page-body {
    padding-top: 0;
}

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

.section-padding {
    padding: 5rem 0;
}

@media (max-width:767px) {
    .section-padding {
        padding: 2.3rem 0;
    }

    .page-body {
        padding-top: 0;
    }
}

@media (max-width:575px) {
    .section-padding {
        padding: 2rem 0;
    }
}

.hero-section {
    background: radial-gradient(circle at top right, rgba(13, 110, 253, .25), rgba(0, 0, 0, .9));
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 7rem 0 3.5rem;
    contain: layout;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: flex-start;
    min-height: 500px;
    /* Reserve space */
}

@media (min-width:992px) {
    .hero-section {
        padding-top: 10vh;
    }
}

@media (min-width:992px) {
    .home-hero .hero-grid {
        grid-template-columns: 1.35fr .9fr;
    }
}

.home-hero {
    align-items: flex-start;
}

@media (min-width:992px) {
    .home-hero {
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 4rem;
    }
}

@media (min-width:992px) and (max-width:1440px) {

    .home-hero .hero-copy h1,
    .service-hero .service-hero-copy h1,
    .about-intro .about-intro-copy h1,
    .articles-hero .hero-copy h1,
    .contact-intro .contact-hero-copy h1 {
        font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    }

    .home-hero .hero-grid {
        align-items: center;
    }

    .home-hero .hero-aside .aside-card:not(.custom-build-card) {
        display: none;
    }

    .home-hero .hero-badge {
        display: none;
    }

    .home-page .section-title {
        font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    }

    .home-page .section-lead {
        font-size: .96rem;
    }

    .home-page .service-card h3,
    .home-page .article-card h3 {
        font-size: 1.05rem;
    }

    .home-page .service-card p,
    .home-page .article-card p {
        font-size: .95rem;
    }
}

@media (min-width:1441px) {
    .home-hero .hero-grid {
        align-items: center;
    }

    .home-hero .hero-copy h1,
    .service-hero .service-hero-copy h1,
    .about-intro .about-intro-copy h1,
    .articles-hero .hero-copy h1,
    .contact-intro .contact-hero-copy h1 {
        font-size: clamp(2.2rem, 2.8vw, 3rem);
    }
}

@media (min-width:768px) and (max-width:991px) {
    .home-hero {
        min-height: 100svh;
        padding: 5.5rem 0 2.5rem;
    }

    .home-hero .hero-grid {
        align-items: center;
        min-height: calc(100svh - 8rem);
    }

    .home-hero .hero-actions a {
        font-size: .95rem;
        padding: .85rem 1.6rem;
    }

    .home-hero .hero-aside .aside-card:not(.custom-build-card) {
        display: none;
    }

    .home-hero .hero-badge {
        display: none;
    }
}

@media (max-width:991px) {
    .hero-section {
        min-height: 100vh;
        padding: 5rem 0 3rem;
        align-items: flex-start;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 800px;
        contain: layout;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-copy p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-aside {
        align-items: center;
        width: 100%;
    }

    .hero-aside .aside-card {
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width:767px) {
    .hero-section {
        padding: 4.5rem 0 2.5rem;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-grid {
        gap: 1.5rem;
    }

    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-copy p {
        font-size: .95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        margin-bottom: 1rem;
        font-size: .75rem;
    }

    .hero-aside {
        gap: 1rem;
        width: 100%;
    }
}

@media (max-width:575px) {
    .hero-section {
        padding: 4.5rem 0 2.5rem;
    }

    .hero-copy h1 {
        font-size: 1.65rem;
    }

    .hero-copy p {
        font-size: .9rem;
    }

    .home-hero .hero-copy {
        gap: 1rem;
        text-align: center;
        align-items: flex-start;
    }

    .home-hero .hero-copy p {
        text-align: left;
    }

    .home-hero .hero-actions {
        margin: 1.2rem 0 1rem;
    }

    .hero-aside .aside-card {
        padding: 1.6rem;
    }

    .home-hero .hero-aside {
        align-items: center;
    }

    .home-hero .hero-aside .aside-card {
        max-width: 100%;
        font-size: .95rem;
        line-height: 1.6;
    }

    .home-hero .hero-aside h2 {
        font-size: 1.2rem;
    }

    .home-hero .hero-aside ul {
        padding-left: 1.1rem;
    }

    .hero-actions {
        gap: .75rem;
    }

    .hero-actions a {
        font-size: .95rem;
        padding: .85rem 1.25rem;
    }

    .hero-metrics {
        gap: .65rem;
        margin: 1rem 0;
        font-size: .9rem;
    }

    .hero-metrics li {
        padding: .8rem .9rem;
    }
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    justify-content: center;
}

@media (min-width:992px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-primary {
    padding: .95rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(13, 110, 253, .35);
    background-color: #fff !important;
    color: #000 !important;
}

.hero-primary * {
    color: #000 !important;
}

@media (max-width: 575px) {
    .main-button.hero-primary {
        padding: 1rem 1.2rem;
        height: auto;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
        width: 100%;
        display: inline-block;
        font-size: 0.95rem;
    }
}

.hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    flex-direction: row-reverse;
    margin: 0 !important;
    background-color: transparent;
}

.hero-secondary:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: rgba(13, 110, 253, .08);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
    font-size: .95rem;
}

.hero-metrics li {
    background: rgba(255, 255, 255, .06);
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
}

.hero-metrics strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1.2;
    color: #0d6efd;
}

@media (max-width:767px) {
    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:575px) {
    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, .75);
}

.hero-contact-label {
    font-weight: 600;
    color: #fff;
}

.hero-contact-label .hero-contact-despre {
    display: inline;
}

.hero-contact-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.hero-contact-link:hover {
    text-decoration: underline;
}

.hero-contact-sep {
    opacity: .6;
}

.hero-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

@media (min-width:768px) and (max-width:991px) {
    .hero-aside {
        justify-content: center !important;
        align-items: center;
    }
}

.hero-aside .aside-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1.75rem;
    padding: 2rem 2.4rem;
    max-width: 420px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.article-feature-media {
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 1.1rem;
}

.article-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-build-card {
    font-family: "Inter", "Instrument Sans", sans-serif;
    background: linear-gradient(145deg, rgba(5, 5, 8, .95), rgba(9, 9, 18, .9));
    border: 1px solid rgba(255, 255, 255, .14);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.custom-build-card::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;
    width: 45%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
    opacity: .25;
    transform: rotate(25deg) translateX(-120%);
    animation: customBuildShine 6s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.custom-build-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, .08), transparent);
    z-index: -2;
    pointer-events: none;
}

.custom-build-card h2 {
    font-size: 1.5rem;
    line-height: 1.35;
    margin-bottom: 1rem;
    color: #fff;
}

.custom-build-card .article-tag {
    margin-bottom: .8rem;
}

.custom-build-card p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    font-size: 1rem;
}

.custom-build-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.6rem;
    border-radius: .75rem;
    background: #fff;
    color: #050505;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s ease;
    margin-left: auto;
    margin-right: auto;
}

.custom-build-cta:hover {
    opacity: .9;
}

.custom-build-card small {
    display: block;
    margin-top: .75rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
}

@media (max-width:991px) {
    .hero-aside {
        align-items: center;
    }

    .custom-build-card {
        max-width: 100%;
    }
}

.categories-block {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 2.5rem;
}

.categories-section {
    max-width: 1100px;
    margin: auto;
}

.categories-lead {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2.5rem;
}

.popular-section {
    margin-top: 1rem;
}

.popular-container {
    max-width: 1200px;
}

.popular-lead {
    max-width: 820px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2.5rem;
}

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

@media (min-width: 768px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .popular-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popular-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.8rem;
    padding: 1.5rem;
    gap: 1rem;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    height: 100%;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, .45);
    border-color: rgba(255, 255, 255, .2);
}

.popular-thumb {
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.popular-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-body {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

.popular-body p:last-of-type {
    flex-grow: 1;
}

.popular-body .article-cta {
    margin-top: auto;
    align-self: flex-start;
}

.popular-body h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.articles-cta .cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.articles-cta .cta-card p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .78);
}

.articles-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.article-hover-card {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(15, 23, 42, .4);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    background-image: linear-gradient(145deg, rgba(255, 255, 255, .03), transparent);
    position: relative;
    overflow: hidden;
}

.article-hover-card::before,
.article-hover-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .35s ease;
}

.article-hover-card::before {
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), transparent);
}

.article-hover-card::after {
    top: -60%;
    left: -40%;
    width: 45%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
    transform: rotate(25deg) translateX(-120%);
}

.article-hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .45);
    border-color: rgba(255, 255, 255, .25);
}

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

.article-hover-card:hover::after {
    opacity: 1;
    animation: customBuildShine 6s ease-in-out infinite;
}

.hero-aside h2 {
    font-size: 1.45rem;
    margin-bottom: 1.2rem;
}

.hero-aside ul {
    padding-left: 1.1rem;
    margin-bottom: 1.4rem;
    line-height: 1.6;
    font-size: .95rem;
}

.hero-aside li {
    margin-bottom: .5rem;
}

.hero-aside .aside-note {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.light-section {
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    backdrop-filter: blur(20px);
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-lead {
    max-width: 880px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2.5rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:1199px) {
    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:767px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect - Glow & Lift */
.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4),
        0 0 0 1px rgba(255, 255, 255, .1) inset;
}

/* Subtle gradient top border on hover based on type (optional advanced touch) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card-intro h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    white-space: nowrap;
    /* Force single line */
}

.service-card-intro h3 svg,
.service-card-intro h3 img {
    min-width: 32px;
    /* Prevent icon shrinking */
    height: 32px;
    object-fit: contain;
    margin-right: 0.75rem !important;
    /* Adjust spacing */
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    opacity: 0.95;
}

.service-card-intro h3 i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.service-link-arrow {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.service-link-arrow i {
    transition: transform 0.2s ease;
}

.service-link-arrow:hover {
    color: #0d6efd;
    border-bottom-color: rgba(13, 110, 253, 0.3);
}

.service-link-arrow:hover i {
    transform: translateX(5px);
}

.service-card ul {
    padding-left: 1.2rem;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card li {
    margin-bottom: .3rem;
}

.card-link {
    margin-top: auto;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid .benefit-card:nth-child(3) {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 420px;
        width: 100%;
    }
}

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

    .benefits-grid .benefit-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }
}

.benefit-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, .2), rgba(0, 0, 0, .8));
    border: 1px solid rgba(13, 110, 253, .25);
    box-shadow: 0 12px 30px rgba(13, 110, 253, .2);
}

@media (max-width:575px) {
    .benefit-card {
        padding: 1.6rem;
    }
}

.benefit-card h3 {
    margin-bottom: .75rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

@media (max-width:1199px) {
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:767px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.4);
    box-shadow: 0 10px 30px -10px rgba(13, 110, 253, 0.15);
}

/* Staggered Animation Delays */
.process-step.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step.fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.process-index {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

@media (max-width:575px) {
    .process-step {
        padding: 1.4rem;
        text-align: center;
    }

    .process-index {
        margin: 0 auto 1rem;
    }
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:1199px) {
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-grid .case-item:nth-child(3) {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 540px;
        width: 100%;
    }
}

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

    .case-grid .case-item:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }
}

.case-item {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(13, 110, 253, .18);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    height: 100%;
    justify-content: space-between;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.case-logo {
    flex-shrink: 0;
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.case-item:hover .case-logo {
    opacity: 1;
}

.case-title {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
}

.case-footer {
    margin-top: auto;
    padding-top: 0.5rem;
}

.case-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.case-cta:hover {
    background: #0d6efd;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
}

.input-icon {
    font-size: 1.1em;
    transform: translateY(1px);
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tech-tag {
    font-size: 0.75rem;
    /* Smaller font */
    padding: 0.25rem 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    /* Lighter background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* More subtle border */
    border-radius: 30px;
    /* Full pill shape */
    color: rgba(255, 255, 255, 0.6);
    /* Softer text color */
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Staggered Animation for Case Items */
.case-item.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.case-item.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.case-item.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

/* Staggered Animations for Services */
.service-card.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

/* Staggered Animations for Benefits */
.benefit-card.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.benefit-card.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.benefit-card.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

/* Staggered Animations for Testimonials */
.testimonial-card.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-card.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonial-card.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

/* Staggered Animations for Trust Stats (targeting parent cols) */
.col-6:nth-child(1) .stat-card.fade-in {
    transition-delay: 0.1s;
}

.col-6:nth-child(2) .stat-card.fade-in {
    transition-delay: 0.2s;
}

.col-6:nth-child(3) .stat-card.fade-in {
    transition-delay: 0.3s;
}

.col-6:nth-child(4) .stat-card.fade-in {
    transition-delay: 0.4s;
}

/* Staggered Animations for FAQ */
.faq-item.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.faq-item.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.faq-item.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.faq-item.fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.faq-item.fade-in:nth-child(5) {
    transition-delay: 0.5s;
}

.faq-item.fade-in:nth-child(even) {
    transition-delay: 0.15s;
}

/* Fallback for long lists */
@media (max-width:575px) {
    .case-grid {
        gap: 1.1rem;
    }

    .case-item {
        padding: 1.6rem;
        gap: .85rem;
    }
}

.case-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, .18), transparent 55%);
    opacity: 0;
    transform: translateY(15%);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .45);
    border-color: rgba(13, 110, 253, .35);
}

.case-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.case-title {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width:575px) {
    .case-title {
        flex-direction: column;
        align-items: flex-start;
        gap: .4rem;
    }
}

.case-title-text {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    padding-bottom: .35rem;
    position: relative;
}

.case-title-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(13, 110, 253, .85), transparent);
    opacity: .4;
}

.case-link-arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: transform .3s ease, background .3s ease, color .3s ease, border .3s ease, box-shadow .3s ease;
}

.case-link-arrow:hover,
.case-link-arrow:focus-visible {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
    transform: translateX(6px) rotate(-10deg);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .15);
    animation: caseArrowPulse 1.5s ease infinite;
}

.case-link-arrow span {
    display: inline-block;
    line-height: 1;
}

.case-link-arrow:focus-visible {
    outline: none;
}

.case-cta {
    margin-top: 2rem;
    text-align: center;
}

.testimonial-section {
    max-width: 1060px;
    margin: 0 auto;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:991px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-list .testimonial-card:nth-child(3) {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 520px;
        width: 100%;
    }
}

@media (max-width:575px) {
    .testimonial-list {
        grid-template-columns: 1fr;
    }

    .testimonial-list .testimonial-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }
}

.testimonial-google-link {
    margin-top: 2rem;
    text-align: center;
}

.testimonial-google-link a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: rgba(13, 110, 253, .08);
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.testimonial-google-link a::after {
    content: "↗";
    font-size: 1.1rem;
}

.testimonial-google-link a:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: rgba(13, 110, 253, .16);
}

.testimonial-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    height: 100%;
}

.testimonial-card-lead {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width:575px) {
    .testimonial-card {
        padding: 1.6rem;
    }

    .testimonial-card-lead {
        flex-direction: column;
        align-items: flex-start;
        gap: .7rem;
    }
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-card-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.testimonial-stars {
    color: #f6c343;
    font-size: 1rem;
    line-height: 1;
}

.testimonial-stars span {
    letter-spacing: .15rem;
}

.testimonial-name {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.testimonial-role {
    margin: 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
}

.testimonial-card blockquote {
    margin: 0;
    font-style: italic;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
}

.testimonial-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-service-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #0d6efd;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.testimonial-service-link:hover {
    border-color: #0d6efd;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width:991px) {
    .testimonial-service-link {
        align-self: center;
    }
}

.testimonial-service-link:hover::before {
    width: 100%;
}

.testimonial-service-link:hover {
    color: #3d8bfd;
}

.testimonial-service-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.testimonial-service-link:hover::after {
    transform: translateX(3px);
}

.testimonial-card figcaption {
    font-size: .95rem;
    color: rgba(255, 255, 255, .65);
}

.wedding-app-promo {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
    border-radius: 2rem;
    padding: 3rem;
    background: linear-gradient(120deg, rgba(15, 15, 30, .9), rgba(13, 110, 253, .08));
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 35px 70px rgba(0, 0, 0, .45);
}

.wedding-app-promo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 160px 160px;
    opacity: .3;
    animation: confettiDrift 12s linear infinite;
    pointer-events: none;
}

@media (max-width:991px) {
    .wedding-app-promo {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
}

@media (max-width:575px) {
    .wedding-app-promo {
        padding: 1.45rem;
        border-radius: 1.4rem;
        gap: 1.4rem;
    }

    .wedding-app-content {
        text-align: center;
    }

    .wedding-app-list {
        text-align: left;
        justify-items: start;
    }

    .wedding-app-actions {
        max-width: none;
        align-items: center;
        gap: .7rem;
        margin-bottom: .8rem;
    }

    .wedding-app-note {
        text-align: center;
    }
}

.wedding-app-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.wedding-app-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: weddingBadgePulse 3.2s ease-in-out infinite;
    will-change: transform, opacity;
}

.wedding-app-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: translateX(-100%);
    animation: weddingBadgeSheen 3.2s ease-in-out infinite;
}

.wedding-problem-solution {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 1rem;
}

.wedding-app-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.5rem;
}

.wedding-app-list-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .65);
    margin-bottom: .6rem;
}

.wedding-app-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: .65rem;
    font-size: .97rem;
    color: rgba(255, 255, 255, .75);
}

.wedding-app-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    opacity: 0;
    transform: translateY(15px);
    animation: weddingInviteEnter .75s ease forwards;
}

.wedding-app-list li:nth-child(1) {
    animation-delay: .1s;
}

.wedding-app-list li:nth-child(2) {
    animation-delay: .2s;
}

.wedding-app-list li:nth-child(3) {
    animation-delay: .3s;
}

.wedding-app-list li:nth-child(4) {
    animation-delay: .4s;
}

.wedding-app-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d6efd;
    margin-top: .5rem;
    flex-shrink: 0;
}

.wedding-app-actions {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 1.2rem;
    max-width: 420px;
}

@media (min-width:768px) {
    .wedding-app-actions {
        flex-direction: row;
    }
}

.wedding-primary-button {
    background: linear-gradient(135deg, #6b5bff, #9f84ff) !important;
    color: #050505 !important;
    box-shadow: 0 18px 35px rgba(111, 81, 255, .35);
    border: none !important;
}

.wedding-primary-button:hover {
    filter: brightness(1.05);
}

.wedding-secondary-button {
    border-color: rgba(255, 255, 255, .4) !important;
}

.wedding-app-note {
    margin: 0;
    font-size: .95rem;
    color: rgba(255, 255, 255, .65);
}

.wedding-app-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 3.5rem;
}

.wedding-app-card,
.wedding-visual-demo {
    width: 100%;
    max-width: 500px;
}

.wedding-app-illustration {
    max-width: 320px;
    align-self: flex-end;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, .45));
    border-radius: 1.2rem;
    mix-blend-mode: screen;
    opacity: .9;
}

.wedding-app-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
    margin-left: auto;
}

.wedding-app-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    border-radius: .75rem;
    background: rgba(13, 110, 253, .15);
    color: #0d6efd;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .8rem;
    animation: badgeGlow 2.4s ease-in-out infinite;
    will-change: transform, opacity;
}

.wedding-app-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-flex;
    animation: statusDotPulse 1.6s ease-in-out infinite;
}

.wedding-app-card h3 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
}

.wedding-app-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.wedding-app-card li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    justify-content: space-between;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .9rem;
    padding: .9rem 1rem;
    opacity: 0;
    transform: translateY(18px);
    animation: weddingInviteEnter .7s ease forwards;
}

.wedding-app-card li:nth-child(1) {
    animation-delay: .2s;
}

.wedding-app-card li:nth-child(2) {
    animation-delay: .35s;
}

.wedding-app-card li:nth-child(3) {
    animation-delay: .5s;
}

.wedding-app-card li:nth-child(4) {
    animation-delay: .65s;
}

.wedding-app-card li div {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.wedding-app-card li span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
}

.wedding-status {
    font-size: .85rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wedding-status.success {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.wedding-status.pending {
    background: rgba(234, 179, 8, .15);
    color: #facc15;
}

.wedding-status.declined {
    background: rgba(239, 68, 68, .15);
    color: #ef4444;
}

.wedding-status:hover {
    animation: statusPulse 1.2s ease infinite;
}

.wedding-app-summary {
    margin-top: 1.4rem;
    font-size: .95rem;
    color: rgba(255, 255, 255, .75);
    text-align: center;
}

.wedding-app-proof {
    position: absolute;
    right: -18px;
    bottom: -18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    padding: 1rem 1.4rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.wedding-app-proof p {
    margin: 0;
    font-size: .9rem;
    color: #fff;
    text-align: center;
}

.wedding-visual-demo {
    margin-top: 1.2rem;
    align-self: flex-end;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .45rem;
    padding: .85rem 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.wedding-visual-demo::after {
    content: "↗";
    font-size: 1rem;
}

.wedding-visual-demo:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    background: rgba(13, 110, 253, .15);
}

@media (max-width:991px) {
    .wedding-app-visual {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .wedding-app-card,
    .wedding-app-illustration,
    .wedding-visual-demo {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
    }

    .wedding-app-card {
        margin-left: 0;
    }
}

@keyframes weddingInviteEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeGlow {

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

    50% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1.02);
    }
}

@keyframes statusDotPulse {

    0%,
    100% {
        transform: scale(.9);
        opacity: .6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 currentColor;
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes confettiDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 160px 160px;
    }
}

@keyframes weddingBadgePulse {

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

    50% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1.02);
    }
}

@keyframes weddingBadgeSheen {
    0% {
        transform: translateX(-120%);
    }

    50% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.25rem;
    padding: 1.2rem 1.6rem;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.05rem;
    list-style: none;
}

.faq-item[open] {
    background: rgba(255, 255, 255, .08);
}

.faq-answer {
    margin-top: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.faq-item.is-hidden {
    display: none;
}

.faq-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.faq-toggle-button {
    border: none;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.faq-toggle-button:focus-visible {
    outline: 2px solid rgba(13, 110, 253, .6);
    outline-offset: 4px;
}

.cta-section {
    background: linear-gradient(135deg, rgba(13, 110, 253, .25), rgba(0, 0, 0, .85));
    border-top: 1px solid rgba(13, 110, 253, .25);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (max-width:767px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
}

.hero-primary,
.cta-container .main-button {
    background: #0d6efd;
    color: #fff;
    border: none;
}

.hero-primary:hover,
.cta-container .main-button:hover {
    background: #0b5ed7;
    color: #fff;
}

.hero-secondary::after {
    content: "←";
    font-size: 1rem;
}

.no-arrow::after {
    content: none !important;
}

.hero-secondary-right {
    flex-direction: row;
}

.hero-secondary-right::after {
    content: none;
}

.article-back-button {
    margin-bottom: 0 !important;
    flex-direction: row !important;
}

.article-back-button::after {
    content: none !important;
    display: none !important;
}

.technologies-strip {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.articles-hero {
    background: linear-gradient(120deg, rgba(13, 110, 253, .15), rgba(0, 0, 0, .88));
    border-bottom: 1px solid rgba(13, 110, 253, .2);
}

.articles-hero .hero-copy {
    max-width: 820px;
    width: 100%;
}

@media (max-width:991px) {
    .articles-hero {
        min-height: 100svh;
        align-items: center;
        padding: 5rem 0 2.6rem;
    }

    .articles-hero .hero-copy {
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-top: 0.8rem;
    }

    .articles-hero .hero-copy p {
        text-align: left;
    }
}

.articles-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
}

@media (max-width:991px) {
    .articles-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width:992px) {
    .articles-hero {
        align-items: center;
    }

    .articles-hero-grid {
        align-items: center;
    }

    .articles-hero .hero-grid {
        align-items: center;
    }

    .articles-hero .hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.blog-feature-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 2rem;
    padding: 2.4rem;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .4);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.blog-feature-card h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.2;
}

.blog-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blog-feature-media {
    margin: 1rem 0;
    border-radius: 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .05);
}

.blog-feature-media img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-feature-card p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.blog-feature-cta {
    align-self: flex-start;
    padding: 1rem 2.6rem;
    border-radius: 999px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-sidebar-block {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.6rem;
    padding: 1.6rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .35);
}

.blog-sidebar-block h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.blog-sidebar-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.blog-sidebar-block a {
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
}

.blog-sidebar-block a:hover {
    color: #0d8bff;
}

.blog-sidebar-block li+li {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: .7rem;
}

@media (max-width:1199px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
    }

    .blog-feature-card,
    .blog-sidebar-block {
        padding: 2rem;
    }
}

@media (max-width:575px) {
    .blog-feature-card {
        padding: 1.6rem;
    }

    .blog-feature-meta {
        flex-direction: column;
    }
}

.articles-section .section-title {
    margin-bottom: 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

@media (max-width:1199px) {
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.article-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.6rem;
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.article-card h3 {
    margin: 0;
}

.article-link {
    color: #fff;
    text-decoration: none;
}

.article-link:hover {
    color: #0d8bff;
}

.article-card p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.article-card-content {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

.article-card .article-summary {
    flex-grow: 1;
}

.article-card .article-cta {
    margin-top: auto;
    align-self: flex-start;
}

.articles-grid-row>.col {
    display: flex;
}

.articles-grid-row>.col>.article-card {
    width: 100%;
}

.article-meta {
    display: flex;
    gap: 1.2rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:1199px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.category-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.6rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    height: 100%;
}

.category-card h3 {
    margin: 0;
    min-height: 3.2rem;
    display: flex;
    align-items: flex-end;
}

.category-card p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.category-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    padding: .55rem 1.2rem;
    border: 1px solid rgba(13, 110, 253, .4);
    border-radius: .95rem;
    background: rgba(13, 110, 253, .12);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.category-link::after {
    content: "→";
    font-size: .95rem;
    transition: transform .25s ease;
}

.category-link:hover {
    background: rgba(13, 110, 253, .22);
    border-color: #0d6efd;
    color: #fff;
}

.category-link:hover::after {
    transform: translateX(4px);
}

.articles-subscribe {
    background: linear-gradient(135deg, rgba(13, 110, 253, .2), rgba(0, 0, 0, .88));
    border-top: 1px solid rgba(13, 110, 253, .25);
}

.subscribe-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.7rem;
    padding: 2.4rem;
}

@media (max-width:991px) {
    .subscribe-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

.subscribe-card p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
}

@media (max-width:575px) {
    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }
}

.subscribe-form input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    padding: .9rem 1.1rem;
    color: #fff;
    min-width: 260px;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.subscribe-form button {
    padding: .9rem 2.4rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:1199px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:767px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    /* Lighter than darker section background */
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to top */
    align-items: center;
    text-align: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    min-height: 3.5rem;
    /* Reserve space for 2 lines if needed, implies alignment */
    display: flex;
    align-items: center;
}

.benefit-card p {
    color: rgba(255, 255, 255, .8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Remove unused overlay classes */
.benefit-overlay,
.benefit-content {
    display: none;
}

.benefit-card h3 svg,
.benefit-card h3 img {
    min-width: 40px;
    object-fit: contain;
}

.service-detail-card ul {
    padding-left: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55;
    font-size: .95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

@media (max-width:1199px) {
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.value-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.8rem;
}

.value-card h3 {
    margin-bottom: .8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width:1199px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.team-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.team-role {
    margin: 0;
    color: rgba(13, 110, 253, .8);
    font-weight: 600;
}

.team-note {
    text-align: center;
    color: rgba(255, 255, 255, .7);
    margin-top: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

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

.partners-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, .45), rgba(0, 0, 0, .85));
}

.case-highlights {
    padding-left: 1.1rem;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
    font-size: .95rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

@media (max-width:1199px) {
    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.industry-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.4rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.industry-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (max-width:991px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    color: #0d6efd;
}

.contact-links a {
    color: #0d6efd;
    text-decoration: none;
}

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

.contact-note {
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    margin: 0;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

@media (max-width:575px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (min-width:992px) {
    .contact-form-wrapper {
        padding-bottom: 2rem;
    }
}

.service-hero {
    background: linear-gradient(135deg, rgba(13, 110, 253, .12), rgba(0, 0, 0, .9));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.service-hero-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-hero-copy {
    max-width: 720px;
}

@media (max-width:991px) {
    .service-hero-wrapper {
        flex-direction: column;
    }
}

.service-hero-copy h1 {
    font-size: clamp(2.2rem, 3.3vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.service-hero-copy p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .78);
}

.service-hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}

.service-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0;
    display: grid;
    gap: .8rem;
    color: rgba(255, 255, 255, .75);
}

.service-hero-note {
    flex: 0 0 360px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1.75rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.service-hero-note h2 {
    font-size: 1.2rem;
    margin: 0;
}

.service-hero-note p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.service-hero-proof {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}

.service-hero-proof li {
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    padding-left: 1.4rem;
}

.service-hero-proof li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 1.2rem;
    line-height: 1;
}

@media (min-width:992px) {
    .service-hero .service-hero-copy p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .service-hero .service-hero-highlights {
        font-size: .95rem;
        line-height: 1.55;
    }

    .service-hero .service-hero-note p {
        font-size: .95rem;
        line-height: 1.55;
    }

    .service-hero .service-hero-proof {
        font-size: .95rem;
    }
}

@media (min-width:992px) {
    .services-page .section-title {
        font-size: clamp(1.9rem, 2.4vw, 2.35rem);
    }

    .services-page .section-lead {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 880px;
    }

    .services-page h2 {
        font-size: clamp(1.6rem, 2vw, 2rem);
        line-height: 1.22;
    }
}

.service-pillars .pillar-card h3 {
    margin-bottom: .4rem;
}

@media (min-width:992px) {
    .service-pillars .pillar-card h3 {
        font-size: 1.15rem;
        line-height: 1.28;
    }

    .service-pillars .pillar-card p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .service-pillars .pillar-card ul {
        font-size: .95rem;
        line-height: 1.55;
    }

    .digital-benefits .benefit-item h3 {
        font-size: 1.15rem;
        line-height: 1.28;
    }

    .digital-benefits .benefit-item p {
        font-size: .96rem;
        line-height: 1.55;
    }

    .capability-modules .module-card h3 {
        font-size: 1.12rem;
        line-height: 1.28;
    }

    .capability-modules .module-card p {
        font-size: .94rem;
        line-height: 1.5;
    }

    .engagement-model .engagement-step h3 {
        font-size: 1.12rem;
        line-height: 1.26;
    }

    .engagement-model .engagement-step p {
        font-size: .94rem;
        line-height: 1.5;
    }
}

@media (max-width:991px) {
    .service-hero {
        min-height: 100svh;
        padding: 5rem 0 2.6rem;
        align-items: center;
    }

    .service-hero-wrapper {
        gap: 2rem;
        margin-top: 2rem;
    }

    .service-hero-note {
        width: 100%;
    }
}

@media (max-width:575px) {
    .service-hero {
        min-height: 100svh;
        padding: 5rem 0 2.6rem;
    }

    .service-hero-wrapper {
        gap: 1.5rem;
    }

    .service-hero-copy {
        gap: 1rem;
        text-align: center;
    }

    .service-hero-highlights {
        text-align: left;
        gap: .65rem;
        margin: 1.2rem 0;
        font-size: .98rem;
    }

    .service-hero-note {
        padding: 1.6rem;
        align-items: flex-start;
        gap: .9rem;
        width: 100%;
        max-width: 520px;
    }

    .service-hero-proof {
        width: 100%;
    }

    .service-hero-proof li {
        font-size: .95rem;
    }
}

.note-author {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:991px) {
    .pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:768px) and (max-width:991px) {
    .pillar-grid .pillar-card:nth-child(3) {
        grid-column: 1 / span 2;
        max-width: 70%;
        margin: 0 auto;
    }
}

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

.pillar-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-5px);
    border-color: rgba(64, 221, 255, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.pillar-icon {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    color: #40ddff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 0;
}

.pillar-card:hover .pillar-icon {
    background: transparent;
    color: #fff;
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: none;
}

.pillar-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.pillar-card ul {
    padding-left: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.55;
    font-size: .95rem;
}

.digital-benefits {
    background: rgba(0, 0, 0, .92);
}

.benefits-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:991px) {
    .benefits-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:768px) and (max-width:991px) {
    .benefits-matrix .benefit-item:nth-child(3) {
        grid-column: 1 / span 2;
        max-width: 70%;
        margin: 0 auto;
    }
}

@media (max-width:575px) {
    .benefits-matrix {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

@media (max-width:1199px) {
    .module-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width:991px) {
    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.module-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.3rem;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

@media (max-width:1199px) {
    .engagement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.engagement-step {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.engagement-index {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    margin-bottom: .5rem;
}

.pillar-card,
.benefit-item,
.module-card,
.engagement-step {
    transition: padding .3s ease;
}

@media (max-width:575px) {

    .pillar-card,
    .benefit-item,
    .module-card,
    .engagement-step {
        padding: 1.5rem;
    }

    .module-grid {
        gap: 1rem;
    }
}

.about-intro-wrapper {
    /* Legacy wrapper - kept for safety but largely unused now */
    display: flex;
    flex-direction: column;
    gap: 3rem;
}




/* .about-intro-meta removed - controlled via bootstrap classes */

.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

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

.stat-icon-wrapper {
    font-size: 2rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.hero-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1);
    opacity: 1;
}

.featured-stat {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Redefining kicker to match new centered style */
.about-kicker {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.meta-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.meta-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.meta-number {
    line-height: 1;
    min-width: 90px;
    text-align: center;
    text-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
}

.journey-timeline {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.journey-timeline li {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.6rem;
}

@media (max-width:575px) {
    .journey-timeline li {
        grid-template-columns: 1fr;
    }
}

.journey-year {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0d6efd;
    display: block;
    text-align: left;
}

.journey-timeline h3 {
    margin: 0 0 .4rem;
}

.journey-timeline p {
    margin: 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: start;
}

@media (max-width:1199px) {
    .culture-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.culture-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.8rem;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: .75rem;
    height: 100%;
}

.culture-card h3 {
    margin: 0;
    line-height: 1.25;
}

.culture-card p {
    margin: 0;
    align-self: start;
}

.team-leads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:767px) {
    .team-leads-grid {
        grid-template-columns: 1fr;
    }
}

.lead-card {
    display: flex;
    gap: 1.2rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.6rem;
    align-items: center;
}

.lead-card span {
    display: block;
    font-weight: 600;
    color: rgba(13, 110, 253, .8);
    margin-bottom: .3rem;
}

.studio-aside a {
    color: #0d6efd;
    text-decoration: none;
}

/* --- Contact Page Unified Layout --- */

.contact-unified-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #02040a;
    position: relative;
    overflow: hidden;
}

.contact-unified-container .row {
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Background Atmospheric Glows */
.contact-unified-container::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.contact-unified-container::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(13, 253, 165, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
    pointer-events: none;
}


/* Contact Info Section */
.contact-info-section {
    padding-right: 2rem;
}

.contact-main-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-faq-compact {
    margin-top: 1.5rem;
}

.contact-testimonial-compact {
    margin-top: 1.5rem !important;
}

.contact-reach-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.contact-reach-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(13, 110, 253, 0.5);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-reach-item i {
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(13, 110, 253, 0.1));
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-reach-item:hover i {
    background: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
}

.contact-reach-text {
    line-height: 1.2;
}

.contact-reach-text .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-reach-text .value {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

/* FAQ Compact */
.contact-faq-compact {
    margin-bottom: 1rem;
}

/* Laptop-only between-sections - hidden by default */
.laptop-between-sections {
    display: none;
}

.faq-header {
    display: flex;
    align-items: center;
}

.contact-page-faq-wrapper .accordion-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-page-faq-wrapper .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 0;
    box-shadow: none;
}

.contact-page-faq-wrapper .accordion-button:not(.collapsed) {
    color: #0d6efd;
}

.contact-page-faq-wrapper .accordion-body {
    padding: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Testimonial Compact */
.contact-testimonial-compact {
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Form Card */
.glass-form-card {
    background: rgba(18, 22, 35, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.glass-form-card .form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.glass-form-card .form-control {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #ffffff !important;
    caret-color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.glass-form-card .form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
    outline: none;
}

.glass-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Fix for dark autofill background text visibility */
.glass-form-card .form-control:-webkit-autofill,
.glass-form-card .form-control:-webkit-autofill:hover,
.glass-form-card .form-control:-webkit-autofill:focus,
.glass-form-card .form-control:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.25) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Absolute positioned error messages to avoid layout shift */
.glass-form-card .col-lg-6,
.glass-form-card .col-12 {
    position: relative;
    /* Anchor for absolute error msg */
}

.glass-form-card .form-control.is-invalid {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.15) !important;
}

.glass-form-card .error-message {
    color: #ff4d4d;
    font-size: 0.75rem;
    display: none;
    margin-top: 4px;
    margin-bottom: 2px;
    width: 100%;
    pointer-events: none;
}

.glass-form-card .char-counter {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    pointer-events: none !important;
    z-index: 1000 !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    display: block !important;
    visibility: visible !important;
    transition: opacity 0.3s ease, color 0.2s ease !important;
}

/* Rocket Launch Animation */
.rocket-launch {
    color: #4a90e2;
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
}

.rocket-launch.launching {
    animation: rocketLaunch 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }

    20% {
        transform: translateY(-20px) rotate(-5deg) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-200px) rotate(-10deg) scale(1.2);
        opacity: 0.8;
    }

    80% {
        transform: translateY(-500px) rotate(-15deg) scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-800px) rotate(-20deg) scale(0.5);
        opacity: 0;
    }
}

.glass-form-card label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.4rem;
}

.glass-form-card .form-submit {
    height: 56px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    border: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-form-card .form-submit::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: 0.5s;
}

.glass-form-card .form-submit:hover::before {
    left: 100%;
}

.glass-form-card .form-submit:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

/* ============================================
   MAP SECTION - ENHANCED CREATIVE DESIGN
   ============================================ */

.map-section {
    background: linear-gradient(180deg, #02040a 0%, #0a0e1a 50%, #0f1420 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 10;
}

/* Atmospheric Background Effects */
.map-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 253, 165, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Main Grid Layout */
.map-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Panel - Info */
.map-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-info-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Badge */
.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 50px;
    width: fit-content;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0d6efd;
}

.map-badge i {
    font-size: 1rem;
}

/* Titles */
.map-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.map-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Location Card */
.location-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.location-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(13, 110, 253, 0.1));
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 1rem;
    font-size: 1.5rem;
    color: #0d6efd;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-card:hover .location-card-icon {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.location-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.location-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Action Buttons */
.map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.map-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.875rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.map-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.map-action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.map-action-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.map-action-btn span {
    position: relative;
    z-index: 1;
}

.map-action-btn.primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.map-action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

.map-action-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Info Mini Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.info-mini-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.info-mini-card i {
    font-size: 1.5rem;
    color: #0d6efd;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* Transport Detail Card - Merged View */
.transport-detail-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.transport-detail-card .info-label {
    margin-bottom: 0.75rem;
}

.transport-detail-card .info-value {
    /* Use standard font sizes */
}

/* Individual list items with icons */
.transport-detail-card .info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
}

.transport-detail-card .info-item:last-child {
    margin-bottom: 0;
}

.transport-detail-card .info-item i {
    font-size: 1.1rem;
    color: #0d6efd;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-glass-content {
    background: rgba(20, 25, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.modal-backdrop.active .modal-glass-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #fff;
}

.modal-title {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.app-choices-grid {
    display: grid;
    gap: 1rem;
}

.app-choice-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-choice-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(13, 110, 253, 0.5);
}

.app-choice-card i {
    font-size: 1.5rem;
}

.app-choice-card.google i {
    color: #4285F4;
}

.app-choice-card.waze i {
    color: #33CCFF;
}

.app-choice-card.apple i {
    color: #A2AAAD;
}


/* Right Panel - Map Display */
.map-display-panel {
    position: sticky;
    top: 2rem;
}

.map-wrapper {
    position: relative;
    height: 600px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(13, 110, 253, 0.3);
}

/* UI/UX Enhancements & Animations */
@keyframes slideInUpSlow {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-info-panel>* {
    animation: slideInUpSlow 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Star hidden */
}

.map-info-panel>*:nth-child(1) {
    animation-delay: 0.1s;
}

.map-info-panel>*:nth-child(2) {
    animation-delay: 0.2s;
}

.map-info-panel>*:nth-child(3) {
    animation-delay: 0.3s;
}

.map-info-panel>*:nth-child(4) {
    animation-delay: 0.4s;
}

.map-info-panel>*:nth-child(5) {
    animation-delay: 0.5s;
}

/* Enhanced Location Card */
.location-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.location-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Pulse animation for location icon */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.location-card:hover .location-card-icon {
    animation: pulse-soft 2s infinite;
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Enhanced Transport Info */
.transport-info {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(13, 110, 253, 0.02) 100%);
    transition: all 0.3s ease;
}

.transport-info:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

/* Map Wrapper Polish */
.map-wrapper {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-wrapper:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(13, 110, 253, 0.4);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: filter 0.6s ease;
}



/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .map-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-display-panel {
        position: relative;
        top: 0;
    }

    .map-wrapper {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .map-section {
        padding: 4rem 0;
    }

    .map-content-grid {
        gap: 2.5rem;
    }

    .map-info-panel {
        gap: 1.5rem;
    }

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

    .map-wrapper {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .map-section {
        padding: 3rem 0;
    }

    .map-actions {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
    }

    .location-card-icon {
        margin: 0 auto;
    }

    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .map-section {
        padding: 2.5rem 0;
    }

    .map-content-grid {
        gap: 2rem;
    }

    .map-info-panel {
        gap: 1.25rem;
    }

    .map-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .map-section-title {
        font-size: 1.75rem;
    }

    .map-section-subtitle {
        font-size: 0.95rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .location-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .map-action-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .info-mini-card {
        padding: 1rem;
    }

    .transport-info {
        padding: 1.25rem;
    }

    .map-wrapper {
        height: 350px;
        border-radius: 1rem;
    }

    .map-overlay-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}


.contact-form-wrapper .form-title p {
    color: rgba(255, 255, 255, .7);
}

.about-intro {
    background: radial-gradient(circle at 20% 20%, rgba(32, 58, 104, .75), rgba(5, 8, 18, 1));
    background-color: #050812;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-intro-wrapper {
    gap: 3rem;
}

.about-intro-wrapper p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.about-intro-meta .meta-block span {
    color: rgba(255, 255, 255, .7);
}

.about-intro-meta {
    margin-top: 1.5rem;
}

.about-journey {
    background: rgba(255, 255, 255, .03);
}

.culture-section {
    background: rgba(0, 0, 0, .92);
}

.culture-card h3 {
    margin-top: 0;
}

/* Laptop-specific adjustments */
@media (min-width: 992px) and (max-width: 1600px) {
    .about-intro {
        padding: 8rem 0 5rem !important;
    }

    .about-intro h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }


    .about-intro .about-hero-lead {
        margin-bottom: 2rem !important;
    }

    .about-intro .row.mt-2 {
        margin-top: 0 !important;
    }

    .about-intro .hero-stat-card .display-5 {
        font-size: 2.5rem !important;
    }
}

@media (max-width:991px) {
    .about-intro {
        min-height: 100svh;
        padding: 5rem 0 2.6rem;
        align-items: center;
    }

    .about-intro-wrapper {
        gap: 2rem;
    }

    .about-intro-copy h1 {
        text-align: center;
        align-self: center;
    }

    .about-intro-meta {
        width: 100%;
    }
}

@media (max-width:575px) {
    .about-intro {
        padding: 4.5rem 0 2.5rem;
    }

    .about-intro-wrapper {
        gap: 1.5rem;
    }

    .about-intro-copy {
        text-align: center;
    }

    .about-intro-copy p {
        text-align: left;
    }

    .about-intro-meta {
        gap: 1rem;
    }

    .about-intro-meta .meta-block {
        width: 100%;
    }
}

.team-leads-grid .team-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, .4), rgba(0, 0, 0, .85));
}

.studio-life {
    background: rgba(255, 255, 255, .03);
}

.solo-profile-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width:991px) {
    .solo-profile-grid {
        grid-template-columns: 1fr;
    }
}

.solo-profile-main p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.solo-profile-list {
    list-style: disc;
    padding-left: 1.3rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    font-size: .97rem;
}

.solo-profile-aside {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.solo-profile-aside ul {
    list-style: disc;
    padding-left: 1.3rem;
    margin: 0;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    font-size: .97rem;
}

@media (max-width:767px) {
    .solo-profile-grid {
        gap: 1.8rem;
    }

    .solo-profile-main {
        text-align: center;
    }

    .solo-profile-main p {
        text-align: left;
    }

    .solo-profile-list {
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width:575px) {
    .solo-profile-aside {
        padding: 1.5rem;
    }
}

.studio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

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

.studio-list {
    list-style: disc;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    font-size: .97rem;
}

.studio-aside {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.8rem;
}

.studio-aside a {
    color: #0d6efd;
    text-decoration: none;
}

@media (max-width:575px) {
    .studio-grid {
        gap: 1.5rem;
    }

    .studio-aside {
        padding: 1.5rem;
        text-align: center;
    }

    .studio-list {
        padding-left: 1rem;
        text-align: left;
    }
}

.hero-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease;
}

.hero-link:hover {
    color: #0d6efd;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem 1rem;
}

.hero-contact-label {
    font-weight: 600;
    margin-right: .25rem;
}

.hero-contact-sep {
    opacity: .5;
    display: inline-flex;
    align-items: center;
}

@media (max-width:767px) {
    .hero-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: .5rem;
    }

    .hero-contact-label {
        margin-right: 0;
    }

    .hero-contact-label .hero-contact-despre {
        display: none;
    }

    .hero-contact-sep {
        display: none;
    }
}

@media (min-width:768px) {
    .hero-contact-label {
        flex-basis: auto;
    }
}

.cta-container .main-button {
    flex-shrink: 0;
}

@media (max-width:991px) {
    .cta-container .main-button {
        width: 100%;
        max-width: 320px;
    }

    .hero-contact {
        justify-content: center;
    }
}

.legal-hero-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

@media (max-width:991px) {
    .legal-hero-wrapper {
        flex-direction: column;
    }
}

.legal-hero-copy {
    flex: 1;
    max-width: 720px;
}

.legal-hero-copy h1 {
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.legal-hero-copy p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
}

.legal-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

.legal-hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-hero-card h2 {
    margin: 0;
    font-size: 1.5rem;
}

.legal-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    color: rgba(255, 255, 255, .7);
}

.legal-hero-list strong {
    color: #fff;
}

.legal-cta-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: auto;
}

.legal-cta-link:hover {
    text-decoration: underline;
}

.legal-content .container {
    max-width: 1100px;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width:1199px) {
    .legal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.legal-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.5rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.legal-card h2 {
    margin: 0;
    font-size: 1.3rem;
}

.legal-card p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
    font-size: .98rem;
    line-height: 1.65;
}

.legal-card a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.legal-card a:hover {
    text-decoration: underline;
}

.legal-support-card {
    background: linear-gradient(140deg, rgba(13, 110, 253, .18), rgba(0, 0, 0, .85));
    border: 1px solid rgba(13, 110, 253, .3);
    border-radius: 1.7rem;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (max-width:991px) {
    .legal-support-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.2rem;
    }
}

.legal-support-card h2 {
    margin: 0 0 .75rem;
}

.legal-support-card p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.legal-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-support-actions .main-button {
    flex-shrink: 0;
}

.legal-support-actions .hero-secondary {
    color: rgba(255, 255, 255, .8);
}

.legal-support-actions .hero-secondary:hover {
    color: #0d6efd;
}

.site-footer {
    position: relative;
    position: relative;
    background: linear-gradient(180deg, rgba(6, 8, 12, .95), rgba(0, 0, 2, .98));
    border-top: 1px solid rgba(13, 110, 253, .25);
    overflow: hidden;
    padding: 4.5rem 0 2.2rem;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(13, 110, 253, .22), transparent 60%);
    opacity: .8;
    pointer-events: none;
}

.footer-callout {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    z-index: 1;
}

.footer-callout-copy {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-kicker {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
}

.footer-callout h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
}

.footer-callout p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-callout-actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: stretch;
}

.footer-primary-cta {
    padding: .9rem 2.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0d6efd 0%, #2a7dff 100%);
    border: none;
    box-shadow: 0 28px 45px rgba(13, 110, 253, .35);
}

.footer-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 36px 60px rgba(13, 110, 253, .4);
}

.footer-secondary-link {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.footer-contact-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .65rem;
    padding: 1.05rem 1.6rem;
    border-radius: 1.4rem;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    min-height: 58px;
    text-align: left;
    width: 100%;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
    color: #fff;
}

.footer-contact-button:hover {
    transform: translateY(-2px);
}

.footer-contact-stack {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    align-self: center;
}

.footer-contact-stack .footer-contact-button {
    width: 100%;
}

.footer-contact-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #2a7dff 100%);
    box-shadow: 0 28px 45px rgba(13, 110, 253, .35);
    justify-content: center;
    text-align: center;
}

.footer-contact-primary:hover {
    box-shadow: 0 36px 60px rgba(13, 110, 253, .4);
}

.footer-contact-secondary {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .85);
    justify-content: center;
    text-align: center;
}

.footer-contact-secondary:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.footer-contact-icon {
    font-size: 1.15rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    flex-shrink: 0;
}

.footer-secondary-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding-top: 2.5rem;
}

.footer-nav-list {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav {
    position: relative;
}

.footer-nav-link {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem 0;
    transition: color .3s ease, transform .3s ease;
}

.footer-nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-nav-link-active {
    color: #fff;
    font-weight: 600;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Desktop/Laptop: Single line layout */
@media (min-width: 768px) {
    .footer-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-copy {
        white-space: nowrap;
    }
}

.footer-copy {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-copy:hover {
    color: #fff;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.footer-social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: rgba(13, 110, 253, .24);
    border-color: rgba(13, 110, 253, .45);
}

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

@media (max-width:991px) {
    .footer-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-callout-actions {
        justify-content: flex-start;
    }

    .footer-contact-stack {
        max-width: none;
    }

    .footer-contact-stack .footer-contact-button {
        padding: .85rem 1.2rem;
        font-size: .95rem;
        width: 40vw;
        justify-self: center;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width:575px) {
    .site-footer {
        position: relative;
        padding: 3.2rem 0 3rem;
    }

    .footer-callout {
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-callout-copy {
        text-align: center;
        align-items: center;
    }

    .footer-callout-actions {
        gap: .9rem;
        justify-content: center;
    }

    .footer-contact-stack {
        width: 100%;
    }

    .footer-contact-stack .footer-contact-button {
        width: 100%;
        max-width: 100%;
        justify-self: center;
        font-size: 1rem;
        padding: 1rem 1.35rem;
    }

    .footer-main {
        font-size: 1rem;
        gap: 2rem;
    }

    .footer-nav-list {
        gap: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-nav-link,
    .footer-copy {
        font-size: 1rem;
    }

    .footer-meta {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        margin-bottom: .4rem;
    }
}

@media (min-width:576px) and (max-width:991px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        font-size: 1.02rem;
    }

    .footer-nav-list {
        gap: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-nav-link,
    .footer-copy {
        font-size: 1.02rem;
    }

    .footer-contact-stack {
        width: 100%;
        max-width: 100%;
    }

    .footer-contact-stack .footer-contact-button {
        width: 100%;
        max-width: 100%;
        justify-self: center;
        font-size: 1.02rem;
        padding: 1.05rem 1.4rem;
    }

    .footer-meta {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
        margin-bottom: .4rem;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .contact-page .site-footer {
        padding: 2.5rem 0 1.6rem;
    }
}

@media (min-width:992px) {
    .footer-callout h2 {
        font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    }

    .footer-callout p {
        font-size: .98rem;
        line-height: 1.65;
    }

    .footer-callout-actions {
        align-items: center;
    }
}

header {
    background: transparent !important;
}

.contact-intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, .16), rgba(0, 0, 0, .92));
}

.contact-intro-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    width: min(1200px, 100%);
    margin: 0 auto;
    align-items: center;
}

.contact-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    align-items: flex-start;
}

.contact-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    line-height: 1.2;
}

.contact-hero-copy p {
    color: rgba(255, 255, 255, .78);
    font-size: 1rem;
    line-height: 1.55;
}

.contact-intro-wrapper {
    gap: 3rem;
}

@media (max-width:1280px) {
    .contact-intro-wrapper {
        gap: 2.2rem;
        width: min(1100px, 100%);
    }

    .contact-hero-copy h1 {
        font-size: clamp(1.7rem, 2.2vw, 2.3rem);
    }

    .contact-hero-copy p {
        font-size: .94rem;
    }
}



.contact-reach {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: .5rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    justify-content: flex-start;
}

.contact-reach span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 1.05rem;
    background: rgba(13, 110, 253, .14);
    border: 1px solid rgba(13, 110, 253, .35);
    border-radius: 999px;
    box-shadow: 0 12px 25px rgba(13, 110, 253, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.contact-reach span:hover {
    transform: translateY(-1px);
    background: rgba(13, 110, 253, .2);
    border-color: rgba(13, 110, 253, .5);
    box-shadow: 0 16px 30px rgba(13, 110, 253, .25);
}

.contact-reach span strong {
    color: #fff;
}

.contact-reach a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

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

.contact-form-wrapper {
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .4);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    padding: 1.1rem 1.2rem;
    font-size: 1.05rem;
}

.contact-form-wrapper label {
    font-size: .95rem;
}

#contactForm {
    width: 70%;
    margin: 0 auto;
}

.contact-form-wrapper .form-group {
    width: 100%;
}

@media (max-width:991px) {
    .contact-intro {
        min-height: auto;
        padding: 8rem 0;
    }

    .contact-intro-wrapper {
        grid-template-columns: 1fr;
        width: 80%;
    }

    .contact-hero-copy {
        text-align: center;
        align-items: center;
    }

    .contact-reach {
        justify-content: center;
    }
}

@media (max-width:575px) {
    .contact-intro {
        padding: 4.5rem 0 2.5rem;
    }

    .contact-intro-wrapper {
        gap: 1.5rem;
        width: 90%;
    }

    .contact-form-wrapper {
        padding: 1.8rem;
    }

    .contact-hero-copy {
        align-items: flex-start;
        text-align: left;
    }

    .contact-hero-copy h1 {
        text-align: center;
        align-self: center;
    }

    .contact-hero-copy p {
        text-align: left;
    }

    .contact-highlights {
        text-align: left;
        padding-left: 1.2rem;
    }

    .contact-reach {
        justify-content: flex-start;
        text-align: left;
    }

    #contactForm {
        width: 90%;
    }

    .form-submit {
        margin-bottom: .75rem;
    }

    .contact-map-block iframe {
        width: 90vw;
        max-width: 90vw;
    }

    .contact-page .site-footer {
        padding: 0;
    }
}

.contact-form-wrapper .form-group {
    margin-bottom: 1rem;
}

.contact-form-wrapper .form-title {
    padding-bottom: 1.5rem;
}

@media (min-width:768px) and (max-width:1399px) {
    .hero-copy h1 {
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
        line-height: 1.05;
        margin-bottom: 1.6rem;
    }

    .hero-metrics {
        gap: .5rem;
        margin: .6rem 0;
        font-size: .8rem;
    }

    .hero-metrics li {
        padding: .5rem .6rem;
    }

    .hero-copy p {
        font-size: .85rem;
        margin-bottom: .8rem;
        line-height: 1.4;
    }

    .hero-actions {
        margin: .8rem 0;
    }

    .hero-contact {
        margin-top: .6rem;
        font-size: .85rem;
    }

    .navbar {
        padding: .5rem 0;
    }

    .navbar-brand img {
        width: 9rem;
        height: auto;
    }

    .nav-link {
        padding: .5rem .8rem;
        font-size: .9rem;
    }

    .navbar-button {
        padding: .6rem 1.4rem !important;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .hero-aside h2 {
        font-size: 1.2rem;
    }

    .hero-aside p {
        font-size: .85rem;
    }

    .hero-aside ul {
        font-size: .8rem;
    }
}

.hero-metrics {
    gap: .6rem;
    margin: .8rem 0;
    font-size: .85rem;
}

.hero-metrics li {
    padding: .6rem .8rem;
}

.hero-copy p {
    font-size: .95rem;
    margin-bottom: 1rem;
}

.hero-actions {
    margin: 1rem 0;
}

.hero-contact {
    margin-top: .8rem;
}

.navbar {
    padding: .5rem 0;
}

.navbar-brand img {
    width: 9rem;
    height: auto;
}

.nav-link {
    padding: .5rem .8rem;
    font-size: .9rem;
}

.navbar-button {
    padding: .6rem 1.4rem !important;
}

.hero-section {
    padding-top: 6rem;
}

@media (min-width:768px) and (max-width:991px) {
    .hero-aside .aside-card {
        max-width: 500px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .home-hero .hero-copy {
        gap: 1.4rem;
        align-items: flex-start;
    }

    .home-hero .hero-actions {
        margin: 1.3rem 0;
        width: 100%;
        justify-content: center;
    }

    .home-hero .hero-metrics {
        margin: 1.1rem 0;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .differentiators-card {
        visibility: hidden;
        height: 0;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .contact-intro-wrapper h1 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
    }

    .contact-intro-wrapper p {
        font-size: .95rem;
    }

    .contact-highlights {
        font-size: .9rem;
    }

    .contact-hero-copy h1 {
        text-align: center;
        align-self: center;
    }

    .form-title h3 {
        font-size: 1.3rem;
    }

    .form-title p {
        font-size: .9rem;
    }

    .contact-form-wrapper .form-group {
        margin-bottom: .9rem;
    }

    .form-submit {
        margin-bottom: 0.5rem;
        padding: 1rem;
        font-size: 1rem;
    }

    .contact-panel:last-child {
        display: none;
    }

    .contact-panels-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:992px) {
    .contact-intro-wrapper h1 {
        font-size: clamp(2.2rem, 3.3vw, 3.4rem);
    }

    .contact-hero-copy p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .contact-highlights {
        font-size: .97rem;
        line-height: 1.55;
    }

    .contact-form-wrapper .form-title p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .form-submit {
        margin-bottom: 0;
    }
}

@media (min-width:1400px) and (max-width:1600px) {
    .contact-hero-copy h1 {
        text-align: center;
        align-self: center;
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .contact-map-block iframe {
        width: 90vw;
        max-width: 90vw;
    }

    .footer-nav-list {
        gap: .7rem;
        flex-wrap: nowrap;
    }

    .footer-nav-link {
        position: relative;
        z-index: 2;
        font-size: .9rem;
        white-space: nowrap;
    }
}

.footer-nav-link {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    white-space: nowrap !important;
}

.main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes customBuildShine {
    0% {
        transform: rotate(25deg) translateX(-140%);
        opacity: 0;
    }

    30% {
        opacity: .4;
    }

    55% {
        transform: rotate(25deg) translateX(160%);
        opacity: .15;
    }

    100% {
        transform: rotate(25deg) translateX(160%);
        opacity: 0;
    }
}

@keyframes caseArrowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .35);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.article-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: #050505;
    padding: .65rem 1.4rem;
    border-radius: .85rem;
    border: 1px solid rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .9);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.article-cta::after {
    content: "→";
    font-size: 1rem;
    transition: transform .3s ease;
}

.article-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    background: #fff;
    border-color: #fff;
}

.article-cta:hover::after {
    transform: translateX(4px);
}

.article-detail {
    padding-top: 8rem;
}

.article-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.article-detail .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-meta i {
    color: #0d6efd;
    font-size: 1rem;
}

.article-detail-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.article-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.article-tag-pill {
    background: rgba(13, 110, 253, 0.1) !important;
    border: 1px solid rgba(13, 110, 253, 0.25) !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 100px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-left: auto !important;
    white-space: nowrap !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.article-tag-pill:hover {
    background: rgba(13, 110, 253, 0.2);
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-1px);
}

.article-hero-media {
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
    width: 100%;
}

.article-hero-media--compact {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-midnight {
    background: radial-gradient(circle at 20% 20%, rgba(32, 58, 104, .75), rgba(5, 8, 18, 1));
    background-color: #050812;
}

@media (max-width:991px) {
    .article-detail {
        padding-top: 8rem;
    }

    .article-detail-header {
        align-items: center;
    }

    .hero-secondary {
        margin: 0 !important;
    }
}

@media (max-width:575px) {
    .article-detail {
        padding-top: 6rem;
    }

    .article-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .article-detail .article-back-button {
        width: 100%;
        justify-content: center;
    }

    .article-tag-pill {
        margin-left: initial;
    }

    .article-detail .article-meta {
        flex-wrap: wrap;
        gap: .6rem;
    }
}

@media (min-width:992px) {

    .article-detail p,
    .article-detail li {
        font-size: 1.02rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, .78);
    }

    .article-detail ul {
        padding-left: 1.2rem;
    }

    .article-detail h2 {
        font-size: 1.6rem;
        line-height: 1.28;
        margin: 1.6rem 0 .9rem;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.2rem;
    overflow: hidden;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, .03);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
}

.comparison-table th {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, .02);
}

.comparison-table tbody tr:hover {
    background: rgba(13, 110, 253, .08);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #fff;
    width: 24%;
}

.comparison-table td {
    color: rgba(255, 255, 255, .8);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table thead tr:first-child th:first-child {
    border-top-left-radius: 1.2rem;
}

.comparison-table thead tr:first-child th:last-child {
    border-top-right-radius: 1.2rem;
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 1.2rem;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 1.2rem;
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: 1.2rem;
}

.comparison-table-container::-webkit-scrollbar {
    height: 8px;
}

.comparison-table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
}

.comparison-table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width:991px) {
    .comparison-table td:first-child {
        width: 28%;
    }
}

@media (max-width:767px) {
    .comparison-table-container {
        margin: 1.5rem 0;
    }

    .comparison-table {
        min-width: 600px;
    }
}

@media (min-width:992px) and (max-width:1440px) {
    .section-padding {
        padding: 4.25rem 0;
    }

    .section-title {
        font-size: clamp(1.9rem, 2.4vw, 2.35rem);
        margin-bottom: 1.25rem;
    }

    .section-lead {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 2rem;
        max-width: 840px;
    }

    .hero-section {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .home-hero .hero-grid {
        gap: 2.4rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 2.5vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: .95rem;
    }

    .hero-actions {
        gap: .85rem;
        margin: 1.2rem 0 1rem;
    }

    .hero-metrics {
        gap: .75rem;
        margin: 1rem 0;
        font-size: .9rem;
    }

    .hero-metrics li {
        padding: .75rem .9rem;
    }

    .hero-metrics strong {
        font-size: 1.3rem;
    }

    .hero-aside h2 {
        font-size: 1.25rem;
    }

    .hero-aside p,
    .hero-aside ul {
        font-size: .92rem;
    }

    .articles-hero .hero-copy h1 {
        font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    }

    .articles-hero .hero-copy p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .articles-section .section-title {
        font-size: clamp(1.9rem, 2.3vw, 2.3rem);
    }

    .articles-section .section-lead {
        font-size: .98rem;
        line-height: 1.55;
    }

    .article-card h3 {
        font-size: 1.05rem;
    }

    .article-card p,
    .article-card-content p {
        font-size: .95rem;
        line-height: 1.55;
    }

    .contact-hero-copy h1 {
        font-size: clamp(1.9rem, 2.4vw, 2.5rem);
    }

    .contact-hero-copy p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .contact-highlights,
    .contact-reach,
    .contact-form-wrapper label {
        font-size: .95rem;
    }

    .about-intro .about-intro-copy h1 {
        font-size: clamp(1.9rem, 2.5vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .about-intro .about-intro-copy p {
        font-size: .98rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .about-intro-meta .meta-block span {
        font-size: .9rem;
    }

    .journey-year {
        font-size: 1rem;
    }

    .journey-timeline p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .culture-card h3 {
        font-size: 1.12rem;
    }

    .culture-card p {
        font-size: .96rem;
        line-height: 1.55;
    }

    .solo-profile-main p {
        font-size: .98rem;
        line-height: 1.55;
    }

    .solo-profile-list,
    .solo-profile-aside ul,
    .studio-list {
        font-size: .95rem;
        line-height: 1.5;
    }

    .page-body p,
    .page-body li {
        font-size: .98rem;
        line-height: 1.55;
    }

    .page-body h2 {
        font-size: clamp(1.6rem, 2.1vw, 2rem);
        line-height: 1.25;
        margin-bottom: .85rem;
    }

    .page-body h3 {
        font-size: 1.18rem;
        line-height: 1.3;
    }

    .service-cards {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
        gap: .75rem;
    }

    .service-card-intro {
        gap: .6rem;
        min-height: 150px;
    }

    .service-card ul {
        line-height: 1.5;
    }

    .benefits-grid {
        gap: 1.25rem;
    }

    .benefit-card {
        padding: 1.75rem;
    }

    .process-steps {
        gap: 1rem;
    }

    .process-step {
        padding: 1.7rem;
    }

    .process-index {
        margin-bottom: .8rem;
    }

    .case-grid {
        gap: 1.25rem;
    }

    .case-item {
        padding: 1.7rem;
        gap: .9rem;
    }

    .testimonial-list {
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.7rem;
        gap: 1rem;
    }

    .articles-grid {
        gap: 1.4rem;
    }

    .article-card {
        padding: 1.7rem;
        gap: .9rem;
    }

    .category-grid {
        gap: 1.35rem;
    }

    .category-card {
        padding: 1.55rem;
    }

    .subscribe-card {
        padding: 2rem;
        gap: 1.6rem;
    }

    .article-detail {
        padding-top: 7.2rem;
    }

    .article-detail-wrapper {
        gap: 1.1rem;
    }

    .article-detail h1 {
        font-size: clamp(1.9rem, 2.6vw, 2.35rem);
    }

    .article-detail h2 {
        font-size: clamp(1.55rem, 2vw, 1.9rem);
        line-height: 1.26;
        margin: 1.4rem 0 .85rem;
    }

    .article-detail .article-meta {
        gap: 1rem;
        font-size: .9rem;
    }

    .article-content {
        gap: 1.25rem;
    }

    #resurse.section-padding {
        padding: 3.4rem 0;
    }

    .wedding-app-promo {
        padding: 1.8rem;
        gap: 1.3rem;
    }

    .wedding-app-badge {
        font-size: .7rem;
        margin-bottom: .5rem;
    }

    .wedding-app-content h2 {
        font-size: clamp(1.55rem, 1.9vw, 1.9rem);
    }

    .wedding-problem-solution {
        font-size: .96rem;
        line-height: 1.52;
    }

    .wedding-app-lead {
        font-size: .96rem;
        line-height: 1.52;
        margin-bottom: .8rem;
    }

    .wedding-app-list-label {
        font-size: .72rem;
        margin-bottom: .3rem;
    }

    .wedding-app-list {
        font-size: .92rem;
        gap: .45rem;
        margin-bottom: .85rem;
    }

    .wedding-app-list li {
        gap: .32rem;
    }

    .wedding-app-actions {
        gap: .5rem;
        margin-bottom: .55rem;
    }

    .wedding-app-card {
        padding: 1.15rem;
    }

    .wedding-app-card h3 {
        font-size: 1.08rem;
    }

    .wedding-app-card li {
        padding: .6rem .7rem;
    }

    .wedding-app-card li span {
        font-size: .76rem;
    }

    .wedding-app-summary {
        font-size: .84rem;
        margin-top: .75rem;
    }
}

@media (max-width:575px) {
    .comparison-table {
        min-width: 0;
        border: 0;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 1rem;
        overflow: hidden;
        background: rgba(255, 255, 255, .03);
    }

    .comparison-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .comparison-table td {
        display: flex;
        align-items: baseline;
        gap: 1rem;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        color: #fff;
        text-align: left;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #fff;
        flex: 0 0 110px;
        text-align: left;
    }

    .comparison-table td:first-child {
        width: 100%;
    }

    .comparison-table td:first-child::before {
        color: rgba(255, 255, 255, .75);
    }
}

@media (max-width:575px) {
    body {
        font-size: 1rem;
        line-height: 1.6;
    }

    h1 {
        font-size: clamp(1.6rem, 6vw, 2rem);
        line-height: 1.2;
    }

    h2 {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
        line-height: 1.25;
    }

    h3 {
        font-size: clamp(1.15rem, 5.5vw, 1.5rem);
        line-height: 1.3;
    }

    p,
    li {
        font-size: .98rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-lead {
        font-size: .96rem;
        line-height: 1.6;
    }

    .hero-copy p,
    .service-hero-copy p,
    .about-intro-copy p,
    .articles-hero .hero-copy p,
    .contact-hero-copy p {
        font-size: .98rem;
    }

    .article-summary,
    .article-card-content p {
        font-size: .95rem;
        line-height: 1.55;
    }

    .article-badge,
    .article-meta {
        font-size: .9rem;
    }
}

@media (max-width:575px) {
    .section-title {
        margin-bottom: 1rem;
    }

    .section-lead {
        margin-bottom: 1.4rem;
    }

    .service-hero {
        padding: 6rem 0 2.6rem;
    }

    .about-intro {
        padding: 6rem 0 2.6rem;
    }

    .contact-intro {
        padding: 6rem 0 2.6rem;
    }

    .home-hero .hero-copy h1 {
        font-size: clamp(1.65rem, 4vw, 2.4rem);
        line-height: 1.2;
        margin-bottom: 1.4rem;
    }

    .service-hero-copy h1,
    .about-intro-copy h1,
    .articles-hero .hero-copy h1,
    .contact-hero-copy h1 {
        font-size: clamp(1.65rem, 4vw, 2.4rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .service-hero-copy p,
    .about-intro-copy p,
    .articles-hero .hero-copy p,
    .contact-hero-copy p {
        font-size: .92rem;
        line-height: 1.55;
    }

    .service-hero-copy,
    .about-intro-copy,
    .articles-hero .hero-copy,
    .contact-hero-copy {
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .service-hero-copy p {
        text-align: left;
    }

    .articles-hero .hero-copy p {
        text-align: left;
    }

    .contact-hero-copy {
        align-items: flex-start;
        text-align: left;
    }

    .contact-hero-copy p {
        text-align: left;
    }

    .service-hero h2,
    .about-intro h2,
    .contact-intro h2,
    .articles-hero h2 {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
        line-height: 1.25;
        text-align: center;
        margin-bottom: 1rem;
    }

    .services-page .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .services-page .section-lead {
        font-size: .96rem;
        line-height: 1.55;
    }

    .services-page h3 {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .services-page p {
        font-size: .95rem;
        line-height: 1.55;
    }

    .articles-section .section-title,
    .contact-body .section-title,
    .about-journey .section-title,
    .culture-section .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .articles-section .section-lead,
    .contact-body .section-lead,
    .about-journey .section-lead,
    .culture-section .section-lead {
        font-size: .96rem;
        line-height: 1.55;
    }

    .articles-section h3,
    .about-journey h3,
    .culture-card h3,
    .contact-body h3 {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .articles-section p,
    .about-journey p,
    .culture-card p,
    .contact-body p {
        font-size: .95rem;
        line-height: 1.55;
    }

    .wedding-app-content h2 {
        font-size: clamp(1.4rem, 5.5vw, 1.9rem);
        margin-bottom: .8rem;
    }

    .wedding-problem-solution {
        font-size: .9rem;
        line-height: 1.5;
        margin-bottom: .8rem;
    }

    .wedding-app-lead {
        font-size: .9rem;
        line-height: 1.5;
        margin-bottom: .9rem;
    }

    .service-card {
        padding: 1.35rem;
        gap: .75rem;
    }

    .case-item {
        padding: 1.35rem;
        gap: .75rem;
    }

    .category-card {
        padding: 1.35rem;
    }

    .pillar-card {
        padding: 1.6rem;
    }

    .culture-card {
        padding: 1.5rem;
    }

    .articles-grid {
        gap: 1.2rem;
    }

    .article-card {
        padding: 1.5rem;
        gap: .8rem;
    }

    .article-detail-wrapper {
        gap: 1rem;
    }

    .article-hero-media {
        margin-bottom: 1rem;
    }

    .article-content {
        gap: 1.1rem;
    }

    .article-detail h1 {
        font-size: clamp(1.5rem, 5.8vw, 1.85rem);
    }

    .article-detail h2 {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin: 1.1rem 0 .65rem;
        line-height: 1.25;
    }

    .article-detail .article-meta {
        gap: .5rem;
        font-size: .82rem;
    }

    .article-detail .article-back-button {
        width: auto;
        justify-content: flex-start;
        align-self: flex-start;
    }

    .journey-timeline {
        gap: 1.2rem;
    }

    .journey-timeline li {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }

    .culture-grid {
        gap: 1.2rem;
    }

    .contact-intro-wrapper {
        gap: 1.8rem;
    }

    .subscribe-card {
        padding: 1.6rem;
        gap: 1.2rem;
    }
}

#back-to-top-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#back-to-top-btn svg {
    width: 32px;
    height: 32px;
    display: block;
}

.article-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.site-footer nav[aria-label="Navigație footer"] {
    width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .article-thumb {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .article-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Wedding App Offer Card Redesign */
.wedding-offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.75rem;
    border-radius: 1.25rem;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wedding-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.offer-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.offer-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.offer-vat {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #ffffff;
    color: #000000;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.offer-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
    color: #000000;
}

.offer-cta span {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    line-height: 1;
}

.offer-cta:hover span {
    transform: translateX(4px);
}

@media (max-width: 575px) {
    .wedding-offer-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        text-align: center;
        padding: 1.5rem;
    }

    .offer-price-row {
        justify-content: center;
    }

    .offer-cta {
        justify-content: center;
    }
}

/* Price Animation Styles */
.offer-price-row {
    position: relative;
    overflow: hidden;
    /* Mask the entry */
    display: inline-flex;
    align-items: baseline;
    padding-right: 5px;
}

.offer-old-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    margin-right: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-old-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ff4444;
    transform: scaleX(0);
    transform-origin: left;
    /* Default state: no animation until class addition */
}

/* Trigger animations only when .start-animation is added */
.wedding-offer-card.start-animation .offer-old-price::after {
    /* varied delay: 1s initial wait + 0.5s pre-strike = 1.5s start */
    animation: strikeThrough 0.6s ease-out 1.5s forwards;
}

.wedding-offer-card.start-animation .offer-old-price {
    /* 1.5s + 0.6s strike + some pause = ~2.2s recede */
    animation: recedePrice 0.5s ease-out 2.2s forwards;
}

.offer-price {
    color: #ffffff;
    opacity: 0;
    transform: translateX(100%);
    /* Default state */
}

.wedding-offer-card.start-animation .offer-price {
    /* 2.2s start bump */
    animation: slideInBump 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.9s forwards;
}

@keyframes strikeThrough {
    to {
        transform: scaleX(1);
    }
}

@keyframes recedePrice {
    to {
        transform: scale(0.9);
        opacity: 0.5;
        filter: grayscale(1);
    }
}

@keyframes slideInBump {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    60% {
        opacity: 1;
        transform: translateX(-5px);
        /* Overshoot */
        color: #4ade80;
        /* Highlight green on impact */
    }

    80% {
        transform: translateX(2px);
        /* Rebound */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        color: #ffffff;
    }
}

/* Tablet centering for wedding offer card */
@media (min-width: 768px) and (max-width: 1024px) {
    .wedding-offer-card {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Module Card Interactions */
.module-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Ensure link is visible */
.module-card a.stretched-link {
    outline: none;
}

/* Dropdown Hover on Desktop */
@media (min-width: 768px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Hide Bootstrap default dropdown caret */
.dropdown-toggle::after {
    display: none !important;
}

/* Adjust chevron spacing if needed */
.nav-link.dropdown-toggle svg {
    margin-top: -2px;
    /* Slight vertical alignment */
    fill: currentColor;
}

/* Bold arrow on active state */
.nav-link-active svg {
    stroke: currentColor;
    stroke-width: 1px;
}

/* =========================================
   Premium Dropdown Styling (Underline)
   ========================================= */

@media (min-width: 768px) {
    .dropdown-menu {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow:
            0 10px 30px -5px rgba(0, 0, 0, 0.08),
            0 4px 12px -2px rgba(0, 0, 0, 0.04);
        border-radius: 12px !important;
        padding: 8px;
        margin-top: 15px !important;
        min-width: 260px;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* Hover State -> Visible */
    .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Invisible bridge */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
    }
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.1s ease;
    display: flex;
    align-items: center;
    background: transparent;
}

.dropdown-item:active {
    color: #0d6efd;
}

/* Desktop Hover Effect */
@media (min-width: 768px) {

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: transparent;
        color: #0d6efd;
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
        text-decoration-color: #0d6efd;
    }
}

.dropdown-divider {
    margin: 6px 0;
    border-top-color: #f0f0f0;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
        margin-top: 5px !important;
        padding-left: 1rem;
        background: #fff;
        position: static !important;
        /* Flow naturally in document */
        float: none;
        width: 100%;
        transform: none !important;
        transition: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .dropdown-menu.show {
        /* Bootstrap sets display: block */
    }

    .dropdown-item {
        color: #555;
        padding: 12px 0;
        font-size: 1rem;
        white-space: normal;
        /* Allow text wrap */
        position: static;
    }

    .dropdown-item:hover {
        background: transparent;
        color: #0d6efd;
        text-decoration: underline;
    }
}

@media (max-width: 767px) {

    .fade-in:not(.mobile-animate),
    .hero-animate-up:not(.mobile-animate) {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .slide-up:not(.mobile-animate),
    .slide-down:not(.mobile-animate),
    .slide-left:not(.mobile-animate),
    .slide-right:not(.mobile-animate) {
        transform: none !important;
        animation: none !important;
    }
}

/* Active State for Dropdown Items */
.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent !important;
    color: #0d6efd !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

/* =========================================
   FAQ Section Styles (Premium Card Theme)
   ========================================= */
#faq {
    position: relative;
    z-index: 10;
}

#faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

details.faq-item {
    background: #0b1120;
    /* Force dark background (Midnight) */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

details.faq-item:hover {
    background: #111a2f;
    /* Slightly lighter on hover */
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

details.faq-item[open] {
    background: #111a2f;
    border-color: #0d6efd;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

summary.faq-question {
    list-style: none;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    font-weight: 600;
    padding-right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff !important;
    /* Force white text */
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

summary.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #0d6efd;
    transition: transform 0.3s ease;
}

details[open] summary.faq-question::after {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b3b8;
    /* Light gray text */
    line-height: 1.8;
    font-size: 1.1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* =========================================
   Service Page Unique Designs
   ========================================= */

/* Split Layout for Hero */
@media (min-width: 992px) {
    .service-hero-split .service-hero-wrapper {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }

    .service-hero-split .service-hero-copy {
        max-width: 100%;
        margin: 0;
        text-align: left;
        /* Force left align */
    }

    .service-hero-split .hero-actions {
        justify-content: flex-start;
        /* Align buttons left */
    }


}

@media (min-width: 768px) {
    .service-hero-image {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transform: perspective(2000px) rotateY(-8deg) rotateX(2deg);
        transition: all 0.5s ease;
        animation: floatImage 6s ease-in-out infinite;
    }

    .service-hero-image:hover {
        transform: perspective(2000px) rotateY(0deg) rotateX(0deg) scale(1.02);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(13, 110, 253, 0.2);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: perspective(2000px) rotateY(-8deg) translateY(0);
    }

    50% {
        transform: perspective(2000px) rotateY(-8deg) translateY(-15px);
    }
}

.service-hero-image {
    display: none;
}

@media (min-width: 992px) {
    .service-hero-image {
        display: block;
    }
}

.service-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #b0b3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
}


/* =========================================
   Layout Variants (No Color Changes)
   ========================================= */

/* Swap Layout: Image Left, Text Right */
@media (min-width: 992px) {
    .service-hero-split.swap-layout .service-hero-wrapper {
        grid-template-columns: 0.8fr 1.2fr;
        /* Image takes less space on left */
    }

    .service-hero-split.swap-layout .service-hero-image {
        order: -1;
        /* Moves image to start */
        transform: perspective(2000px) rotateY(5deg);
        /* Tilt opposite way */
    }

    .service-hero-split.swap-layout .service-hero-image:hover {
        transform: perspective(2000px) rotateY(0deg) scale(1.02);
    }
}

/* Feature Grid Variants */
.feature-card-minimal {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card-minimal:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: #0d6efd;
}

.feature-card-minimal h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-card-minimal p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
}


/* =========================================
   Premium Feature Cards (Ecommerce Specific)
   ========================================= */
.feature-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Inner bezel */
    pointer-events: none;
}

/* Pricing Card Styles */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 110, 253, 0.3);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 1.5rem 0;
    min-height: 4.5rem;
    /* Align common heights */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 0.2rem;
    color: #0d6efd;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    width: 100%;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #0d6efd;
    margin-top: 0.25rem;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.disabled i {
    color: rgba(255, 255, 255, 0.2);
}

.case-study-badge {
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 200, 81, 0.4);
    /* Green accent */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon-premium {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 200, 81, 0.2));
    transition: transform 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.feature-card-premium p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   Tech Feature Cards (WebApp Specific)
   ========================================= */
.feature-card-tech {
    background: rgba(13, 202, 240, 0.02);
    /* Very subtle Cyan tint */
    border: 1px solid rgba(13, 202, 240, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0dcaf0, #0d6efd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-tech:hover {
    transform: translateY(-5px);
    background: rgba(13, 202, 240, 0.06);
    box-shadow: 0 10px 40px rgba(13, 202, 240, 0.1);
    border-color: rgba(13, 202, 240, 0.4);
}

.feature-card-tech:hover::before {
    opacity: 1;
}

.feature-card-tech h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card-tech p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(13, 202, 240, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #0dcaf0;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card-tech:hover .tech-icon-wrapper {
    background: #0dcaf0;
    color: #000;
    transform: rotateY(180deg);
}

/* =========================================
   Warning/Alert Feature Cards (Maintenance)
   ========================================= */
.feature-card-warning {
    background: rgba(20, 10, 10, 0.4);
    border: 1px solid rgba(255, 99, 71, 0.2);
    /* Tomato red tint */
    border-left: 4px solid #ff4757;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card-warning:hover {
    background: rgba(30, 10, 10, 0.6);
    border-color: rgba(255, 99, 71, 0.5);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.1);
    transform: translateY(-5px);
}

.warning-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff4757;
}

.feature-card-warning h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    /* display: flex; Removed to allow text-align center */
    /* align-items: center; */
    /* gap: 10px; */
}

@media (min-width: 992px) {
    .feature-card-warning h3 {
        text-align: center;
    }

    .feature-card-warning .warning-icon {
        text-align: center;
    }
}

.feature-card-warning p {
    color: #a4b0be;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   Maintenance Plans Section
   ========================================= */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.plan-card.recommended {
    background: linear-gradient(145deg, rgba(64, 221, 255, 0.05), rgba(0, 0, 0, 0));
    border-color: rgba(64, 221, 255, 0.3);
    box-shadow: 0 0 30px rgba(64, 221, 255, 0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features li i {
    color: #40ddff;
    font-size: 1.1rem;
}

.badge-recommended {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #40ddff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* --- PREMIUM TRUST SECTION (Glassmorphism) --- */
.trust-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #1a2333 0%, #0b1120 100%);
    overflow: hidden;
    contain: layout;
}

/* Background Glow Orb */
.glow-orb {
    position: absolute !important;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}


/* Stats Styling */
.stat-card {
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover effects for glass-panel links */
.border-hover-primary {
    transition: all 0.3s ease;
}

.border-hover-primary:hover {
    border-color: rgba(13, 110, 253, 0.5) !important;
    background: rgba(255, 255, 255, 0.08);
    /* Slightly lighter */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}

.border-hover-primary:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-number.glow-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
}

.stat-number.glow-green {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.3));
}

.stat-number.glow-purple {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.3));
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Tablet Responsive Stats */
@media (max-width: 991px) {
    .stat-number {
        font-size: 2.2rem;
        /* Reduced to prevent overflow on smaller tablets */
    }

    .stat-card {
        padding: 1.5rem 0.5rem;
        /* Reduced padding for better fit */
        min-height: 140px;
        /* Minimum height for consistency */
    }

    .stat-label {
        font-size: 0.8rem;
        /* Slightly smaller label */
    }
}

/* Badge Grid */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.trust-badge i {
    font-size: 1.1rem;
}

/* Logo Marquee */
/* Logo Marquee */
.logo-marquee-mask {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    width: 100%;
    /* Create fade effect using mask instead of overlay */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    gap: 8rem;
    /* Increased gap */
    padding-right: 8rem;
    /* Must match gap */
    width: max-content;
    /* Using renamed animation to avoid conflicts */
    animation: logoScroll 30s linear infinite;
    padding-top: 1rem;
    padding-bottom: 1rem;
    will-change: transform;
    /* Hint to browser */
}

@keyframes logoScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        /* Move exactly half way (assuming 2 sets of items) */
        transform: translate3d(-50%, 0, 0);
    }
}

/* Remove explicit margins from items since we use gap */
.logo-track .trust-badge,
.logo-track .partner-logo {
    margin-right: 0;
    flex-shrink: 0;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 1 !important;
    transition: all 0.3s ease;
    filter: none !important;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

    100% {
        transform: translateX(-50%);
        /* Works perfect if track has 2 identical sets */
    }
}

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

    .glass-panel {
        padding: 2rem 1rem !important;
        border-radius: 20px;
    }

    /* Scrollable Badges (Pills) */
    .trust-badges {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE */
        justify-content: flex-start !important;
        mask-image: linear-gradient(to right, black 80%, transparent 100%);
    }

    .trust-badges::-webkit-scrollbar {
        display: none;
    }

    .trust-badges {
        padding-right: 1rem;
        /* Add padding for scroll visibility */
    }

    .trust-badge {
        flex: 0 0 auto;
        /* Don't shrink */
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-question {
        padding-right: 0 !important;
    }

    /* Logo Marquee for Mobile */
    .logo-marquee-mask {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    /* .logo-track override removed to use global logic */

    .partner-logo {
        height: 32px !important;
        /* Smaller for mobile */
        width: auto !important;
        opacity: 0.9 !important;
    }
}

/* Tablet Optimization for Logo Marquee */
@media (min-width: 768px) and (max-width: 991px) {
    .partner-logo {
        height: 32px !important;
        /* Smaller for tablet */
        width: auto !important;
    }
}

/* About Us Page Layout - Refactored Inline Styles */

.about-orbit-glow {
    top: 20%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.glass-gradient-text {
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-lead {
    max-width: 750px;
}

.mission-section-bg {
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
}

.mission-orbit-glow {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

.timeline-section-bg {
    background: #0b1120;
}

.glass-timeline-item {
    background: rgba(255, 255, 255, 0.03);
    list-style: none;
}

.culture-section-bg {
    background: #0f172a;
}

.team-section-bg {
    background: radial-gradient(circle at 100% 0%, #0f172a 0%, #020617 100%);
}

.team-aside-bg {
    background: rgba(13, 110, 253, 0.05);
}

.studio-section-bg {
    background: #0b1120;
}

.studio-orbit-glow {
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
}


/* Fix for Timeline Overlap - Resetting Legacy Grid */
.journey-timeline,
.journey-timeline li {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

/* Global Animation Utility */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion for mobile as requested */
@media (max-width: 768px) {
    .fade-in {
        transform: translateY(15px);
        /* Smaller movement */
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
}

/* 3D Flip Button Styles */
.flip-card-wrapper {
    perspective: 1000px;
    width: 100%;
    height: 100%;
    /* Ensure it fills the grid cell */
    min-height: 54px;
    /* Match standard button height */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-inner.flipped {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    /* Match .map-action-btn */
    overflow: hidden;
}

.flip-card-front {
    /* Front styling is handled by the button inside, but needs z-index management */
    z-index: 2;
}

/* Flip Card Back - Premium "Pillar" Glass Style */
.flip-card-back {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: rotateX(180deg);
    display: flex;
    gap: 0.8rem;
    padding: 0 1rem;
    z-index: 1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Glow for the Back Content */
.flip-card-inner.flipped .flip-card-back:hover {
    border-color: rgba(64, 221, 255, 0.3);
    box-shadow: 0 0 20px rgba(64, 221, 255, 0.15);
}

/* Back Side Icons */
.flip-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    /* Soft square like structure */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.flip-icon-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Ensure Apple Maps icon matches others - larger to compensate for padding */
.flip-icon-btn.apple img {
    width: 32px !important;
    height: 32px !important;
}

.flip-icon-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

/* Back Arrow - Mini Pillar Style */
.flip-back-arrow {
    background: linear-gradient(135deg, rgba(64, 221, 255, 0.2), rgba(64, 221, 255, 0.05));
    border: 1px solid rgba(64, 221, 255, 0.2);
    color: #40ddff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.flip-back-arrow:hover {
    background: linear-gradient(135deg, #40ddff, #0d6efd);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(64, 221, 255, 0.4);
}

/* Page Entrance Animations */
.animate-enter-up {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}




/* =========================================
   Laptop Optimization (992px - 1600px)
   Goal: "Executive Dashboard" - Balanced, Pro, 100vh
   ========================================= */

/* =========================================
   Laptop Optimization (992px - 1600px)
   Goal: Match Desktop Layout, 100vh Sections
   ========================================= */
@media (min-width: 992px) and (max-width: 1600px) {

    /* ===== SECTION 1: CONTACT FORM ===== */

    /* Force 100vh container */
    .contact-unified-container {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 0;
        overflow: hidden;
    }

    /* Hide FAQ and testimonial INSIDE section 1 on laptops */
    .contact-unified-container .contact-testimonial-compact,
    .contact-unified-container .contact-faq-compact {
        display: none !important;
    }

    /* ===== LAPTOP-ONLY BETWEEN-SECTIONS AREA ===== */
    .secondary-content-section {
        display: block !important;
        padding: 1.5rem 0;
        /* Reduced spacing */
        background: linear-gradient(180deg, #02040a 0%, #0a0e1a 100%);
    }

    .section-separator {
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 0 auto !important;
    }

    /* Enhanced FAQ Styling */
    .contact-faq-compact-laptop {
        max-width: 750px;
        margin: 0 auto 2rem;
        padding: 2.5rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .contact-faq-compact-laptop .faq-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-faq-compact-laptop .accordion-button {
        font-size: 0.95rem;
        font-weight: 600;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .contact-faq-compact-laptop .accordion-button:hover {
        color: #0d6efd !important;
    }

    .contact-faq-compact-laptop .accordion-button::after {
        filter: brightness(1.2);
    }

    .contact-faq-compact-laptop .accordion-body {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Enhanced Testimonial Styling */
    .contact-testimonial-compact-laptop {
        max-width: 750px;
        margin: 0 auto;
        padding: 2.5rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    /* Force desktop form styling */
    .glass-form-card {
        padding: 2.5rem !important;
    }

    .glass-form-card .form-title {
        font-size: 1.75rem !important;
        margin-bottom: 0 !important;
        /* Remove bottom padding as requested */
    }

    .glass-form-card .form-control {
        height: auto !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        border-radius: 0.75rem !important;
    }

    .glass-form-card label {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }

    .glass-form-card .form-submit {
        height: 56px !important;
        font-size: 1.05rem !important;
        margin-top: 1rem !important;
    }

    /* ===== SECTION 2: MAP SECTION ===== */

    /* Force 100vh for map section */
    .map-section {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 2rem 0;
        overflow: hidden;
    }

    /* Match font sizes from section 1 */
    .map-section-title {
        font-size: 1.75rem !important;
        /* Match form title */
        line-height: 1.2;
    }

    .map-section-subtitle {
        font-size: 0.95rem !important;
        /* Match form inputs */
        line-height: 1.5;
    }

    /* Compact spacing for 100vh fit */
    .map-info-panel {
        gap: 1.25rem !important;
    }

    .map-info-header {
        gap: 0.75rem !important;
    }

    .location-card {
        padding: 1.25rem !important;
    }

    .location-card h3 {
        font-size: 1.05rem !important;
    }

    .location-card p {
        font-size: 0.85rem !important;
    }

    /* Compact action buttons */
    .map-actions {
        gap: 0.75rem !important;
    }

    .map-action-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    /* Compact info cards */
    .info-cards-grid {
        gap: 0.75rem !important;
    }

    .info-mini-card {
        padding: 0.75rem !important;
    }

    .info-label {
        font-size: 0.7rem !important;
    }

    .info-value {
        font-size: 0.85rem !important;
    }

    /* Override base map height - match left content exactly */
    .map-wrapper {
        height: 100% !important;
    }

    .map-display-panel {
        height: 100% !important;
    }

    .map-container {
        height: 100% !important;
        max-height: none !important;
    }

    .map-container iframe {
        height: 100% !important;
        max-height: none !important;
    }
}

/* ===== DESKTOP ONLY (1601px+) ===== */
@media (min-width: 1601px) {

    /* Form title padding - desktop only */
    .form-title {
        padding: 0 0 7.5vh;
    }
}

/* =========================================
   Tablet Optimization (768px - 991px)
   Goal: 2-Column Layout - Info/FAQ/Testimonial | Form
   ========================================= */
@media (min-width: 768px) and (max-width: 991px) {

    /* Main container - target the row for 2 column layout */
    .contact-unified-container>.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 2rem;
        padding: 2rem 1rem;
        align-items: center !important;
    }

    /* Column widths for tablet */
    .contact-unified-container .col-md-5 {
        flex: 0 0 42% !important;
        width: 42% !important;
        max-width: 42% !important;
    }

    .contact-unified-container .col-md-7 {
        flex: 1 !important;
        width: auto !important;
        max-width: none !important;
    }

    /* Ensure Section 1 elements are visible and styled */
    .contact-info-section {
        display: flex;
        flex-direction: column;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 1.5rem;
    }

    .contact-main-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }

    .contact-lead {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .contact-methods {
        gap: 1rem !important;
        margin-bottom: 0 !important;
    }

    .contact-reach-item {
        padding: 0.75rem !important;
    }

    .contact-faq-compact {
        display: block !important;
        padding-top: 1.25rem !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .contact-testimonial-compact {
        display: block !important;
        padding: 1.25rem 0 !important;
        margin-top: 0 !important;
    }

    /* Right column - Form Card */
    /* Right column - Form Card */
    .glass-form-card {
        padding: 0 !important;
        margin: 0 !important;
    }

    .glass-form-card .form-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important;
        padding: 0 !important;
    }

    /* CRITICAL: Full-width form fields on tablet */
    /* Reduce form field specific margin/gutter on tablet */
    #contactForm {
        --bs-gutter-y: 0.5rem !important;
    }

    #contactForm .col-lg-6,
    #contactForm .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 0.5rem;
    }

    #contactForm .col-12:last-child {
        margin-bottom: 1.5rem !important;
    }

    .glass-form-card .form-control {
        width: 100% !important;
        height: 48px !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
    }

    .glass-form-card textarea.form-control {
        height: 120px !important;
    }

    .glass-form-card label {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }

    .glass-form-card .form-submit {
        width: 100% !important;
        height: 52px !important;
        font-size: 1rem !important;
        margin-top: 1rem !important;
    }

    /* Map section below */
    .map-section {
        margin-top: 0 !important;
        padding-top: 3rem !important;
    }
}

/* =========================================
   Desktop & Laptop Optimization (992px+)
   Goal: Restrain width
   ========================================= */
@media (min-width: 992px) {
    .contact-unified-container .row {
        max-width: 90vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Fix Map Height on Desktop to match left content */
    .map-content-grid {
        align-items: stretch !important;
    }

    .map-wrapper,
    .map-display-panel,
    .map-container,
    .map-container iframe {
        height: 100% !important;
        min-height: 100% !important;
    }
}

/* =========================================
   Secondary Content (Mobile & Laptop)
   - was .laptop-between-sections
   ========================================= */
.secondary-content-section {
    display: none;
    /* Hidden by default (desktop) */
}

/* Show on Laptop (992-1600) per original design logic, 
   but strictly we handle it via the existing media queries if we update selectors 
   OR we just rely on the new mobile block + existing laptop block. 
   Existing laptop block targeted .laptop-between-sections. We need to update that selector. */

@media (min-width: 992px) and (max-width: 1600px) {
    .secondary-content-section {
        display: block !important;
        padding: 1.5rem 0;
        background: linear-gradient(180deg, #02040a 0%, #0a0e1a 100%);
    }
}


/* =========================================
   Mobile Optimization (Max 767px)
   Goal: 100vh "Above Fold" Fit
   ========================================= */
@media (max-width: 767px) {

    /* UNIFIED BACKGROUND for Section 1 & 2 */
    .contact-page .page-body {
        background: linear-gradient(180deg, #02040a 0%, #0a0e1a 50%, #0f1420 100%) !important;
        background-attachment: fixed !important;
        /* Optional: parallax effect */
    }

    .contact-unified-container {
        height: auto !important;
        min-height: 100vh !important;
        padding: 5.5rem 0 2rem !important;
        /* Navbar clearance + bottom spacing */
        overflow: visible;
        background: transparent !important;
        /* Let parent gradient show through */
    }

    /* 1. COMPACT TYPOGRAPHY */
    .contact-unified-container .col-md-5 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .contact-info-section {
        padding-right: 0;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        /* Removed margin top */
        text-align: center;
    }

    .contact-main-title {
        font-size: 1.75rem !important;
        line-height: 1.1;
        margin-bottom: 0.5rem !important;
    }

    .contact-lead {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit text lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 2. VERTICAL CONTACT BUTTONS (Email & Phone only) */
    .contact-methods {
        flex-direction: column !important;
        /* Stack vertically */
        align-items: stretch;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        padding: 0 1rem;
        /* Add side padding for cleaner look */
    }

    /* Hide WhatsApp (3rd button) on mobile since floating btn exists */
    .contact-methods a:nth-child(3) {
        display: none !important;
    }

    .contact-reach-item {
        padding: 0.75rem 1rem !important;
        width: 100% !important;
        /* Full width */
        height: auto !important;
        border-radius: 12px;
        justify-content: flex-start;
        /* Left align content */
        background: rgba(255, 255, 255, 0.06) !important;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-reach-item i {
        width: auto !important;
        height: auto !important;
        font-size: 1rem;
        border: none;
        background: transparent;
        display: block;
        color: #0d6efd;
        /* Brand color */
    }

    .contact-reach-text {
        display: block;
        /* Restore text */
        text-align: left;
    }

    .contact-reach-text .label {
        font-size: 0.6rem;
        line-height: 1;
        opacity: 0.7;
    }

    .contact-reach-text .value {
        font-size: 0.75rem;
        line-height: 1;
        font-weight: 600;
        white-space: nowrap;
    }

    /* 3. MOVE & COMPACT FORM */
    .glass-form-card {
        padding: 1.25rem !important;
        margin-top: 0 !important;
        background: rgba(255, 255, 255, 0.03);
        /* Lighter on mobile */
    }

    .form-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
        text-align: center;
    }

    #contactForm {
        --bs-gutter-y: 0.5rem !important;
    }

    .glass-form-card .form-control {
        height: 42px !important;
        font-size: 16px !important;
        /* Prevent iOS zoom */
        padding: 0.5rem 0.75rem !important;
    }

    .glass-form-card textarea.form-control {
        height: 80px !important;
    }

    .glass-form-card label {
        display: none;
        /* Hide labels, rely on placeholders */
    }

    .glass-form-card .form-submit {
        height: 45px !important;
        margin-top: 0.5rem !important;
        font-size: 0.95rem;
    }

    /* 4. HIDE PRIMARY EXTRA INFO */
    .contact-info-section .contact-faq-compact,
    .contact-info-section .contact-testimonial-compact {
        display: none !important;
    }

    /* 5. SHOW SECONDARY SECTION */
    /* 5. SHOW SECONDARY SECTION */
    .secondary-content-section {
        display: block !important;
        padding: 2rem 0 0;
        background: transparent !important;
    }

    .contact-faq-compact-laptop,
    .contact-testimonial-compact-laptop {
        padding: 0 1rem;
        border: none;
        background: transparent;
        box-shadow: none;
    }
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›" !important;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 0.75rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color, #3b82f6) !important;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

/* Container overrides for Scroll Tracker clearance */
@media (min-width: 576px) {
    .container {
        max-width: 510px !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 670px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 880px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1060px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1240px !important;
    }
}

/* Service Card Link Styles */
.service-card-link {
    display: block;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.service-card-link .service-card {
    cursor: pointer;
}

/* Comparison Table Styles */
.comparison-container {
    margin: 4rem 0;
}

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    margin-bottom: 0;
    color: #fff !important;
    background-color: transparent !important;
}

.comparison-table tr,
.comparison-table td,
.comparison-table th {
    background-color: transparent !important;
    color: #fff !important;
}

.comparison-table th {
    background: rgba(13, 110, 253, 0.3) !important;
    padding: 1.5rem !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.comparison-table td {
    padding: 1.2rem 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    vertical-align: middle !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.08) !important;
}

.tech-tag {
    background: rgba(13, 110, 253, 0.1);
    color: #3dcbfe;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(61, 203, 254, 0.2);
    display: inline-block;
    margin: 0.25rem;
}

/* Scroll Tracker Premium Styles */
#scroll-tracker-container {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 60vh;
    width: 18px;
    /* Slimmer for mobile */
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    display: flex;
}

@media (min-width: 992px) {
    #scroll-tracker-container {
        display: flex;
        right: 15px;
    }
}

#scroll-tracker-container.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-track {
    position: relative;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#scroll-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    height: 0%;
    border-radius: 10px;
    transition: height 0.1s linear;
}

#scroll-tracker-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #0f172a;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    z-index: 2;
    transition: top 0.1s linear, transform 0.2s ease;
}

#scroll-tracker-icon svg {
    width: 10px;
    height: 10px;
    filter: drop-shadow(0 0 5px var(--neon-accent, #00f3ff));
}

@media (min-width: 992px) {
    #scroll-tracker-container {
        right: 15px;
        width: 32px;
        /* Desktop width 32px */
    }

    #scroll-tracker-icon {
        width: 20px;
        height: 20px;
    }

    #scroll-tracker-icon svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    #scroll-tracker-container {
        right: 5px;
        height: 50vh;
    }

    #scroll-tracker-icon {
        width: 24px;
        height: 24px;
    }

    /* Hero Button Positioning */
    .speed-score-badge {
        margin-bottom: 0.5rem;
        /* Default for mobile */
    }

    @media (min-width: 992px) {
        .speed-score-badge {
            margin-bottom: 0;
            transform: translateY(-5px);
            /* Lift slightly on desktop */
            /* Add spacing if inline with other elements, or just adjusting flow */
            /* User said "better positioning". Current flow is vertical. 
               Let's try to put it inline with the actions or just tighten the space */
            top: 0;
        }

        /* Specific override for the container in index.ejs if needed. 
           But let's stick to the badge itself first. 
           The user's request implies it looks bad. 
           It was: Paragraph -> Badge -> Buttons.
           On desktop, maybe it should be: Paragraph -> Buttons -> Badge? 
           Or Paragraph (Badge inline?)
           
           Let's look at index.ejs again. 
           It is in a div with mb-4. 
           
           I will try to make the badge container float or sit nicely. 
           Actually, the safer bet for "position better" without design mockups is 
           improving spacing. 
        */
    }

    #scroll-tracker-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Speed Score Badge - Modern Glassmorphism Design */
.speed-score-badge {
    position: relative;
    display: inline-flex;
    padding: 2px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(111, 66, 193, 0.3));
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.2);
}

@media (min-width: 992px) {
    .speed-score-badge {
        margin-top: -10px;
        /* Pull it closer to text above */
        margin-bottom: 15px;
    }
}

.badge-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1, #0d6efd);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.badge-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    background: rgba(13, 110, 253, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.badge-icon {
    font-size: 1.25rem;
    color: #ffc107;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.badge-subtext {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

@media (max-width: 768px) {
    .speed-score-badge {
        padding: 1.5px;
    }

    .badge-content {
        gap: 0.5rem;
        padding: 0.55rem 1rem;
    }

    .badge-icon {
        font-size: 1.1rem;
    }

    .badge-text strong {
        font-size: 0.85rem;
    }

    .badge-subtext {
        font-size: 0.7rem;
    }
}

/* =========================================
   Custom Break for Laptop
   ========================================= */
.laptop-only-break {
    display: none;
}

@media (min-width: 992px) and (max-width: 1599px) {
    .laptop-only-break {
        display: block;
    }
}

/* =========================================
   Ultra-Wide Desktop Container (>1600px) - REVERTED per user request
   ========================================= */
/* @media (min-width: 1600px) {
    .container {
        max-width: 1520px !important;
    }
} */

@media (min-width: 1600px) {
    .home-hero .hero-copy h1 {
        font-size: 2.2rem !important;
        /* Slightly smaller than default maximum */
    }
}

/* =========================================
   Case Item Button Alignment
   ========================================= */
.case-footer {
    margin-top: auto !important;
}

@media (max-width: 480px) {
    .badge-content {
        gap: 0.45rem;
        padding: 0.5rem 0.9rem;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .badge-text strong {
        font-size: 0.8rem;
    }

    .badge-subtext {
        font-size: 0.68rem;
    }
}

/* =========================================
   Benefit Cards - Enhanced Design
   ========================================= */
.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #3dcbfe);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    background: rgba(13, 110, 253, 0.05);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.15);
}

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

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(61, 203, 254, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.benefit-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0d6efd, #3dcbfe);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon-wrapper::after {
    opacity: 0.3;
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: #3dcbfe;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper i {
    color: #fff;
    transform: scale(1.1);
}

.benefit-card h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #3dcbfe;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .benefit-icon-wrapper i {
        font-size: 1.75rem;
    }
}

/* Technology Section Hover Effects */
.tech-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 253, 0.4) !important;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.2);
}

.tech-tag:hover {
    background: rgba(13, 110, 253, 0.2) !important;
    border-color: rgba(13, 110, 253, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.article-tag-pill:hover {
    background: rgba(13, 110, 253, 0.25) !important;
    border-color: rgba(13, 110, 253, 0.45) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
    color: #fff !important;
}

/* Ecommerce Page Styles */
.process-step {
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(13, 110, 253, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #0d6efd;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .pricing-features li {
        justify-content: flex-start !important;
        margin-bottom: 0.5rem !important;
        display: flex;
        /* Ensure flex for justification */
        align-items: center;
    }

    .pricing-features {
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }
}

.error-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.letter-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .testimonial-card-lead {
        flex-direction: row !important;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }
}

/* Custom CTA Text for Magazine Online Page */
.custom-cta-text {
    font-size: 1.25rem;
    /* fs-5 equivalent */
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .custom-cta-text {
        font-size: 1rem;
        /* Smaller font on mobile */
        line-height: 1.6;
        padding: 0 1rem;
        /* Add horizontal padding */
        text-align: center;
        /* Ensure centered alignment if not inherited */
    }
}

/* Web App - New Sections */
.feature-box {
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.highlight-on-hover:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.highlight-bg-hover:hover {
    background: rgba(255, 255, 255, 0.05);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Custom Comparison Table */
.custom-comparison-table th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.custom-comparison-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.custom-comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Comparison Table Refined Styles */
/* Comparison Cards Layout */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.comparison-card {
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-card.card-saas {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.card-custom {
    background: rgba(13, 110, 253, 0.08);
    /* Subtle blue tint */
    border: 1px solid rgba(13, 110, 253, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.comparison-card.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.8), transparent);
}

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

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comparison-item .icon-wrapper {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
}

.comparison-item.downside .icon-wrapper {
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.comparison-item.upside .icon-wrapper {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.15);
}

.comparison-item .content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.comparison-item .content strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
}

.comparison-item.downside .content strong {
    color: rgba(255, 255, 255, 0.7);
}

.comparison-item .content span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-item.upside .content span {
    color: rgba(255, 255, 255, 0.85);
}

/* Icon styling adjustments */
.comparison-table-wrapper i {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Comparison Matrix (Table Layout) */
/* Comparison Matrix (Table Layout) */
.comparison-matrix-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    /* Space for the floating badge */
}

.comparison-matrix {
    display: flex;
    flex-direction: column;
    /* Glass Effect Table Container */
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* overflow: hidden; REMOVED to allow badge to protrude */
    backdrop-filter: blur(10px);
}

.matrix-header,
.matrix-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    /* Feature | Generic | Elevate */
    align-items: center;
    padding: 1.2rem 1.5rem;
}

.matrix-header {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.matrix-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.matrix-row:last-child {
    border-bottom: none;
}

.matrix-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Columns */
.col-feature {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.col-feature strong {
    color: #fff;
    font-size: 1rem;
}

.col-feature span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.col-generic,
.col-elevate {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.col-generic i,
.col-elevate i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Elevate Column Highlighting */
.col-elevate {
    position: relative;
    background: rgba(13, 110, 253, 0.05);
    /* Subtle Blue Tint for column */
    border-left: 1px solid rgba(13, 110, 253, 0.15);
    padding: 1rem;
    margin: -1.2rem 0;
    /* Stretch to fill row height */
    height: calc(100% + 2.4rem);
    /* Compensate margin */
    display: flex;
    align-items: center;
}

/* Badge in Header */
.elevate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.matrix-header .col-elevate {
    color: #0d6efd;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
}

.matrix-header .col-generic {
    color: rgba(255, 255, 255, 0.5);
    justify-content: flex-start;
}

/* Responsive Table */
@media (max-width: 768px) {
    .comparison-matrix-wrapper {
        margin: 0 -1rem;
        /* Full width on mobile */
    }

    .comparison-matrix {
        min-width: 700px;
        /* Force scroll */
    }

    .comparison-matrix-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    /* Fix spacing on mobile scroll */
    .col-elevate {
        margin: -1.2rem 0;
        height: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* Fix for Elevate Column Gap and Radii */
.col-elevate {
    margin-right: -1.5rem;
    padding-right: 1.5rem;
}

.matrix-header .col-elevate {
    border-top-right-radius: 1rem;
}

.comparison-matrix .matrix-row:last-child .col-elevate {
    border-bottom-right-radius: 1rem;
}

/* Fix for Pricing Section Visibility */
#preturi {
    position: relative;
    z-index: 10;
    /* Ensure it sits above any potential overlaps */
    background-color: #050812;
    /* Fallback if gradient fails */
}

/* =========================================
   Premium Pricing Cards & Toggle
   ========================================= */

/* Premium Glassmorphic Card */
.pricing-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Ensure uniform height */
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper_pricing {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pricing-card-premium:hover .service-icon-wrapper_pricing {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.3);
    background: rgba(13, 110, 253, 0.1);
}

.service-icon-wrapper_pricing img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pricing-card-premium:hover .service-icon-wrapper_pricing img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .pricing-card-premium {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    .pricing-header h3 {
        font-size: 1.35rem;
        /* Slightly smaller header */
    }

    .pricing-price .amount {
        font-size: 2.5rem;
        /* Smaller price font */
    }
}

.pricing-card-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(13, 110, 253, 0.1);
}

.pricing-card-premium.featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(13, 110, 253, 0.05));
    border: 1px solid rgba(13, 110, 253, 0.3);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

.pricing-card-premium.featured:hover {
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.25),
        0 0 0 1px rgba(13, 110, 253, 0.4);
}

/* Pricing Header */
.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #aeb9cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Segmented Toggle Control */
.pricing-toggle-group {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    position: relative;
    gap: 4px;
}

.toggle-price-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.toggle-price-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    /* Subtle hover hint */
}

.toggle-price-btn.active {
    color: #fff;
    background: #0d6efd;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

/* Price Content Styling */
.pricing-content {
    margin-top: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.amount-prefix {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.amount-value {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, #aeb9cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-left: 0.1rem;
}

.amount-currency {
    font-size: 0.5em;
    /* Relative to amount-value */
    font-weight: 700;
    color: #0d6efd;
    -webkit-text-fill-color: #0d6efd;
    /* Override gradient */
    vertical-align: middle;
    margin-right: 4px;
    position: relative;
    top: -0.1em;
}

.amount-suffix {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(13, 110, 253, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    display: block;
}

/* Premium Features List */
.pricing-features-premium {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features-premium li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features-premium li:last-child {
    border-bottom: none;
}

.pricing-features-premium i {
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(13, 110, 253, 0.3));
    flex-shrink: 0;
}

/* Animation */
.fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Article Layout Enhancements */
.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    /* Context for sticky */
}

@media (min-width: 992px) {
    .article-grid {
        grid-template-columns: 280px minmax(0, 1fr);
        /* Sidebar (TOC) + Main content */
        align-items: flex-start;
        gap: 2.5rem;
        display: grid !important;
    }

    .article-sidebar-col {
        grid-column: 1;
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 6rem !important;
        z-index: 10;
        height: fit-content;
    }

    .article-content-col {
        grid-column: 2;
        min-width: 0;
    }
}

@media (min-width: 1200px) {
    .article-grid {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 4rem;
    }
}

/* Premium Inline TOC (Mobile/Tablet) - Static */
.mobile-toc-inline {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(13, 110, 253, 0.03) 100%);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mobile-toc-inline .toc-header {
    font-weight: 700;
    color: var(--bs-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-toc-inline .toc-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-toc-inline .toc-link {
    display: block;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    padding-left: 0.75rem;
}

.mobile-toc-inline .toc-link:hover {
    color: #fff;
    border-left-color: var(--bs-primary);
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

/* Key Takeaways Box - Premium Redesign */
.key-takeaways {
    background: rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.key-takeaways::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0d6efd 0%, #6610f2 100%);
}

.key-takeaways-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.key-takeaways-list {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.key-takeaways-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.key-takeaways-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}

/* Table of Contents */
.toc-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.toc-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toc-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: block;
    line-height: 1.4;
    padding-left: 0.5rem;
    border-left: 2px solid transparent;
}

.toc-link:hover,
.toc-link.active {
    color: #fff;
    border-left-color: #0d6efd;
    padding-left: 0.75rem;
}

/* Share Icons in Sidebar */
.share-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.share-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.share-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.share-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.share-icon:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Callout Boxes - Universal Styles */
.callout {
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    border-radius: 1rem;
    border-left: 4px solid #0d6efd;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.callout strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.callout.warning {
    border-left-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.callout.warning strong {
    color: #ffc107;
}

.callout.success {
    border-left-color: #198754;
    background: rgba(25, 135, 84, 0.05);
}

.callout.success strong {
    color: #198754;
}

.callout.info {
    border-left-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.callout.info strong {
    color: #0d6efd;
}

/* Typography & Content Enhancements */
.article-content {
    font-size: 1.15rem;
    /* Increased for premium feel */
    color: rgba(255, 255, 255, 0.88);
}

.article-content p {
    margin-bottom: 2rem;
    line-height: 1.85;
    letter-spacing: 0.012em;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Premium Article Link Styling */
.article-content a:not(.btn):not(.stretched-link):not(.toc-link):not(.share-icon):not(.premium-cta-button) {
    color: #4dabf7;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0 2px;
}

.article-content a:not(.btn):not(.stretched-link):not(.toc-link):not(.share-icon):not(.premium-cta-button)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-content a:not(.btn):not(.stretched-link):not(.toc-link):not(.share-icon):not(.premium-cta-button):hover {
    color: #fff;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 4px;
}

.article-content a:not(.btn):not(.stretched-link):not(.toc-link):not(.share-icon):not(.premium-cta-button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.article-content h2 {
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.article-content h3 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.015em;
}

/* Blockquote - Premium Design */
.article-blockquote {
    margin: 4rem 0;
    padding: 3rem 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-left: 6px solid #0d6efd;
    border-radius: 0 2rem 2rem 0;
    font-size: 1.35rem;
    font-style: italic;
    color: #fff;
    line-height: 1.7;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.article-blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.15);
    font-family: serif;
    line-height: 1;
}

/* Articles Page Redesign Utilities */

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.articles-hero-grid {
    min-height: auto;
}

@media (min-width: 992px) {
    .articles-hero-grid {
        min-height: 550px;
    }
}

/* Bento Grid Transitions */
.article-hover-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.article-hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Sticky Nav Badge Logic */
#category-nav .btn {
    transition: all 0.2s ease;
    border-width: 1px;
}

#category-nav .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.w-fit {
    width: fit-content;
}

/* --- Sprint 3 Redesign: Hero & Nav --- */

/* Hero Typography */
.tight-heading {
    letter-spacing: -0.02em;
}

.tracking-wider {
    letter-spacing: 0.15em;
}

.gradient-text-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-gradient-glow {
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.15) 0%, rgba(5, 5, 7, 0) 70%);
    filter: blur(60px);
    z-index: 1;
}

.pointer-events-none {
    pointer-events: none;
}

/* Glass & Sticky Nav */
.glass-nav-bar {
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-pill {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-pill.active {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* SEO Accordion */
.custom-accordion .accordion-button::after {
    filter: invert(1);
    opacity: 0.5;
    transform: scale(0.8);
}

.custom-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #fff;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Article Badge Styling */
.article-badge,
.article-card .article-badge,
.related-articles .article-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6ea8fe !important;
    background: rgba(13, 110, 253, 0.15) !important;
    border: 1px solid rgba(13, 110, 253, 0.2) !important;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
    white-space: nowrap;
}

/* Responsive Article Image Containers */
.article-img-container-featured {
    min-height: 250px;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.article-img-container-standard {
    min-height: 250px;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.article-img-container-featured img,
.article-img-container-standard img {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}

@media (max-width: 991px) {

    .article-img-container-featured,
    .article-img-container-standard {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16/9 !important;
        flex: 0 0 auto !important;
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .article-img-container-featured {
        min-height: 100%;
    }

    .article-img-container-standard {
        min-height: 100%;
    }
}

/* --- Premium Article Layout Redesign (v3) --- */

/* 1. Immersive Hero Section */
.article-hero-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.article-hero-media {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    height: auto;
    min-height: 400px;
    max-height: 600px;
}

.article-hero-media img {
    transition: transform 0.8s ease;
}

.article-hero-wrapper:hover .article-hero-media img {
    transform: scale(1.03);
}

/* 2. Insights Dashboard Section */
.article-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.dashboard-card {
    flex: 1;
    min-width: 300px;
    background: rgba(13, 110, 253, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.dashboard-card:hover {
    background: rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
    transform: translateY(-5px);
}

.dashboard-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #66b0ff;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* Redefining Key Takeaways inside Dashboard */
.key-points-grid {
    display: grid;
    gap: 1rem;
}

.key-point-item {
    display: flex;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.key-point-icon {
    color: #0d6efd;
    font-size: 1.1rem;
}

/* 3. Floating Table of Contents (Desktop/Tablet) */
@media (min-width: 768px) {
    .toc-container {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        height: auto;
    }

    .toc-list {
        border-left: 2px solid rgba(255, 255, 255, 0.05);
        padding-left: 1.5rem;
    }

    .toc-link {
        display: block;
        padding: 0.5rem 0;
        color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        font-size: 0.95rem;
        text-decoration: none !important;
    }

    .toc-link:hover,
    .toc-link.active {
        color: #0d6efd;
        padding-left: 0.5rem;
    }
}

/* 4. Mobile Layout Adjustments */
@media (max-width: 991px) {
    .article-dashboard {
        flex-direction: column;
    }

    .dashboard-card {
        min-width: 100%;
    }

    .article-hero-media {
        min-height: auto !important;
        max-height: none !important;
        aspect-ratio: 16/9;
    }

    /* Floating "Jump to" Button for Mobile */
    .mobile-toc-trigger {
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
        z-index: 1000;
        background: #0d6efd;
        color: #fff;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 999px;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: transform 0.3s ease;
    }

    .mobile-toc-trigger:active {
        transform: scale(0.95);
    }
}

/* 5. Typography & Content Pacing */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.article-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.article-blockquote {
    border: none;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    font-style: italic;
    font-size: 1.4rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.article-blockquote::before {
    content: "“";
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.1);
    font-family: serif;
}


/* --- Refined Premium Touches for Dashboard --- */
.dashboard-card {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(13, 110, 253, 0.03) 100%) !important;
    border: 1px solid rgba(13, 110, 253, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(13, 110, 253, 0.05) !important;
}

.dashboard-card-title i {
    color: #0d6efd;
    filter: drop-shadow(0 0 5px rgba(13, 110, 253, 0.5));
}

.key-point-icon {
    filter: drop-shadow(0 0 3px rgba(13, 110, 253, 0.3));
}

/* Smooth transition for the immersive wrapper */
.article-hero-wrapper {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-hero-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

/* ==========================================================================
   PREMIUM ARTICLE REDESIGN (2026 REFINEMENT)
   ========================================================================== */

/* 1. Immersive Hero Wrapper */
.article-hero-immersive {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 20px;
    background: #050a15;
}

.article-hero-immersive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 10, 21, 0.4) 0%,
            rgba(5, 10, 21, 0.8) 70%,
            #050a15 100%);
    z-index: 1;
}

.article-hero-immersive img {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    object-fit: cover;
    transform: scale(1.05);
    /* Subtle zoom for depth */
    transition: transform 10s ease-out;
}

.article-hero-immersive:hover img {
    transform: scale(1);
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 4rem;
    z-index: 2;
    text-align: left;
}

@media (max-width: 991px) {
    .article-hero-overlay {
        padding: 2rem;
    }

    .article-hero-immersive img {
        height: 50vh;
    }
}

/* 2. Premium TOC Sidebar (Sticky) */
.toc-sidebar-sticky {
    position: sticky;
    top: 100px;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.toc-sidebar-sticky .toc-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.toc-sidebar-sticky .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-sidebar-sticky .toc-link {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.toc-sidebar-sticky .toc-link::before {
    content: "";
    position: absolute;
    left: -1.65rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-primary);
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}

.toc-sidebar-sticky .toc-link.active {
    color: #fff;
    padding-left: 0.5rem;
}

.toc-sidebar-sticky .toc-link.active::before {
    transform: translateY(-50%) scale(1);
}

/* 3. Article Content Refinements */
.article-rich-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.article-rich-text h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-rich-text p {
    margin-bottom: 1.8rem;
}

/* 4. Glassmorphic Dashboard */
.premium-dashboard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.premium-dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--bs-primary), var(--bs-info));
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--bs-primary), var(--bs-info));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease;
}

/* Mobile TOC Trigger - Deprecated, replaced by .mobile-toc-fab */

/* 5. Premium CTA Banner */
.premium-cta-banner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    /* overflow: hidden; Removed to allow button hover effects */
    margin: 4rem 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.premium-cta-banner:hover {
    border-color: rgba(13, 110, 253, 0.3);
}

.premium-cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.premium-cta-banner .premium-cta-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 1.2;
}

.premium-cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
}

.premium-cta-button {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    position: relative;
    z-index: 2;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.premium-cta-button:hover {
    filter: brightness(0.85);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.4);
}

.premium-cta-button i {
    transition: transform 0.3s ease;
}

.premium-cta-button:hover i {
    transform: translateX(5px);
}

/* Mobile TOC FAB */
.mobile-toc-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1040;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.mobile-toc-fab:hover,
.mobile-toc-fab:focus {
    transform: scale(1.1) rotate(5deg);
    background: #0b5ed7;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
    outline: none;
}

/* Mobile TOC Offcanvas */
.mobile-toc-offcanvas {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    height: auto !important;
    max-height: 85vh;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.mobile-toc-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
}

.mobile-toc-offcanvas .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
}

.mobile-toc-offcanvas .btn-close-white {
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-toc-offcanvas .btn-close-white:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.mobile-toc-offcanvas .offcanvas-body {
    padding: 2rem;
}

.mobile-toc-offcanvas .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-toc-offcanvas .toc-list li {
    margin-bottom: 0.5rem;
}

.mobile-toc-offcanvas .toc-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-toc-offcanvas .toc-link:hover,
.mobile-toc-offcanvas .toc-link:active,
.mobile-toc-offcanvas .toc-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--bs-primary);
    padding-left: 1.2rem;
}

/* Article Highlights Box */
.article-highlights-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.article-highlights-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bs-primary);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}

.highlights-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

/* Premium CTA Box */
.cta-premium-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cta-premium-box {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0;
    }
}


.cta-premium-box::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-premium-box * {
    position: relative;
    z-index: 1;
}

.cta-premium-box p {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-premium-box .button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Aesthetic Vitals Diagnostic Cards */
.vitals-diagnostic-container {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.diagnostic-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.diagnostic-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.diagnostic-card .metric-header {
    margin-bottom: 2rem;
}

.diagnostic-card .metric-name {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1;
}

.diagnostic-card .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

/* Diagnostic Scale Bar */
.diagnostic-scale {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    margin: 2rem 0 1rem 0;
}

.scale-segment {
    height: 100%;
}

.scale-good {
    width: 35%;
    background: #2ecc71;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}

.scale-needs {
    width: 40%;
    background: #f1c40f;
    opacity: 0.5;
}

.scale-poor {
    width: 25%;
    background: #e74c3c;
    opacity: 0.2;
}

.diagnostic-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

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

.value-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.value-range {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
}

.diagnostic-verdict {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.diagnostic-verdict p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

@media (max-width: 991px) {
    .vitals-diagnostic-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .vitals-diagnostic-container {
        grid-template-columns: 1fr;
    }

    .diagnostic-card {
        padding: 2rem;
    }
}

.vitals-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.vitals-table th {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.vitals-table td {
    padding: 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.vitals-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.vitals-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.vitals-table tr:last-child td {
    border-bottom: none;
}

/* Metric Badge */
.metric-badge-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.metric-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    flex-shrink: 0;
}

.metric-badge.lcp {
    background: linear-gradient(135deg, #0d6efd 0%, #33c1ff 100%);
}


.metric-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.metric-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Threshold Pills */
.threshold-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 100px;
}

.threshold-pill.pill-good {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.threshold-pill.pill-needs-improvement {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.threshold-pill.pill-poor {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.importance-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 200px;
}

@media (max-width: 768px) {
    .vitals-table-container {
        border: none;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        overflow: visible;
        border-radius: 16px;
        /* Merged from original */
    }

    .vitals-table,
    .vitals-table thead,
    .vitals-table tbody,
    .vitals-table th,
    .vitals-table td,
    .vitals-table tr {
        display: block;
        width: 100%;
        min-width: auto !important;
    }

    .vitals-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .vitals-table tr {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        margin-bottom: 1.5rem;
        padding: 1rem;
        backdrop-filter: blur(10px);
    }

    .vitals-table th {
        /* Merged from original */
        padding: 1rem;
    }

    .vitals-table td {
        border: none;
        padding: 0.75rem 0.5rem;
        position: relative;
        text-align: right !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* Original padding: 1rem; is overridden by 0.75rem 0.5rem */
    }

    .vitals-table td:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
        text-align: left !important;
        display: block;
    }

    .vitals-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 800;
        font-size: 0.7rem;
        text-transform: uppercase;
        color: var(--bs-primary);
        letter-spacing: 1px;
    }
}


@media (max-width: 991px) {
    .cta-premium-box {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .cta-premium-box {
        padding: 1.75rem;
        text-align: center;
    }

    .cta-premium-box .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .vitals-thresholds-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .vitals-threshold-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
    }

    .vitals-threshold-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .vitals-value {
        font-size: 1.25rem;
    }
}

/* =========================================
   Marketing CTA Featured Design
   ========================================= */

.cta-marketing-featured {
    background: radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.15), transparent 50%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(13, 110, 253, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Enhanced Typography for Desktop */
@media (min-width: 992px) {
    .cta-marketing-featured h3 {
        font-size: 2.2rem !important;
        background: linear-gradient(135deg, #ffffff 0%, #cbdcfc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }

    .cta-marketing-featured p.lead {
        font-size: 1.15rem !important;
        max-width: 90%;
    }
}

/* Accessibility Contrast Fixes */
.text-success-contrast {
    color: #75b798 !important;
    /* AA contrast on dark background */
}