/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #d2451f;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #2b1d15;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
   font-family: "Montserrat", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: #f6f1ea;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--SecondaryColor);
    font-size:2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;font-family: "Zilla Slab", serif;
}

h1,h2,h3,h4.h5,h6{font-family: "Zilla Slab", serif;}
.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}


.same-heading h3 {
   
    color: #122939;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;font-family: "Zilla Slab", serif;
}

.same-heading p {
    color: #000000B2;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}




.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center :is( .max-wid-50,  .max-wid-80) {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
 

}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: var(--PrimaryColor);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--SecondaryColor) !important;
    color: var(--PrimaryColor) !important;
    border-color: var(--SecondaryColor) !important;
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: transparent;
    color: var(--SecondaryColor);
    border-color: var(--SecondaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--SecondaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--SecondaryColor) !important;
}

.btn-secondary {
    background: var(--SecondaryColor);
    border: solid 1px var(--SecondaryColor);
    color: var(--WhiteColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor) !important;
border-color:var(--SecondaryColor) !important;
color: var(--WhiteColor) !important;
}


.btn-outline-white {
    background: transparent;
    color: var(--WhiteColor);
    border-color: var(--WhiteColor);
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
    background: var(--WhiteColor) !important;
    color: var(--PrimaryColor) !important;
    border-color: var(--WhiteColor) !important;
}


.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: var(--PrimaryColor);
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important ;
color: var(--WhiteColor) !important;
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 99;background: #F6F1EA;
}

.header.headerfix {
    background: #F6F1EA;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}

/* Inner pages header */
.header.inner-header {
    background: var(--WhiteColor);
    border-bottom: 1px solid #EFEFEF;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header.inner-header .nav-links a:not(.btn) {
    color: var(--BlackColor);
}

.header.inner-header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}

.header.inner-header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 1rem;}



.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: var(--BlackColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}
.header .nav-links .explore-btn{color: var(--PrimaryColor) !important;}

.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}



.hero-section {
position: relative;
padding: 6rem 0rem 5rem;
background: url(../images/topo.png)no-repeat center right , #F6F1EA;
overflow: hidden;
 background-size: 40%;
/* margin-top: -7rem; */
display: flex; align-items: center;justify-content: center;
}




/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  border-radius: 1rem;
}
.hero-section  .section-bottom-btn{margin: 2rem 0;}
/* Title */
.hero-section h1 {
    font-size: clamp(42px, 6.2vw, 78px);
  font-weight: 700;
  color: var(--SecondaryColor);
  line-height: 1;font-family: "Zilla Slab", serif;
}
.hero-section .img-bx{text-align: center;}
.hero-section .img-bx img{max-height: 500px;}

.heading-primary{color: var(--PrimaryColor) !important;}

/* Text */
.hero-section p {
  font-size: 1rem;
  color: var(--BlackColor);
  line-height: 1.8;
}

.primary-text{color: var(--PrimaryColor); font-size: 0.8rem; font-weight: 400; letter-spacing: 11%; text-transform: uppercase; margin-bottom: 0.8rem;}
.hero-section .sedi-text{font-size: 1rem;
  color: var(--PrimaryColor); font-weight: 600;
  line-height: 1.8;}
 .hero-section  .sub-title{font-size: 1rem;
  color: #9a8979; font-weight: 600;
  line-height: 1.8; margin: 0.6rem 0 0;}

.download-btns .btn{    display: inline-flex;
    align-items: center;
    text-align: left;
    transition: all .2s ease;
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 1.5rem;

    width: 100%;
    max-width: max-content;
    gap: .5rem;}

.download-btns .btn-primary img {
    width: 1.5rem;
    height: auto;
    filter: invert(0) brightness(19.5);
} 
.download-btns .btn .light-title {
    display: block;
    font-size: .6rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: normal;
}

.digitallife-section{background: linear-gradient(to right, var(--SecondaryColor) 70%,var(--PrimaryColor) );}


/* =========================================
   IDENTITY SECTION
   ========================================= */
   /* .identity-section{background: #f6f1ea;} */
.identity-section .identity-card {
    background: var(--WhiteColor);
    border-radius: 1.2rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 16px rgba(43, 29, 21, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.identity-section .identity-card:hover {
    box-shadow: 0 8px 32px rgba(43, 29, 21, 0.13);
    transform: translateY(-4px);
}

.identity-section .identity-card .identity-card-icon {
    width: 3.2rem;
    height: 3.2rem;
    background: #fbe9e4;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--PrimaryColor);
    flex-shrink: 0;
}

.identity-section .identity-card .identity-card-icon svg,
.identity-section .identity-card .identity-card-icon i {
    width: 1.4rem;
    height: 1.4rem;
}

.identity-section .identity-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--SecondaryColor);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.identity-section .identity-card p {
    font-size: 0.9rem;
    color: #00000099;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   ONE DIGITAL APP SECTION
   ========================================= */


.one-digitalapp-section, .community-section{background:#efe7dc;}

.one-digitalapp-section .app-screen-item {
    text-align: center;

}

.one-digitalapp-section .app-screen-item .app-screen-img {
 
     border:solid 6px var(--SecondaryColor); border-radius: 30px; overflow: hidden;    box-shadow: rgba(43, 29, 21, 0.45) 0px 28px 50px -24px;
}

.one-digitalapp-section .app-screen-item .app-screen-img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;

}

.one-digitalapp-section .app-screen-item .app-screen-caption {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--SecondaryColor);
    margin-top: 1.2rem;
}


.pilot-section .services-list{display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;}
.pilot-section .services-list .services-tag{border: solid 1px #f6f6f6; background: var(--WhiteColor); font-size: 0.8rem; color: var(--SecondaryColor); font-weight: 600; padding: 0.6rem 1rem; border-radius: 50px;}


/* =========================================
   PILOT SECTION - RELEVANT CARD
   ========================================= */
.pilot-section .relevant-card {
    background: var(--WhiteColor);
    border-radius: 1.2rem;
    padding: 2rem 2.2rem;
    box-shadow: 0 4px 32px rgba(43, 29, 21, 0.08);
}

.pilot-section .relevant-card .relevant-card-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00000066;
    margin-bottom: 1.4rem;
}

.pilot-section .relevant-card .relevant-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pilot-section .relevant-card .relevant-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--SecondaryColor);
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0ece7;
}

.pilot-section .relevant-card .relevant-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pilot-section .relevant-card .relevant-list li:first-child {
    padding-top: 0;
}

.pilot-section .relevant-card .relevant-icon {
    width: 2rem;
    height: 2rem;
    background: #fbe9e4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColor);
    flex-shrink: 0;
}


/* =========================================
   COMMUNITY SECTION
   ========================================= */
.community-section .community-card {
    background: var(--WhiteColor);
    border-radius: 1.2rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(43, 29, 21, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.community-section .community-card:hover {
    box-shadow: 0 8px 32px rgba(43, 29, 21, 0.13);
    transform: translateY(-4px);
}

.community-section .community-card .community-card-logo {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.4rem;
    flex-shrink: 0;
}

.community-section .community-card .community-card-logo.logo-dark {
    background: var(--SecondaryColor);
    color: var(--PrimaryColor);
}

.community-section .community-card .community-card-logo.logo-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
}

.community-section .community-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--SecondaryColor);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.community-section .community-card p {
    font-size: 0.9rem;
    color: #00000099;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.community-section .community-card .community-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--PrimaryColor);
    margin-top: 1.6rem;
    transition: gap 0.2s ease;
}

.community-section .community-card .community-card-link:hover {
    gap: 0.7rem;
}


/* =========================================
   DIGITAL IDENTITY SECTION
   ========================================= */
.digital-identity-section .di-card {
    background: var(--WhiteColor);
    border-radius: 1.2rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 16px rgba(43, 29, 21, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.digital-identity-section .di-card:hover {
    box-shadow: 0 8px 32px rgba(43, 29, 21, 0.13);
    transform: translateY(-4px);
}

.digital-identity-section .di-card .di-card-icon {
    width: 3.2rem;
    height: 3.2rem;
    background: #fbe9e4;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--PrimaryColor);
   
}

.digital-identity-section .di-card .di-card-icon i {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
}

.digital-identity-section .di-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--SecondaryColor);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.digital-identity-section .di-card p {
    font-size: 0.9rem;
    color: #00000099;
    line-height: 1.7;
    margin: 0;
}

.digital-identity-section .di-bottom {
    margin-top: 1rem;
}

.digital-identity-section .di-bottom p {
    font-size: 0.95rem;
    color: #00000099;
    line-height: 1.8;
    max-width: 46rem;
    margin: 0 auto 1.6rem;
}

.digital-identity-section .di-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.digital-identity-section .di-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--WhiteColor);
    border: 1.5px solid #e8e0d8;
    border-radius: 50px;
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--SecondaryColor);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.digital-identity-section .di-pill svg,
.digital-identity-section .di-pill i {
    color: var(--PrimaryColor);
    flex-shrink: 0;
    width: 0.9rem;
    height: 0.9rem;
}

.digital-identity-section .di-pill:hover {
    border-color: var(--PrimaryColor);
    box-shadow: 0 2px 10px rgba(210, 69, 31, 0.15);
}

.digital-identity-section .di-quote-card {
    background: var(--SecondaryColor);
    border-radius: 1.2rem;
    padding: 3rem 4rem;
    text-align: center;
    
    width: 100%; max-width: 60%;
    margin: 3rem auto 0;
}

.digital-identity-section .di-quote-card .di-quote-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 1.2rem;
}

.digital-identity-section .di-quote-card p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--WhiteColor);
    line-height: 1.6;
    max-width: 52rem;
    margin: 0 auto;
    font-family: "Zilla Slab", serif;
}

.digital-identity-section .di-quote-card p strong {
    font-weight: 700;
    color: var(--WhiteColor);
}


/* =========================================
   CTA DOWNLOAD SECTION
   ========================================= */
.cta-download-section {
    background: radial-gradient(ellipse at 80% 50%, rgba(160, 45, 15, 0.55) 0%, transparent 55%), #1c0d08;
}



.cta-download-section .cta-download-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 2rem;
}

.cta-download-section .cta-download-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.9rem;
    padding: 1rem 1.2rem;
    color: var(--WhiteColor);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-download-section .cta-download-row:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-download-section .cta-download-row.cta-download-row--dim {
    opacity: 0.55;
    pointer-events: none;
}

.cta-download-section .cta-download-row .cta-download-row-icon {
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-download-section .cta-download-row .cta-download-row-icon.cta-download-row-icon--primary {
    background: var(--PrimaryColor);
}

.cta-download-section .cta-download-row .cta-download-row-icon.cta-download-row-icon--dim {
    background: rgba(255, 255, 255, 0.07);
}

.cta-download-section .cta-download-row .cta-download-row-icon img {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    filter: invert(0) brightness(24);
}

.cta-download-section .cta-download-row .cta-download-row-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cta-download-section .cta-download-row .cta-download-row-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--WhiteColor);
}

.cta-download-section .cta-download-row .cta-download-row-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.cta-download-section .cta-download-row .cta-download-row-arrow {
    width: 1.1rem;
    height: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.cta-download-section .cta-soon-badge {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    flex-shrink: 0;
}

.cta-download-section .cta-download-phone {
    display: flex;
    justify-content: center;
}

.cta-download-section .cta-download-phone img {
   max-height: 40rem; 
   border: solid 6px var(--SecondaryColor); border-radius: 30px;
    /* filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5)); */
}


/* =========================================
   LEARN SECTION
   ========================================= */
.learn-section .learn-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--WhiteColor);
    border-radius: 0.9rem;
    padding: 1.1rem 1.4rem;
    color: var(--SecondaryColor);
    font-size: 0.95rem;
    font-weight: 600;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.learn-section .learn-link-card:hover {
    box-shadow: 0 6px 24px rgba(43, 29, 21, 0.12);
    transform: translateY(-2px);
}

.learn-section .learn-link-card svg {
    width: 1rem;
    height: 1rem;
    color: var(--PrimaryColor);
    flex-shrink: 0;
}


/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #1c0d08;
    padding: 3rem 0 2rem;
}

.footer .footer-top {
  
    padding-bottom: 2rem;
}

.footer .download-btns{
    display: flex; flex-wrap: wrap;
    gap: 0.5rem; justify-content: end;
}

.footer .footer-logo img {
    height: 3rem;
    width: auto;
    margin-bottom: 1.2rem;
    display: block;
}

.footer .footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

.footer .footer-store-btns {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.footer .footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.3rem;
    border-radius: 0.7rem;
    transition: opacity 0.2s ease;
}

.footer .footer-store-btn:hover {
    opacity: 0.85;
}

.footer .footer-store-btn img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
}


.footer .footer-divider {
    border: none;
    border-top: 1px solid rgb(255 255 255 / 40%);
    margin: 0 0 1.8rem;
}

.footer .footer-legal p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 56rem;
}

.footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer .footer-bottom > p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer .footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer .footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer .footer-links a:hover {
    color: var(--WhiteColor);
}






.Downloads{    background: #f6f6f6;}
.Downloads__hero {
	background: var(--PrimaryColor);
	padding: 6.25rem 0;
	color: #fff;
	position: relative;
	overflow: hidden
}

/* .Downloads__hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1
} */

.Downloads__hero__content {
	position: relative;
	z-index: 2
}

.Downloads__hero__title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	line-height: 1.2;    color: #fff;
}

.Downloads__hero__subtitle {
	font-size: 1rem;
	opacity: .9;
	line-height: 1.5;    color: #fff;
}

.Downloads__content {
	padding: 5rem 0
}

.Downloads__section {
	margin-bottom: 5rem
}

.Downloads__section:last-child {
	margin-bottom: 0
}

.Downloads__section__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem
}

.Downloads__section__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain
}

.Downloads__section__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0
}

.Downloads__section__subtitle {
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
	margin: 2rem 0;
	color: var(--BlackColor);
	position: relative;
	padding: .5rem 0 .5em 2.5rem
}

.Downloads__section__subtitle::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 0;
	height: 1px;
	width: 2.2rem;
	background: #000;
	z-index: 1
}

.Downloads__section__subtitle::after {
	content: attr(data-text);
	position: relative;
	background: #f6f6f6;
	z-index: 2;
	display: inline-block
}

.Downloads__subsection {
	margin-bottom: 4rem
}

.Downloads__subsection:last-child {
	margin-bottom: 0
}

.Downloads__subsection__title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--BlackColor);
	position: relative;
	padding: 1rem 0
}

.Downloads__subsection__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: .125rem;
	background: var(--PrimaryColor);
	border-radius: .0625rem
}

.Downloads__separator {
	text-align: center;
	margin: 3rem 0;
	padding: 0 1rem
}

.Downloads__separator__text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--PrimaryColor);
	text-transform: uppercase;
	letter-spacing: .025rem;
	white-space: nowrap
}

.Downloads__app-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.Downloads__app-card__content-wrapper {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%
}

.Downloads__app-card__content-wrapper:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15)
}

.Downloads__app-card__content-wrapper--unavailable:hover {
	transform: none;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1)
}

.Downloads__app-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	flex: 1
}

.Downloads__app-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0
}

.Downloads__app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.Downloads__app-card__icon img[src*=apple-icon],
.Downloads__app-card__icon img[src*=clear-app-store],
.Downloads__app-card__icon img[src*=play-store-icon] {
	filter: brightness(0.7) contrast(1.2)
}

.Downloads__app-card__icon--placeholder {
	background: #e5e7eb;
	border: 1px solid #d1d5db
}

.Downloads__app-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%
}

.Downloads__app-card__name {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: .5rem;
	line-height: 1.3
}

.Downloads__app-card__description {
	font-size: .875rem;
	color: #6b7280;
	line-height: 1.4;
	margin: 0 0 1rem 0
}

.Downloads__app-card__action {
	text-align: center;
	width: 100%
}

.Downloads__app-card__availability {
	font-size: .875rem;
	color: var(--PrimaryColor);
	margin-bottom: .5rem;
	font-weight: 600
}

.Downloads .download-with-login-btn {
	display: flex;
	align-items: center;
	gap: .5rem
}

.Downloads__download-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__download-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__download-btn:active {
	transform: translateY(0)
}

.Downloads__download-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__download-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__download-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__download-btn--disabled:focus {
	box-shadow: none
}

.Downloads__login-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__login-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__login-btn:active {
	transform: translateY(0)
}

.Downloads__login-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__login-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__login-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__login-btn--disabled:focus {
	box-shadow: none
}

.Downloads__status {
	display: inline-block;
	font-size: .9rem;
	font-weight: 600;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-top: 6px
}

.Downloads__status--in-review {
	background-color: #e0e0e0;
	color: #555
}

.Downloads__status--live {
	background-color: #28a745;
	color: #fff
}

.Downloads__featured {
	padding: 5rem 0;
	background: #fff
}

.Downloads__featured .Downloads__featured__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0 0 3rem;
	text-align: center
}

.Downloads__featured .download-platform-card {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	text-align: center;
	height: 100%
}

.Downloads__featured .iconbx {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center
}

.Downloads__featured .iconbx img {
	width: 100%;
	max-width: 39%
}

.Downloads__featured h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: 1rem;
	line-height: 1.3
}

.Downloads__featured .btn-disable {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none;
	font-size: .9rem;
	padding: .5rem .9375rem;
	border-radius: 10px;
	font-weight: 400
}




/* Wrapper */
.dw-cookie-wrapper {
   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;
}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem; /* 1200px */
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}

.inner-banner {
    padding: clamp(5rem, 7vw, 5rem) 0;    background: var(--PrimaryColor);
  
}
.inner-banner h1{    color: var(--WhiteColor);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;}


.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
    background: #de4c2c0d;
    padding: 1.2rem;
    border-left: 4px solid var(--PrimaryColor);
    margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}



