.stp-cpy{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--slate-900);
    line-height: 1.5;
    overflow-x: hidden;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
}

.soft-elevated {
    box-shadow: var(--shadow-lg);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0.5rem;
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    transition: all 0.3s ease;
    padding: 0 1.5rem;
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255,255,255,0.75);  
    backdrop-filter: blur(12px);  
    box-shadow: var(--shadow-lg);
}

.nav.scrolled {
    /* not working*/
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px); 
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-top: 10px;
    /*
    font-size: 1.875rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--slate-900);
    text-decoration: none;
    letter-spacing: -0.025em;*/
}

.logo-dot {
    color: var(--blue-600);
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--blue-600);
}

.nav-link.active {
    color: var(--blue-600);
    font-weight: 600;
}

.whatsapp-btn {
    background-color: var(--slate-900);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.whatsapp-btn:hover {
    background-color: var(--slate-800);
}

.mobile-toggle {
    display: block;
    padding: 0.5rem;
    color: var(--slate-900);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    margin-top: 0.5rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-100);
    animation: fadeIn 0.3s ease;
}

.mobile-menu.show {
    display: flex;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--blue-600);
}

.mobile-nav-link.active {
    color: var(--blue-600);
    font-weight: 600;
}

.mobile-whatsapp-btn {
    width: 100%;
    background-color: var(--slate-900);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        /*padding-top: 12rem;*/
        padding-bottom: 8rem;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, var(--blue-50), transparent);
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: var(--blue-50);
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    position: relative;
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 9999px;
    background-color: var(--blue-400);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot::after {
    content: '';
    position: relative;
    border-radius: 9999px;
    height: 0.5rem;
    width: 0.5rem;
    background-color: var(--blue-600);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--blue-600), #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: var(--slate-900);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--slate-800);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--slate-900);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: 1px solid var(--slate-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: var(--slate-50);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0.5;
    filter: grayscale(100%);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to top right, var(--blue-100), var(--blue-50));
    border-radius: 2.5rem;
    transform: rotate(-3deg);
    filter: blur(2rem);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.image-wrapper:hover::before {
    opacity: 0.5;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2rem;
    position: relative;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
    transition: transform 0.5s;
}

.image-wrapper:hover .hero-img {
    transform: scale(1.02);
}

.image-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    /*padding: 1.5rem;*/
    padding: 5px 1.5rem 5px 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}

.card-avatars {
    display: flex;
    margin-left: -0.75rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid var(--white);
}

.avatar:not(:first-child) {
    margin-left: -0.75rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 1.5rem;
    background-color: rgba(248, 250, 252, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.title-underline {
    height: 0.375rem;
    width: 6rem;
    background-color: var(--blue-600);
    border-radius: 9999px;
    margin: 0 auto 1.5rem;
}

.section-description {
    color: var(--slate-500);
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.solutions-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.solution-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
    transition: all 0.5s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.solution-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-0.5rem);
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.solution-icon {
    padding: 0.75rem;
    background-color: var(--blue-50);
    color: var(--blue-600);
    border-radius: var(--radius-2xl);
    transition: all 0.3s;
}

.solution-card:hover .solution-icon {
    background-color: var(--blue-600);
    color: var(--white);
}

.solution-arrow {
    padding: 0.5rem;
    background-color: var(--slate-50);
    color: var(--slate-400);
    border-radius: 9999px;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.solution-card:hover .solution-arrow {
    background-color: var(--slate-900);
    color: var(--white);
    transform: rotate(0);
}

.solution-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

.solution-card:hover .solution-name {
    color: var(--blue-600);
}

.solution-description {
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-900);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.solution-card:hover .solution-cta {
    opacity: 1;
    transform: translateX(0);
}

.cta-line {
    height: 2px;
    width: 2rem;
    background-color: var(--slate-900);
}

/* Trust Section */
.trust {
    padding: 5rem 1.5rem;
    background-color: var(--white);
    overflow: hidden;
}

.trust-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.trust-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.visual-item {
    border-radius: 2rem;
}

.placeholder {
    height: 10rem;
    background-color: var(--slate-100);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.highlight {
    height: 16rem;
    background-color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.highlight.dark {
    background-color: var(--slate-900);
}

.visual-content {
    text-align: center;
}

.visual-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.visual-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.visual-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--blue-100);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
}

.trust-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.trust-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--slate-800);
}

.trust-list i {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: var(--blue-100);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Contact Section */
.contact {
    padding: 6rem 1.5rem;
    background-color: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.contact-bg-blur-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--blue-600);
    opacity: 0.1;
    border-radius: 9999px;
    filter: blur(3rem);
    margin-right: -12rem;
    margin-top: -12rem;
}

.contact-bg-blur-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: #4f46e5;
    opacity: 0.1;
    border-radius: 9999px;
    filter: blur(3rem);
    margin-left: -12rem;
    margin-bottom: -12rem;
}

.contact-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-description {
    color: var(--slate-400);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .lead-form {
        flex-direction: row;
    }
}

.email-input {
    flex-grow: 1;
    background: transparent;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    border: none;
    outline: none;
    font-size: 1rem;
}

.email-input:focus {
    outline: 2px solid var(--blue-500);
}

.email-input::placeholder {
    color: var(--slate-500);
}

.submit-btn {
    background-color: var(--blue-600);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 11.25rem;
}

.submit-btn:hover {
    background-color: var(--blue-500);
}

.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.success {
    background-color: var(--green-500);
}

.contact-note {
    color: var(--slate-500);
    font-size: 0.875rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--slate-900);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-btn-float {
    position: relative;
    background-color: var(--green-500);
    color: var(--white);
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.whatsapp-btn-float:hover {
    background-color: var(--green-600);
    transform: scale(1.1);
}

.whatsapp-btn-float:active {
    transform: scale(0.95);
}

.whatsapp-btn-float::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--green-500);
    border-radius: 9999px;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.25;
}

.whatsapp-float:hover .whatsapp-btn-float::before {
    transform: scale(1.5);
}

/* Footer */
.footer {
    background-color: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    padding: 3rem 1.5rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-tagline {
    color: var(--slate-500);
    font-size: 0.875rem;
    max-width: 20rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-info {
        align-items: flex-end;
    }
}

.copyright {
    color: var(--slate-900);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-text {
    color: var(--slate-500);
    font-size: 0.75rem;
}

.footer-location {
    color: var(--slate-400);
    font-size: 0.75rem;
}

.footer-links {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--slate-900);
}

/* Company Page Styles */
.company-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--slate-50);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .company-hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.company-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background-color: var(--blue-600);
    opacity: 0.05;
    transform: skewX(-12deg) translateX(50%);
}

.company-hero-content {
    max-width: 48rem;
    position: relative;
    z-index: 10;
}

.company-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .company-title {
        font-size: 4.5rem;
    }
}

.company-highlight {
    color: var(--blue-600);
}

.company-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Regional Section */
.regional {
    padding: 6rem 1.5rem;
}

.regional-grid {
    display: grid;
    gap: 5rem;
}

@media (min-width: 1024px) {
    .regional-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: flex-start;
    }
}

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

.region-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid;
}

.india-tag {
    background-color: var(--orange-50);
    color: #c2410c;
    border-color: var(--orange-100);
}

.me-tag {
    background-color: var(--emerald-50);
    color: #047857;
    border-color: var(--emerald-100);
}

.region-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--slate-900);
    font-family: 'Poppins', sans-serif;
}

.region-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .region-features {
        grid-template-columns: 1fr 1fr;
    }
}

.region-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--slate-700);
    background-color: var(--slate-50);
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-100);
}

.region-features i {
    color: var(--blue-600);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.region-info {
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--blue-600);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    font-size: 1.5rem;
}

.info-icon.dark {
    background-color: var(--slate-900);
    box-shadow: var(--shadow-lg);
}

.info-content h4 {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--slate-500);
    font-size: 0.875rem;
}

/* Stats Section */
.stats {
    padding: 6rem 1.5rem;
    background-color: var(--slate-900);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--slate-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

/* Mission Section */
.mission {
    padding: 6rem 1.5rem;
}

.mission-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.mission-icon {
    padding: 1rem;
    background-color: var(--blue-50);
    color: var(--blue-600);
    border-radius: var(--radius-3xl);
    display: inline-flex;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.mission-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.mission-quote {
    font-size: 1.5rem;
    color: var(--slate-600);
    line-height: 1.6;
    font-style: italic;
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.7s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.7s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.7s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.7s ease-out;
}

.animate-slide-bottom {
    animation: slideInBottom 0.7s ease-out;
}

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

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

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

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

.duration-700 {
    animation-duration: 700ms;
}

.duration-1000 {
    animation-duration: 1000ms;
}

/* Modal for Solution Details */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--white);
    border-radius: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    font-family: 'Poppins', sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-500);
    cursor: pointer;
    padding: 0.5rem;
}

.modal-content {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-section p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-list {
    list-style: none;
    padding-left: 0;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--slate-700);
    font-weight: 500;
}

.modal-list i {
    color: var(--blue-600);
    margin-top: 0.25rem;
    flex-shrink: 0;
}