/* @import url('https://fonts.cdnfonts.com/css/metropolis-2'); */

@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 400;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 400;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-RegularItalic.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 500;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 700;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 700;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-BoldItalic.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 600;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-SemiBoldItalic.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 800;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-ExtraBold.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 800;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-ExtraBoldItalic.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 900;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-Black.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 900;
    src: local('Metropolis'), url('https://fonts.cdnfonts.com/s/16308/Metropolis-BlackItalic.woff') format('woff');
}




:root {
    --font-main: Metropolis, sans-serif;
    --color-button-footer: white;
    --color-main: #2563eb;
    --color-primary-base: #6699FF;
    --color-title: #0E121B;
    --color-text-sub-300: #CACFD8;
    --color-text-sub-500: #717784;	  
    --primary-shade: #EFF4FE;
    --light-neutral: #434956;
    --light-neutral-n200: #6D717B;	
    --light-primary: #7198F8;
    --base-primary-000: #FFF;
    --base-primary-100: #F0F5FF;
    --base-primary-200: #D9E5FF;
    --base-primary-400: #8CB3FF;
    --base-primary-500: #6699FF;
    --base-primary-600: #4D73BF;
    --base-primary-700: #334D80; 	  
    --base-primary-800: #1A2640;
    --base-primary-900: #0A0F1A;
    --base-primary-950: #0E121B;
    --base-primary-1000: #000;
    --neutral-base: #222530;
    --neutral-200: #E1E4EA;
    --secondary-base: #F5F7FA;    
    --strong-900: #181B25;
	  --active-color: #F6F8FF;
    --error-500: #E93544;
}
    	
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: #333;
}

.container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 56px;
}

.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    padding: 16px;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    margin-left: 25px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size:0.875rem;
}

.cta-button {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.text-gradient-400-600 { 	          	
    background: linear-gradient(135deg, var(--base-primary-400, #8CB3FF), var(--base-primary-600, #4D73BF));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.text-gradient-400-700 { 	          	
    background: linear-gradient(135deg, var(--base-primary-400, #8CB3FF), var(--base-primary-700, #334D80));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.text-gradient-600-700 { 	          	
    background: linear-gradient(135deg, var(--base-primary-600, #4D73BF), var(--base-primary-700, #334D80));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-600-800 { 	          	
    background: linear-gradient(135deg, var(--base-primary-600, #4D73BF), var(--base-primary-800, #1A2640));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}        

.text-gradient-600-900 { 	          	
    background: linear-gradient(135deg, var(--base-primary-600, #4D73BF), var(--base-primary-900, #0A0F1A));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}        
        
/* Section Title */

.section-title {	
    padding: 2rem 0;
    text-align: center;
}
    
.section-title-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 8px;
    background: #F0F5FF;
    color: var(--color-title);
}	
.section-title-button--dark {
background: var(--base-primary-800, #1A2640);
color: white;
}

.button-icon {
width: 20px;
height: 20px;
position: relative;
overflow: hidden;
flex-shrink: 0;
}

.button-icon .icon {
width: 100%;
height: 100%;
object-fit: contain;
}

.button-label {
text-align: center;
font-size: 16px;
font-weight: 400;
line-height: 22px;
white-space: nowrap;
word-wrap: break-word;
}



/* Hero Section */
.hero {
    color: #000;
    font-size:1.125rem;
    padding: 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin-top:-92px;
    padding-top:92px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -92px;
  left: 0;
  width: 100%;
  height: 100%; /* exactly hero’s height */
  background: url("../images/background-main.png") no-repeat top center;
  background-size: cover;
  z-index: -1; /* put it behind hero content */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 96px;
}

.text-gradient {
    background: linear-gradient(81deg, var(--base-primary-500, #69F) 36.17%, var(--base-primary-700, #334D80) 64.05%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        

.hero h1 {
    font-size: 5.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color:#1A2640;
    letter-spacing: -2.58px;
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}
        
.hero-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 14px;
}


.hero-form img {

    max-width: 100%;
    height: auto;
    display: block;
}

/* pill input with link inside */
.pill-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 553px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #f9fafb; /* light background */
    border: 1px solid #D9E5FF;
}

.pill-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #111827;
    line-height: 22px;
}

.pill-input input::placeholder {
    color: var(--base-primary-400, #8CB3FF);
    font-size: 0.95rem;
}

.circle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.5rem;
    border-radius: 50%;
    background: var(--base-primary-200, #D9E5FF);
    text-decoration: none;
    transition: background 0.2s ease;

}

.benefits-info-box .circle-icon {
    width:calc(24px + 1rem);
    height:calc(24px + 1rem);
    background-color: var(--base-primary-900, #0A0F1A);
    margin-bottom: 24px;
}

.circle-icon:hover {
    background: #dbeafe;
}

/* gradient glowing button */

.glow-btn {
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
    transition: all 0.3s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;

}

.glow-btn:hover {
    background: linear-gradient(90deg, #1e40af, #2563eb);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.7);
}

.glow-btn {	
    border-radius: var(--radius-full, 999px);
    background: linear-gradient(87deg, var(--button-primary-base, #69F) 5.76%, var(--base-primary-800, #1A2640) 99.4%);
    box-shadow: 0 0 14px 0 var(--button-primary-base, #69F);
}

.glow-btn-footer {	
    background: linear-gradient(135deg, var(--base-primary-400, #8CB3FF), var(--base-primary-700, #334D80));
}

.glow-btn .btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    padding-bottom: 3px;
}	

.hero .note {
    font-size: 16px;
    color: var(--base-primary-800);
    font-weight: 600;
}


        
.btn-primary {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}


.btn-pill {
  background-color: var(--primary-color, #7198F8);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.5rem;
  font-size: 1rem;
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}




/* Legal Advisor Section */
.advisor-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.advisor-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.advisor-text p {
    color: #64748b;
    margin-bottom: 2rem;
}

.advisor-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* No Stress Section */
.no-stress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.no-stress h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.no-stress p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.service-card {
    background: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

/* Pricing Section */

.pricing {
    background: #1e293b;
    color: white;
    padding: 5rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #2563eb;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.business-card .price {
    color: var(--base-primary-000);
}


.price-features {
    list-style: none;
    margin: 1.5rem 0;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Countries Section */
.countries {
    padding: 4rem 0;
    text-align: center;
    background: #f8fafc;
}

.countries h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.flag {
    width: 50px;
    height: 35px;
    border-radius: 5px;
    display: inline-block;
    margin: 0.5rem;
}

/* Knowledge Section */

.knowledge-hero-section.banner-dark {
  background-color: var(--base-primary-800, #1A2640);
  color: white;
}

.knowledge-hero-section.banner-light {
  background-color: var(--base-primary-200, #E5EDFF);
  color: #1A2640;
}

.banner-light .knowledge-hero-title { color: #1A2640; }
.banner-light .knowledge-hero-subtitle { color: #334D80; }



.knowledge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.knowledge h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.knowledge-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Footer */
footer {
    background: var(--base-primary-500, #6699FF);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--base-primary-700, #334D80);
    font-size: 16px;
    line-height: 28px;
}

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

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

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 2rem;
    text-align: center;
    color: #fff;
    display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.footer-bottom div {
    flex: 1 1 auto;
}

.footer-bottom img {
    width: 146px;
    height: 47px;
}
        
/* Tablet/Desktop (≥768px) */

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }

    .footer-bottom > div:first-child {
        text-align: left;
    }

    .footer-bottom > div:last-child {
        text-align: right;
    }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom > div:first-child {
        text-align: left;
        margin-bottom: 10px;
    }

    .footer-bottom > div:last-child {
        text-align: center;
        width:100%;
    }
}
        
        
        

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .advisor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .advisor-text h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .no-stress h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .countries h2 {
        font-size: 2rem;
    }

    .knowledge h2 {
        font-size: 2rem;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .advisor-section {
        padding: 3rem 0;
    }

    .no-stress {
        padding: 3rem 0;
    }

    .pricing {
        padding: 3rem 0;
    }

    .countries {
        padding: 3rem 0;
    }

    .knowledge {
        padding: 3rem 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .advisor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
        
       
        
        
/* Base nav styles */
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;;
  margin-right: 17px;
}

.desktop-actions .cta-button {
  border-radius: 25px;
}

/* Language dropdown (desktop only) */
.lang-toggle {
  position: relative;
}

.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #333;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 120%;       /* just below the button */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: black;
  list-style: none;
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  min-width: 160px;
  z-index: 1000;
}

.lang-dropdown li {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.lang-dropdown li:hover {
  background: #f0f0f0;
}

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

/* Overlay (tablet & mobile) */
.overlay-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100dvw;
  height: 100dvh;
  background:var(--base-primary-500);
  z-index: 9999;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.overlay-menu.active { display: flex; }

.overlay-menu .logo-menu-mobile {
  position: absolute;
  top: 20px; left: 20px;
  margin-top: 9px;
}

.overlay-menu .close-btn {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.overlay-links {
  list-style: none;
  margin-top: 64px;
  width: 100%;
}
.overlay-links li { 
    margin: 1rem 0; 
}
.overlay-links a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
} 

.overlay-links hr {
    border: 1px solid var(--base-primary-000);
    margin: 30px 0;
}

.overlay-links .arrow {
    margin-left:4px;
}

/* Overlay actions (full-width buttons) */
.overlay-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overlay-actions .login-btn,
.overlay-actions .get-started-btn {
  width: 100%;
  text-align: center;
  border-radius: 25px;
  padding: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.overlay-actions .get-started-btn {
    margin: 0;
    margin-bottom: 20px;
}

.overlay-actions .login-btn {
  background: var(--secondary-base);
  color: var(--neutral-base);
}
.overlay-actions .get-started-btn {
  background: black;
  color: white;
}




/* Pill-shaped nav bar */
header nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF33;
  border-color: #F0F5FF80;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin: 16px 16px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Desktop actions stay on right */
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

/* Log In + Get Started in pill design */
.desktop-actions a {
  text-decoration: none;
  font-weight: 500;
}

.desktop-actions .cta-button {
  background: var(--color-primary-base, #6699FF);
  color: white;
  padding: 8px 12px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px
}

@media (max-width: 768px) {
    .desktop-actions .cta-button {
        padding: 4px 8px;
    }
}

/* Globe button inside pill bar */
.lang-toggle button {
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  transition: background 0.2s;
}
.lang-toggle button:hover {
  background: #f3f4f6;
}






/* FEATURES */




.section-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1328px;
    margin: auto;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eaf3fd;
    padding: 6rem 6rem;
    border-radius: 20px;
    overflow: visible;
    margin-top:12vw;
    margin-bottom:12vw; /* clamp(10px, 5vw, 50px) */
    max-height:200px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    width: 50%;
    height: 100%;
    margin-bottom: -200px; /* sticks image out on the right */
    margin-top: -200px; /* sticks image out on the left */
}

.feature-text {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
    color: var(--base-primary-800, #1A2640);      
}

@media (max-width: 768px) {
    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
    }

    .feature-block {
        max-height:1000px;
        padding:1rem;
    }

    .feature-image,
    .feature-text {
        width: 100%;
        height:auto;
        margin-bottom: 0; /* sticks image out on the right */
        margin-top: 0; /* sticks image out on the left */
    }


    .feature-text {
        padding: 20px;
    }
}
    
    
    
/* BENEFITS */

.benefits-image-container {
  text-align: center;
  background-color:var(--base-primary-100, #F0F5FF); 
  border-radius: 20px 20px 0 0;
}

#benefits-main-image {
  width:100%;
  height: auto;
}

.benefits-info-container {
  display: flex;
  justify-content: space-around;
}

.benefits-info-box {
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex: 1;
  position: relative;
  font-size:16px;
}

.benefits-info-box:first-of-type {
  border-radius: 0 0 0 10px;
 }
.benefits-info-box:last-of-type {
  border-radius: 0 0 10px 0;
 }
  
.benefits-info-box p {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  color:#ffffff;
  margin-bottom: 12px;
}

.benefits-active {
  background: linear-gradient(to bottom, var(--base-primary-900, #0A0F1A), var(--base-primary-800, #1A2640));
  color: var(--color-text-sub-300, #CACFD8);
}


.benefits-inactive {
  background-color: var(--base-primary-800, #1A2640);
  color: #999999;
}


.benefits-inactive article {
  opacity: 0.25;
}

.benefits-info-box:hover {
  opacity:0.95;
}

.benefits-arrows {
  display: none;
}

.benefits-arrow {
  font-size: 24px;
  background-color: #0066cc;
  color: white;
  border-radius: 50%;
  padding: 8px 12px;
  margin: 10px 5px 0 5px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .benefits-info-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .benefits-info-box:not(.benefits-active) {
    display: none;
  }

  .benefits-info-box.benefits-active .benefits-arrows {
    display: flex;
    justify-content: center;
  }
}



/* USE CASES */







.scroll-container {
    width: 100%;
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.scroll-wrapper {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: calc(400px * 20); /* Double the boxes for seamless loop */
    justify-content: space-between;
    gap: 16px; /* Spacing between boxes */
    padding-top:79px;
    padding-bottom:120px;
}

.scroll-box {
    background-color: var(--base-primary-800, #1A2640); /* Dark background */
    color: white; /* White text */
    padding: 32px 24px; /* Padding for the content */
    border-radius: 20px; /* Slightly rounded corners */
    width: calc(33.33% - 16px); /* Each box takes 1/3rd of the width minus the gap */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures content is spaced out and name+age stays at the bottom */
    height: 500px; /* Set height to ensure uniform box size */
}

.scroll-box:hover {
    transform: translateY(-10px) scale(1.05);         
}



.scroll-box .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 24px; /* Margin below the title */
    color:white;
    background-color: var(--base-primary-500, #6699FF);
    width:fit-content;
    padding: 4px 8px;
    border-radius: 8px;
}

.scroll-box .text {
    font-size: 23px;
    margin-bottom: 24px; /* Space between text and footer */
}

.scroll-box .footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Stick name and age to the bottom */
    margin-top: auto; /* Pushes footer to the bottom */
}


.scroll-box .footer .name-age {
    font-size: 14px;
}

.scroll-box .footer .name-age span {  font-size: 16px }

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 10 - 40px * 10)); /* Move by width of 10 boxes + margins */
    }
}

/* Tablet styles */
@media screen and (max-width: 1024px) {
    .scroll-wrapper {
        width: calc(350px * 20);
    }
    
    .scroll-box {
        min-width: 350px;
        margin: 15px;
    }


    .hero-content {
        margin-top: 64px;
    }


    .desktop-actions #lang-btn span {
        display: none;
    }
    .desktop-actions .link-login {
        display: none;
    }
    
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-350px * 10 - 30px * 10));
        }
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .scroll-container {
        border-radius: 15px;
    }
    
    .scroll-wrapper {
        width: calc(280px * 20);
    }
    
    .scroll-box {
        min-width: 280px;
        margin: 10px;
        border-radius: 12px;
    }
    
    
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 10 - 20px * 10));
        }
    }
}

/* Small mobile styles */
@media screen and (max-width: 480px) {
    
    .scroll-wrapper {
        width: calc(240px * 20);
    }
    
    .scroll-box {
        min-width: 240px;
        margin: 8px;
    }
    
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-240px * 10 - 16px * 10));
        }
    }
}

/* Pause animation on hover */
.scroll-container:hover .scroll-wrapper {
    animation-play-state: paused;
}

/* Add some decorative elements */


@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}    

    
    
    
/* PRICING */


.main-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing:-3px;
}

.subtitle {
    color: var(--base-primary-800, #1A2640);
    font-size: 1rem;
    font-weight: 400;
    
}

.subtitle-500 {
    color: var(--color-text-sub-500, #717784);
    
}

.subtitle-300 {
    color: var(--color-text-sub-300, #CACFD8);                    
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    /* background: linear-gradient(to bottom, #fff, var(--base-primary-200, #D9E5FF)); */
    background: var(--base-primary-700);
    color: var(--base-primary-000);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.business-card {
    background: var(--base-primary-900);
    color: var(--base-primary-000);
}


.save-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: #38a169;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #4299e1;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-duration {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.original-price {    
    text-decoration: var(--base-primary-800) line-through;
    -webkit-text-decoration: var(--base-primary-800) line-through;
    text-decoration-thickness: 1.5px;
    -webkit-text-decoration-thickness: 1.5px;
    color:var(--base-primary-400);
    font-size: 14px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}       

.card-icon, .plan-duration, .price {
    margin-bottom: 18px;
}

.currency {
    font-size: 20px;
    font-weight: 400;
}

.business-card .currency {
    color: rgba(255, 255, 255, 0.8);
}

.business-card .get-started-btn { 
    background: var(--base-primary-000);
    color: var(--base-primary-950);
}

.get-started-btn {
    width: 100%;
    background: var(--color-primary-base, #6699FF);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-btn:hover {
    background: #3182ce;
}

.features-list {
    list-style: none;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
}

.features-list li::before {
    content: url('/images/icon-check-circle-white.svg');
    font-weight: bold;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.business-card .features-list li::before {
    content: url('../images/icon-check-circle-dark-blue.svg');
    color: white;
}

.bottom-section .features-list li::before {
    content: url('/images/icon-check-circle-black.svg');
}

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(to bottom, #fff, var(--base-primary-200, #D9E5FF));
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 64px;
}

.criminal-complaint {
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.complaint-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-trial-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--base-primary-800);
}

.contact-btn {
    background: white;
    color: #2d3748;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
}

.contact-btn:hover {
    background: #f7fafc;
}

.free-trial-details {
    text-align: left;
}

.free-trial-details li {
    color: var(--base-primary-800);
}



.free-trial-details-description {
    margin-bottom: 16px;
}

.free-trial-details-title {
    color:var(--base-primary-800);
    font-size: 40px;
    font-weight: 600;
}

.free-trial-details-subtitle {
    font-size: 16px;
    color: var(--base-primary-500);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
}

/* Mobile styles */
@media (max-width: 768px) {

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .price {
        font-size: 1.75rem;
    }
}
        
            
            
            
/* AVAILABILITY */
            
            
            
        
.availability-section {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 1rem;
}

.availability-content-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.availability-section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.availability-section-text {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}




.availability-image-container {
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}



.availability-image-container:hover {
    transform: scale(1.1);
}



/*
.availability-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}


.availability-image {
    height: auto;
    display: block;
    min-width: 1328px;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: none;
}



.availability-image-container:hover .availability-image {
    transform: translateX(-50%) scale(1.02);
}

*/


/* Desktop styles */
@media (min-width: 1024px) {
    
    .availability-section-title {
        font-size: 3.5rem;
    }
}

/* Tablet styles */
@media (max-width: 1023px) and (min-width: 768px) {
    .availability-content-container {
        padding: 2.5rem 2rem;
    }
    
    .availability-section-title {
        font-size: 2.5rem;
    }
    
    .availability-section-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    
    .availability-section {
        padding: 0 0.5rem;
    }
    
    .availability-content-container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .availability-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .availability-section-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .availability-content-container {
        padding: 1.5rem 1rem;
    }
    
    .availability-section-title {
        font-size: 1.75rem;
    }
}

/* Loading animation */
.availability-image {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    max-width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
                    
                    
                    
/* BLOG */







.blog-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.1;
}

.blog-title .highlight {
    color: #667eea;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile and Tablet: Horizontal scroll layout */
@media (max-width: 1023px) {
    .articles-container {
        overflow-x: auto;
        margin-bottom: 50px;
        padding-bottom: 20px;
    }

    .articles-container {
        display: flex;
        gap: 20px;
        padding: 0 5px;
        scroll-snap-type: x mandatory;
    }

    .featured-article,
    .articles-scroll {
        display: contents;
    }

    .article-card {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* Mobile specific - show more than one article */
@media (max-width: 767px) {
    .article-card {
        width: 280px;
    }
    
    .articles-container {
        gap: 15px;
    }
    

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

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

/* Tablet specific - partial view with scroll */
@media (min-width: 768px) and (max-width: 1023px) {
    .article-card {
        width: 320px;
    }
}

/* Desktop: Side-by-side layout */
@media (min-width: 1024px) {
    .articles-container {
        display: flex;
        gap: 40px;
        margin-bottom: 50px;
    }

    .featured-article {
        flex: 1;
        min-width: 0;
    }

    .sidebar-articles {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.article-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Featured article larger image on desktop */
@media (min-width: 1024px) {
    .featured-article .article-image {
        height: 350px;
    }
    
    .sidebar-articles .article-card {
        display: flex;
        gap: 16px;
        align-items: center;
    }
    
    .sidebar-articles .article-image {
        width: 200px;
        height: 160px;
        flex-shrink: 0;
        border-radius: 12px;
    }
    
    .sidebar-articles .article-content {
        padding: 0;
        flex: 1;
    }
}



@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.article-content {
    padding: 24px;
}

.article-date {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Smaller titles for sidebar on desktop */
@media (min-width: 1024px) {
    .sidebar-articles .article-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .sidebar-articles .article-date {
        margin-bottom: 4px;
    }
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.article-link:hover {
    color: #5a67d8;
}

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

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

.see-more-btn {
    display: block;
    margin: 0 auto;
    background: var(--base-primary-800, #1A2640);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Scrollbar styling for mobile/tablet */
.articles-container::-webkit-scrollbar {
    height: 6px;
}

.articles-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.articles-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.articles-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}



/* KNOWLEDGE */


.knowledge-hero-content {
    z-index: 2;
    background: var(--base-primary-800, #1A2640);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -80px;
    margin-top:80px;
}

.knowledge-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}


.knowledge-hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.knowledge-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    display: inline-block;
}

.knowledge-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.knowledge-cta-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .knowledge-hero-section {
        border-radius: 16px;
    }

    .knowledge-hero-title {
        font-size: 2.5rem;
    }

    .knowledge-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .knowledge-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .knowledge-hero-title {
        font-size: 2rem;
    }

    .knowledge-hero-subtitle {
        font-size: 0.95rem;
    }
}



/* MODAL */

/* MODAL */

.modal-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    background-color: var(--error-500);
    color: var(--base-primary-000);
    z-index: 9999;
    padding: 8px 9px;
    text-align: center;
    font-size: 16px;
    max-width: 80%;
    width:auto;
    box-sizing: border-box;
    border-radius: 10px;
}

.modal-message-content {  
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-message .close-btn {

    all: unset;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.modal-message .close-btn:hover {
    color: black;
}

.modal-message .close-btn:hover,
.modal-message .close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-message {
    transition: opacity 0.3s ease-in-out;
}


input[type="file"]:disabled {
    background-color: #f0f0f0;
    cursor: not-allowed;
    opacity: 0.5;
}

.hidden {
    display: none;
}






.error-message {
  color: red;
  font-size: 12px;
  display: none;
}


input:invalid {
  border: 1px solid red;
}