/* ===================================
   Reset & Base Styles
   =================================== */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;

}

html {
    scroll-behavior: smooth;
    font-size: 16px;
        line-height: 18px;

}

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

img {
    display: block;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */

.section-title {
    font-size: 2.5rem;
    color: rgba(28, 35, 51, 1);
    letter-spacing: -2%;
    line-height: 52px;
    font-weight: 700;
}

.section-intro {
    font-size: 1.125rem;
    color: rgba(74, 85, 101, 1);
    line-height: 28px;

}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    display: flex;
    align-items: center;
    max-width:1240px;
    height: 72px;
    border-radius: 40px;
    background-color: #fff;
    padding: 8px 20px;
    border-bottom: 1px solid #e8f1ff;
    
    /* Fixed Positioning for HubSpot Compatibility */
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%; /* Responsive width */
    z-index: 1000;

    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1);

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo{
   max-width:191px;
   max-height: 38px;
   width: 100%;
   height: 100%;
}

.logo img {
    width: auto;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* Hide mobile language switcher on desktop */
.mobile-lang-switcher {
    display: none;
}

.nav-link {
    color: rgba(74, 85, 101, 1) !important;
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    position: relative;
    text-decoration: none !important;
}

.nav-link:hover {
    color: #4a90e2 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #3E6BB7 !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background-color: #3E6BB7;
}

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

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher .lang-link {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e2939;
    text-decoration: none;
    transition: all 0.2s ease;
}

.language-switcher .lang-link:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-demo {
    background: linear-gradient(180deg, #7BB3DF 0%, #467DC8 100%);
    color: white !important;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: normal;
}

/* Reset P alignment in HubSpot */
.btn-demo p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

.arrow-img {
    margin-top: 0;
    width: 15px;
    height: 12px;
}

/* ===================================
   Hamburger Menu
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: rgba(70, 125, 200, 1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(136.54deg, #F2F7FC -2.74%, #E1EEF8 48.24%, #A5CEEB 98.31%);
    padding: 1.2rem 0 2rem 0;
    min-height: 650px;
    margin: 1rem 1rem 0 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}
.hero::after{
    content:'';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 352px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 19.46%, #FFFFFF 90%);
}

.hero .container {
    width: 100%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    padding-top: 170px;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.25rem;
    color:  rgba(30, 41, 57, 1);
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -2%;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #3E6BB7 0%, #A5CEEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(74, 85, 101, 1);
    line-height: 28px;
    font-weight: 400;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-demo-hero {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-demo-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(74, 144, 226, 0.4);
}

.btn-secondary-hero {
    background-color: white;
    border: 1px solid rgba(70, 125, 200, 1);
    color:rgba(70, 125, 200, 1);
    padding: 0.85rem 1.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    border-color: #4a90e2;
    background-color: #f8fbff;
}

/* ===================================
   Dashboard Mockup
   =================================== */
.image-dash-container{
    width:100%;
    margin: 50px auto 0px auto;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid rgba(165, 206, 235, 0.5);
    background: linear-gradient(270deg, #CAE1F3 -6.41%, rgba(202, 225, 243, 0) 50.26%, #CAE1F3 106.92%);

}


.dashboard-img {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ===================================
   Dashboard Stats Section (below hero)
   =================================== */
.dashboard-section {
    padding: 5rem 0;
    background-color: #fff;
}

.dashboard-preview {
    position: relative;
    margin-bottom: 3rem;
}


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

.stat-item {
    width: 100%;
    max-width: 240px;
    text-align: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color:rgba(70, 125, 200, 1);
    line-height: 44px;
    letter-spacing: -2%;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(74, 85, 101, 1);
    font-size: 1rem;
    line-height: 24px;
}

/* ===================================
   Features Highlight Section
   =================================== */
.features-highlight {
    padding: 5rem 0;
    background-color: #fff;
}

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

.features-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.features-content h2{
    margin-bottom: 24px;
}
.features-content .section-intro{
    margin-bottom: 24px;
}


.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid rgba(229, 231, 235, 1);
    max-width: fit-content;
    max-height: 44px;
    margin-bottom: 16px;
    background-color: white;

}

.tag p {
    font-size: 1rem;
    line-height: 18px;
    font-weight: 500;
    color: rgba(28, 35, 51, 1);
}
.feature-item {
    display: flex;
    align-items: center;
    color: rgba(74, 85, 101, 1);
    font-size: 1.125rem;
    line-height: 28px;
    font-weight: 500;
    gap: 12px;
}
.feature-item p{
    line-height: 28px;
}
.feature-title{
    font-weight: 600;
    color:rgba(28, 35, 51, 1);
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.features-image {
    display: flex;
    justify-content: center;
    height: 100%;
}
.features-image img{
  object-fit: cover;
}
.features-btn {
    margin-top: 40px;
    max-width: 362px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(70, 125, 200, 1);
    color:rgba(70, 125, 200, 1);
    gap: 8px;
    padding: 0.85rem 1.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-secondary{
    margin-top: 3rem;
    max-width: fit-content;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(70, 125, 200, 1);
    color:rgba(70, 125, 200, 1);
    gap: 8px;
    padding: 0.85rem 1.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;   
}

.feature-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ===================================
   Platform Features - Tabbed Section
   =================================== */
.platform-features-tabbed {
    padding: 5rem 0;
    background: #fff;
}

.platform-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.tabs-container {
    margin-top: 3rem;
  
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 40px;
    padding: 12px;
    max-width: fit-content;
    margin:0 auto 30px auto ;
    
}

.tab-btn {
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 30px;
    font-weight: 500;
    color: rgba(74, 85, 101, 1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: rgba(165, 206, 235, 1);
    background: rgba(242, 247, 252, 0.5);
}

.tab-btn.active {
    background: rgba(225, 238, 248, 1);
    color: rgba(70, 125, 200, 1);
    font-weight: 600;
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    display: none;
    opacity: 0;
    animation: fadeOut 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

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

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

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

.platform-card-item {
    background: white;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 20px;
    padding: 24px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F4F6 100%);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1);


}



.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(28, 35, 51, 1);
    letter-spacing: -2%;
    line-height: 32px;
}

.card-description {
    font-size: 1rem;
    color: rgba(74, 85, 101, 1);
    line-height: 1.5rem;
}

.card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}



.platform-cta {
    margin: 3rem auto 0;
    display: block;
}

/* ===================================
   Security Section
   =================================== */
.security-section {
    padding: 5rem 0;
    background-color: #fff;
}
.security-section .container {
    text-align: center;
}
.security-content{
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.security-item {
    padding: 2.5rem 1.5rem;
    gap: 1.9rem;
    border-radius: 20px;
    max-width: 350px;
    background: linear-gradient(250.47deg, #E1EEF8 0%, #F2F7FC 99.15%);
    border: 1px solid rgba(202, 225, 243, 1);
    display: flex;
    flex-direction: column;
    align-items: baseline;
    position: relative;
    overflow: hidden;

}
.security-item::after{
    content: url(./images/_common/GDPR-768x768.svg);
    position: absolute;
    right: 0;
    top: 0;
}

.security-item img {
   width: 48px;
   height: 48px;
}
.security-content-2{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: baseline;
    text-align: left;
   
}
.security-content-2 h3 {
    color:rgba(28, 35, 51, 1);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -2%;
    line-height: 1.625rem;
}

.security-content-2 p {
    color:  rgba(74, 85, 101, 1);
    line-height: 24px;
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    padding: 5rem 0;
}
.why-section .security-content{
    max-width: 800px;
}

.why-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 40px 32px 52px 32px;
    border-radius: 20px;
    max-width: 610px;
    gap: 32px;
    border: 1px solid rgba(229, 231, 235, 1);
}
.why-card.with{
    background: linear-gradient(250.47deg, #E1EEF8 0%, #F2F7FC 99.15%);
border-top: 1px solid rgba(225, 238, 248, 1)
}
.why-card ul{
  list-style: none;
  

}
.why-card ul li{
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}
.why-card h3 {
    color:  rgba(28, 35, 51, 1);
    font-size: 1.75rem;
    line-height:2.25rem;
    letter-spacing: -2%;
    
}
.why-img-con{
 width: 24px;
    height: 24px;
}
.why-icon{
    object-fit: cover;
   
}
.why-card ul li p {
    color: rgba(74, 85, 101, 1);
    font-size: 1.125rem;
    line-height: 28px;
    font-weight: 500;
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial-section {
    padding: 5rem 0;
}

.testimonial-card {
    margin-top: 3rem;
    border-radius: 20px;
    display: flex;
    gap: 0;

}
.testimonial-image{
    max-height: 385px;
    max-width: 577px;

}
.testimonial-img {
    border-radius: 20px 0 0 20px;
    height: 100%;
    object-fit: cover;
}
.testimonial-content{
    padding:3rem;
    gap: 40px;
    border-radius: 0 20px 20px 0;
    border: 1px solid rgba(229, 231, 235, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}
.testimonial-info h4 {
    color: rgba(28, 35, 51, 1);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 28px;
    letter-spacing: -2%;
}

.testimonial-info p {
    color: rgba(74, 85, 101, 1);
    font-size: 0.875rem;
    line-height: 20px;

}
.testimonial-link{

display: flex;
align-items: center;
gap: 8px;

}
.testimonial-link img{
    width: 15px;
    height: 12.5px;
}
.testimonial-link p{
color: rgba(70, 125, 200, 1);

    font-weight: 600;
    text-decoration: underline;
}

.testimonial-text {
    color: rgba(30, 41, 57, 1);
    font-weight: 600;
    font-size:1.75rem;
    letter-spacing: -2%;
    line-height: 40px;
    font-style: italic;
}

/* ===================================
   Benefits Section
   =================================== */

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

.benefits-section .container .btn-demo{
    margin: 0 auto;
    margin-top: 3rem;
}
.benefits-cards {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}

.benefit-item {
    width: 100%;
    max-width: 295px;
    max-height: 324px;
    padding: 40px 24px;
    border-radius: 20px;
    gap: 40px;
    border: 1px solid rgba(229, 231, 235, 1);
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F4F6 100%);
    border: 1px solid rgba(229, 231, 235, 1);
    display: flex;
    flex-direction: column;
}
.benefit-content{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: left;
}
.benefit-num {
    font-weight: 700;
    color: rgba(70, 125, 200, 1);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 44px;
    letter-spacing: -2%;
}

.benefit-item h3 {
    color: rgba(28, 35, 51, 1);
    font-size: 1.25rem;
    line-height: 28px;
    letter-spacing: -2%;

}

.benefit-item p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}


.faq-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 150px;
}

.faq-intro .section-title {
    font-size: 2.5rem;
    color: rgba(28, 35, 51, 1);
    line-height: 52px;
    font-weight: 700;
}

.faq-intro .section-intro {
    color: rgba(74, 85, 101, 1);
    font-size: 1rem;
    line-height: 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: rgba(249, 250, 251, 1);
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px 28px;
    gap: 12px;
}



.faq-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    outline: none !important;
}


.faq-number {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(28, 35, 51, 1);
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(28, 35, 51, 1);
    line-height: 24px;
}

.faq-chevron {
    flex-shrink: 0;
    color: rgba(74, 85, 101, 1);
    transition: transform 0.3s ease;
}

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

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-accordion-content p {
    color: rgba(74, 85, 101, 1);
    font-size: 1rem;
    line-height: 24px;
    margin: 0;
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta {
    padding: 5rem 0;
  
}
.final-cta .container {
    background: linear-gradient(136.54deg, #F2F7FC -2.74%, #E1EEF8 48.24%, #A5CEEB 98.31%);
    border-radius: 20px;
    padding: 100px 80px ;
    gap: 48px;
}
.final-cta .container .btn-demo{
    margin: 0 auto;
    margin-top: 3rem;
}


/* ===================================
   Footer
   =================================== */
.footer {
    background: rgba(3, 7, 18, 1);
    color: rgba(249, 250, 251, 1);
    position: relative;
    overflow: hidden;
}

.footer-glow-left {
    position: absolute;
    left: 0;
    top: 0%;
    pointer-events: none;
    opacity: 0.6;
}

.footer-glow-left img {
    width: 300px;
    height: auto;
}

.footer-glow-right {
    position: absolute;
    right: 0;
    bottom:0;
    pointer-events: none;
    opacity: 0.6;
}

.footer-glow-right img {
    width: 300px;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding: 80px 0px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    height: auto;
    margin-bottom: 8px;
}

.footer-description {
    color: rgba(209, 213, 220, 1);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li {
    margin-bottom: 0;
}

.footer-col a {
    color: rgba(209, 213, 220, 1) !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none !important;
}

.footer-col a:hover {
    color: #7BB3DF !important;
}

.footer-contact li {
    color: rgba(209, 213, 220, 1);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(188, 197, 208, 0.2);
}
.footer-bottom .container {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(209, 213, 220, 1);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
}

/* ===================================
   Scroll Animations
   =================================== */

/* Base state for animated elements */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when in viewport */
.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in only (no translate) */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.active {
    opacity: 1;
}

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for list items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Floating animation for cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-on-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-on-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Pulsing glow effect */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(74, 144, 226, 0.5);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ===================================
   Responsive Design - Mobile First
   =================================== */

/* Tablet and below (1024px and down) */
@media (max-width: 1024px) {
    .header {
        top: 0;
        width: 100%;
        border-radius: 0;
        left: 0;
        transform: none;
    }

    .hero-content{
        padding-top: 150px;
    }
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    .hero::after{
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 19.46%, #FFFFFF 90%);

    }

    /* Mobile Navigation */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .logo {
        max-width: 140px;
        flex-shrink: 0;
    }
    
    .hamburger {
        display: flex;
        flex-shrink: 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-actions {
        display: none;
    }

    /* Show mobile language switcher */
    .mobile-lang-switcher {
        display: block;
        margin-top: 0.5rem;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(229, 231, 235, 0.5);
    }

    .mobile-lang-switcher .lang-switch-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: rgba(70, 125, 200, 1) !important;
        font-weight: 500;
    }

    .mobile-lang-switcher .lang-icon {
        font-size: 1.2rem;
    }

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

    .dashboard-mockup {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-grid {
        flex-wrap: wrap;
    }
    .benefits-cards{
        flex-wrap: wrap;
        justify-content: center;

    }
    .testimonial-card{
        flex-direction: column;
        
    }
    .testimonial-image{
        height: 300px;
        object-fit: cover;
    }
    .testimonial-img{
        width: 100%;
        border-radius: 20px 20px 0 0  ;
    }
    .testimonial-content{
        border-radius: 0 0 20px 20px;
        padding: 2rem;
    }
    .platform-cards-grid {
        grid-template-columns: 1fr;
    }

    .features-image {
        order: -1;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-demo-hero, .btn-secondary-hero {
        width: 100%;
    }

    .stats-overlay {
        grid-template-columns: 1fr 1fr;
    }

 
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-intro {
        position: static;
    }

    .final-cta .container{
        max-width: 100%;
        margin: 1.5rem;
    }
    
    /* Footer responsive layout for tablets */
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-brand {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .footer-col:not(.footer-brand) {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
    }
    
    /* Footer bottom responsive */
    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
.header{
    width: 100%;
    max-width: 100%;
    margin: 0;
}
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

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

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .navbar {
        flex-direction: row;
        gap: 1rem;
    }

    .nav-actions {
        width: 100%;
    }

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

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-overlay {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
    }
    .stats-overlay{
        margin-top: 0;
        justify-content: center;
        gap: 70px;
    }
    .faq-intro .section-title{
        font-size: 1.5rem;
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .stat-item {
        margin: 0 auto;
    }
    .final-cta .container {
        padding: 60px 20px;
    }
    .testimonial-content{
        padding: 1.3rem;
    }
    .testimonial-text{
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col:not(.footer-brand) {
        text-align: center;
    }
    
    .footer-glow-left,
    .footer-glow-right {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

    .btn-primary {
        width: 100%;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .stats-overlay {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   Accessibility & Print
   =================================== */
@media print {
    .header,
    .footer,
    .nav-actions {
        display: none;
    }

    body {
        line-height: 1.5;
        font-size: 12pt;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

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