* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
    --accent: #6366f1;
    --dark-text: #0f172a;
    --dark-bg: #0f172a;
    --white: #ffffff;
    --password-violet: #7c3aed;
    --password-cyan: #22d3ee;
    --password-blue: #2563eb;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
    background: #ffffff;
    height: 110px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: none;
}

.logo {
    position: relative;
    height: 110px;
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
}

.logo img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.logo-white {
    opacity: 1;
}

.logo-color {
    opacity: 0;
}

.navbar.scrolled .logo-white {
    opacity: 0;
}

.navbar.scrolled .logo-color {
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item.active, .nav-item:hover {
    color: var(--accent);
}

.navbar.scrolled .nav-item {
    color: var(--dark-text);
}

.navbar.scrolled .nav-item:hover, .navbar.scrolled .nav-item.active {
    color: var(--accent);
}

.btn-nav {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 2px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.navbar.scrolled .btn-nav {
    background: var(--accent);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    border: none;
    outline: none;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 50px;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.86;
    filter: saturate(1.15) contrast(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(3,7,18,.76) 42%, rgba(3,7,18,.30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 6%;
    padding-right: 5%;
}

.text-wrapper {
    max-width: 1100px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

h1 {
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
    margin-bottom: 30px;
    white-space: normal;
}

h1 span {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(34, 211, 238, 0.4);
}

p.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 500;
    margin-bottom: 60px;
    line-height: 1.5;
    max-width: 650px;
}

.buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.btn, .btn-primary {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    background-color: var(--accent);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
}

.text-cyan {
    color: var(--accent);
    font-weight: 700;
}

.text-blue {
    color: #3B90D8;
    font-weight: 700;
}

.text-white {
    color: #ffffff;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.infographic-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.infographic-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.infographic-container img {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide-img.active {
    opacity: 1;
    z-index: 2;
}

.info-caption-box {
    position: relative;
    margin: 30px auto 0;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.caption-title {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.caption-text {
    color: #475569;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.nav-arrow:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--accent);
    width: 0%;
    z-index: 20;
}

.infographic-container.playing .progress-bar {
    animation: progress 8s linear infinite;
}

@keyframes progress { 0% { width: 0%; } 100% { width: 100%; } }

.logos-section {
    padding: 60px 5%;
    background-color: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.logos-title {
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 140px;
    cursor: pointer;
    min-height: 122px;
}

.partner-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%) opacity(0.5);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-5px);
}

.partner-item:hover .partner-name {
    opacity: 1;
    transform: translateY(0);
}

.problem-section {
    padding: 120px 5%;
    background-color: #ffffff;
    color: var(--dark-text);
}

.section-header {
    margin: 0 auto 80px;
    max-width: 800px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-text {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.stat-card {
    background: #0f172a;
    color: white;
    padding: 60px 40px;
    border-radius: 4px;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: clamp(60px, 8vw, 80px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 40px;
}

.stat-label {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 30px;
    white-space: normal;
}

.stat-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.problem-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 20px;
}

.item-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.item-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}

.solution-section {
    padding: 120px 5%;
    background-color: #0b1120;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.solution-header {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.solution-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff;
}

.solution-subtitle {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.solution-card {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.15);
}

.solution-card.card-highlight {
    background-color: #1e293b !important;
    border: 1px solid var(--accent);
    position: relative;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.solution-card.card-highlight:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6), 0 0 80px rgba(34, 211, 238, 0.3);
    border-color: #22d3ee;
    background-color: #233045 !important;
    transform: translateY(-8px);
    z-index: 10;
}

.solution-card.card-highlight h3 {
    color: #ffffff !important;
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.icon-circle svg {
    width: 35px;
    height: 35px;
    stroke-width: 1.5;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.solution-card p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    flex-grow: 1;
}

.tech-badge {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
    position: absolute;
    top: 20px;
    right: 20px;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.attack-section {
    padding: 120px 5%;
    background-color: #f8fafc;
    color: var(--dark-text);
    text-align: center;
}

.attack-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
    gap: 15px;
}

.attack-step {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attack-step:hover {
    transform: translateY(-8px);
}

.attack-step.step-threat:hover, .attack-step.step-attack:hover {
    border-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.2);
}

.attack-step.step-protected:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6), 0 0 60px rgba(34, 211, 238, 0.3);
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s;
}

.attack-step svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.step-threat .step-icon-wrapper {
    background: #fff7ed;
    color: #f97316;
}

.step-attack .step-icon-wrapper {
    background: #fef2f2;
    color: #ef4444;
}

.step-protected {
    background: linear-gradient(to bottom right, #ffffff, #f0fdfa);
    border-bottom: 4px solid var(--accent);
}

.step-protected .step-icon-wrapper {
    background: rgba(34, 211, 238, 0.1);
    color: #0891b2;
    width: 80px;
    height: 80px;
}

.step-protected h4 {
    color: #0891b2;
}

.attack-step h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attack-step p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.arrow-connector svg {
    width: 24px;
    height: 24px;
}

.resilience-section {
    padding: 100px 5%;
    background-color: #0f172a;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resilience-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
}

.resilience-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.resilience-quote {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 40px;
    background: linear-gradient(to right, #22d3ee, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.resilience-text {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-glow {
    background-color: var(--accent);
    color: #000;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.8);
    transform: translateY(-3px);
    background-color: #fff;
}

.split-content .btn-glow {
    padding: 13px 30px;
    font-size: 13px;
}

.faq-section {
    padding: 100px 5%;
    background-color: #ffffff;
    color: var(--dark-text);
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 10px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 10px;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.cta-footer-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0f172a 0%, #000000 100%);
    text-align: center;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
    background-image: linear-gradient(rgba(2,6,23,.78), rgba(2,6,23,.86)), url("img/imagen001.jpg");
    background-size: cover;
    background-position: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(30px, 5vw, 40px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-title span {
    color: var(--accent);
}

.cta-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.partner-info-section {
    padding: 80px 5%;
    background-color: #fff;
    color: #0f172a;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.partner-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}

.partner-highlight-box {
    background-color: #1e1e1e;
    color: white;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.partner-highlight-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
    opacity: 0.2;
}

.partner-highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-list li svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    margin-right: 15px;
    flex-shrink: 0;
}

.kill-switch-section {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
}

.kill-steps-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.kill-card-dark {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #0f172a;
    padding: 40px 35px;
    border-radius: 16px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kill-card-dark:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.kill-card-dark .kill-number {
    color: var(--accent);
    opacity: 0.15;
    font-size: 130px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.kill-card-dark .kill-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.kill-icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.kill-icon-circle svg {
    width: 32px;
    height: 32px;
}

.kill-card-dark h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.kill-card-dark p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.kill-features-dark {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: inline-block;
    width: 100%;
}

.kill-features-dark li {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    line-height: 1.4;
}

.kill-features-dark li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: 900;
    top: -2px;
}

.kill-inter-text {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.kill-inter-text h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.kill-inter-text p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.inter-gray-section {
    width: 100%;
    padding: 50px 5%;
    background-color: #f8fafc;
    text-align: center;
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.inter-gray-content {
    max-width: 950px;
    margin: 0 auto;
}

.inter-gray-section h3 {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    color: #0f172a;
    line-height: 1.1;
}

.inter-gray-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
}

.inter-gray-section strong {
    color: #0891b2;
    font-weight: 800;
}

.implementation-section {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #0f172a;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.impl-header {
    max-width: 900px;
    margin: 0 auto 70px;
}

.impl-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0f172a;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.impl-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
}

.impl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.impl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    height: 100%;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.impl-item:hover {
    background-color: #f8fafc;
}

.impl-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0fdfa;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    color: #0891b2;
    flex-shrink: 0;
}

.impl-item:hover .impl-icon-circle {
    background-color: var(--accent);
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
}

.impl-icon-circle svg {
    width: 35px;
    height: 35px;
    stroke-width: 2;
}

.impl-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.impl-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 300px;
}

.impl-time {
    display: block;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
    font-weight: 700;
    color: #3B90D8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mitra-difference-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #131313;
}

.mitra-container-final {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #131313;
    min-height: 600px;
    font-family: "Inter", sans-serif;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mitra-left-text {
    width: 45%;
    padding: 80px 0 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background-color: #131313;
    z-index: 2;
}

.mitra-right-image {
    width: 55%;
    position: relative;
    padding: 0;
    margin: 0;
    background-image: url("img/cta_glow.png");
    background-color: #131313;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    flex-grow: 1;
    min-height: 100%;
}

.mitra-p {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
    font-weight: 400;
}

.mitra-cyan {
    color: var(--accent);
    font-weight: 700;
}

.mitra-button {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    border-radius: 2px;
    width: fit-content;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mitra-button:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
}

.ddr-section-white {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #0f172a;
    position: relative;
    font-family: "Inter", sans-serif;
    border-top: none;
}

.ddr-header-white {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.ddr-header-white h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0f172a;
}

.ddr-problem-box-light {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.ddr-problem-intro-light {
    text-align: center;
    margin-bottom: 50px;
}

.ddr-problem-intro-light h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.ddr-problem-intro-light p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.ddr-attacks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.attack-item-light {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.attack-item-light:hover {
    transform: translateY(-5px);
}

.attack-item-light h4 {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.attack-item-light p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.ddr-section-dark {
    padding: 100px 5%;
    background-color: #0f172a;
    color: white;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.ddr-header-dark {
    text-align: center;
    margin-bottom: 60px;
}

.ddr-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: stretch;
}

.solution-card-white {
    background-color: #ffffff;
    color: #0f172a;
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card-white:hover {
    transform: translateY(-8px);
    border-bottom: 5px solid var(--accent);
}

.sol-card-text-wrapper {
    flex-grow: 1;
    margin-bottom: 30px;
}

.sol-card-image-container {
    width: 100%;
    height: 280px;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #e2e8f0;
}

.sol-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sol-icon svg {
    width: 30px;
    height: 30px;
}

.solution-card-white h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.solution-card-white p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sol-features-light {
    padding: 0;
    margin: 0;
}

.sol-features-light li {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sol-features-light li::before {
    content: "›";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.sol-features-light strong {
    color: #0f172a;
}

#img-math {
    background-image: url("img/math.png");
}

#img-behavior {
    background-image: url("img/conducta.png");
}

.ddr-performance-box-white {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.ddr-performance-box-white h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0f172a;
}

.subtitle-perf {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.perf-item-white {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.perf-icon {
    width: 70px;
    height: 70px;
    background-color: #ecfeff;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.perf-item-white:hover .perf-icon {
    transform: scale(1.1);
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

.perf-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.perf-item-white h4 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.perf-item-white p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
}

.footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-main-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none !important;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.footer-main-link:hover {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-links button#btn-open-contact {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    color: #ffffff !important;
    opacity: 0.7;
    text-decoration: none;
    text-align: left;
    transition: opacity 0.3s ease;
}

.footer-links button#btn-open-contact:hover {
    opacity: 1;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    color: #0f172a;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    background: none;
    border: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
}

.submit-btn {
    background: #22d3ee;
    color: #0f172a;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #06b6d4;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.honey-field {
    display: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 450px;
}

.contact-info-side {
    background-color: #f8fafc;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e2e8f0;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-item p {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.contact-link {
    color: #0f172a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent);
}

.map-link {
    font-size: 0.85rem;
    color: #0891b2;
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-form-side {
    padding: 40px;
    background: #fff;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: #0f172a;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.privacy-box {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-box input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.privacy-box label {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 400;
    cursor: pointer;
}

.privacy-box a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-text-small {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    text-align: left;
}

.kill-switch-section .ks-flex-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.kill-switch-section .ks-col-text {
    flex: 0.8;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.kill-switch-section .ks-col-image {
    flex: 1.2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kill-switch-section .ks-card {
    background-color: #f4f8fb;
    border-left: 5px solid #00c3ff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
    color: #334e68;
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kill-switch-section .ks-card p {
    margin-bottom: 20px;
}

.kill-switch-section .ks-card p:last-child {
    margin-bottom: 0;
}

.kill-switch-section .ks-card strong {
    color: #0070c0;
}

.kill-switch-section .ks-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.ddr-comparison-graphic {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 1000px;
    padding: 20px;
    font-family: "Inter", sans-serif;
    flex-wrap: wrap;
}

.ddr-comp-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.ddr-comp-card.traditional {
    background: #f8fafc;
    border-top: 5px solid #94a3b8;
}

.ddr-comp-card.mitra {
    background: #ffffff;
    border: 1px solid #bae6fd;
    border-top: 5px solid #00c3ff;
    box-shadow: 0 20px 40px -10px rgba(0, 195, 255, 0.15);
    z-index: 2;
}

.comp-header {
    margin-bottom: 25px;
}

.comp-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-weight: 600;
}

.comp-label.highlight {
    color: #00c3ff;
}

.comp-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 5px 0 0;
    font-weight: 800;
}

.comp-visual {
    margin: 20px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.comp-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.comp-icon-circle svg {
    width: 40px;
    height: 40px;
}

.comp-icon-circle.gray {
    background: #e2e8f0;
    color: #64748b;
}

.comp-icon-circle.blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
}

.comp-icon-circle.pulsing {
    box-shadow: 0 0 0 0 rgba(0, 195, 255, 0.7);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 195, 255, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(0, 195, 255, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); } }

.comp-status {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.comp-status.fail {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.comp-status.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.comp-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 10px;
}

.comp-footer p {
    color: #334155;
    font-size: 1rem;
    margin-bottom: 15px;
}

.comp-vulnerability ul {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
    color: #64748b;
}

.comp-vulnerability li::before {
    content: "⚠️ ";
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.tech-tag {
    font-size: 0.75rem;
    background: #0f172a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.comp-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 700;
    position: relative;
    min-width: 40px;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: #e2e8f0;
}

.connector-badge {
    background: #fff;
    border: 2px solid #e2e8f0;
    color: #94a3b8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 1;
    margin: 10px 0;
}

.modal-content.legal-box {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    text-align: left;
    color: #334e68;
    line-height: 1.6;
}

.modal-content.legal-box h2 {
    color: #0f172a;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.modal-content.legal-box h3 {
    color: #0f172a;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.modal-content.legal-box ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-content.legal-box::-webkit-scrollbar {
    width: 8px;
}

.modal-content.legal-box::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.modal-content.legal-box::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.modal-content.legal-box::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

#btn-open-demo-footer {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(to right, #1e3a8a, #22d3ee);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #0f172a;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

#btn-open-demo-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.6);
    background-image: linear-gradient(white, white), linear-gradient(to left, #1e3a8a, #22d3ee);
}

.awards-section-highlight {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.awards-container-centered {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-box-hover {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 60px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.awards-box-hover:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px -10px rgba(0, 195, 255, 0.25);
    transform: translateY(-5px);
}

.awards-grid-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.award-item-large {
    text-align: center;
}

.award-img-large {
    height: 180px;
    width: auto;
    margin-bottom: 25px;
    filter: grayscale(20%) contrast(95%);
    transition: all 0.3s ease;
}

.awards-box-hover:hover .award-img-large {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

.award-title-large {
    color: #334e68;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 10px;
}

.experience-split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.experience-text-col {
    flex: 1;
    min-width: 300px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.experience-text-col p {
    margin-bottom: 25px;
}

.experience-text-col strong {
    color: #ffffff;
    font-weight: 700;
}

.experience-text-col .text-cyan {
    color: var(--accent);
}

.experience-img-col {
    flex: 0 0 450px;
    position: relative;
}

.ibex-img-generated {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.ibex-img-generated:hover {
    transform: scale(1.02);
}

.ibex-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: 0.3s;
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background-color: #0f172a;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background-color: #0f172a;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-item {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .ddr-attacks-grid, .ddr-solution-grid, .perf-grid, .impl-grid, .partner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .awards-grid-large {
        flex-direction: column;
        gap: 50px;
    }

    .navbar.scrolled .nav-menu .nav-item {
        color: #ffffff !important;
    }

    .navbar.scrolled .nav-menu .nav-item.active, .navbar.scrolled .nav-menu .nav-item:hover {
        color: #22d3ee !important;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 15px !important;
        height: 70px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .logo {
        order: 1;
        margin: 0 !important;
        width: 140px !important;
        max-width: 130px !important;
        height: 40px !important;
        position: relative !important;
        display: block !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
    }

    .logo img {
        position: absolute !important;
        max-height: 100% !important;
        width: 100% !important;
        transform: translateY(-50%) !important;
        top: 50% !important;
        left: 0 !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        transition: opacity 0.3s ease !important;
    }

    .navbar #btn-open-demo {
        order: 2;
        margin-left: auto !important;
        margin-right: 15px !important;
        padding: 6px 12px !important;
        font-size: 11px !important;
        height: auto !important;
        display: block !important;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        order: 3;
        margin: 0 !important;
        z-index: 10005;
        background: transparent !important;
        border: none !important;
        padding: 5px;
    }

    .mobile-menu-toggle span {
        background-color: #ffffff;
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background-color: #000000 !important;
        box-shadow: none !important;
    }

    .mitra-container-final, .experience-split-container, .kill-switch-section .ks-flex-container, .ddr-solution-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
    }

    .mitra-left-text, .mitra-right-image, .experience-text-col, .experience-img-col, .ks-col-text, .ks-col-image, .solution-card-white, .sol-card-image-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 25px !important;
        flex: none !important;
    }

    .ks-col-image {
        margin-bottom: 30px !important;
    }

    .icon-circle svg, .impl-icon-circle svg, .kill-icon-circle svg, .step-icon-wrapper svg {
        width: 32px !important;
        height: 32px !important;
    }

    .icon-circle, .impl-icon-circle, .kill-icon-circle, .step-icon-wrapper {
        width: 64px !important;
        height: 64px !important;
        margin: 0 auto 15px auto !important;
        flex-shrink: 0 !important;
    }

    .problem-grid, .solution-grid, .attack-grid, .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .stat-card {
        max-width: 100% !important;
    }

    h1 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .section-title {
        font-size: 26px !important;
    }

    .partner-text h2 {
        font-size: 24px !important;
    }

    .arrow-connector {
        transform: rotate(90deg);
        margin: 5px 0;
        height: 30px;
    }

    .ddr-comparison-graphic {
        flex-direction: column !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 20px 0 !important;
        box-sizing: border-box !important;
        gap: 0 !important;
    }

    .comp-connector {
        flex-direction: row !important;
        height: 50px !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
    }

    .connector-line {
        width: 100% !important;
        height: 2px !important;
    }

    .navbar:not(.scrolled) .mobile-menu-toggle span {
        background-color: #22d3ee !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .navbar .logo-white {
        opacity: 1 !important;
        z-index: 2;
    }

    .navbar .logo-color {
        opacity: 0 !important;
        z-index: 1;
    }

    .navbar.scrolled .logo-white {
        opacity: 0 !important;
    }

    .navbar.scrolled .logo-color {
        opacity: 1 !important;
    }

    .mitra-right-image {
        display: block !important;
        width: 100% !important;
        min-height: 300px !important;
        height: 300px !important;
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        margin-bottom: 20px !important;
        flex: none !important;
    }

    .mitra-container-final {
        display: flex !important;
        flex-direction: column-reverse !important;
        height: auto !important;
        padding-bottom: 40px !important;
    }

    .mitra-left-text {
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .ddr-comp-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 0 20px 0 !important;
        flex: none !important;
        left: 0 !important;
        transform: none !important;
        padding: 30px 10px !important;
        border-radius: 12px !important;
    }

    .comp-icon-circle, .icon-circle, .kill-icon-circle {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto 20px auto !important;
    }

    svg {
        width: 35px !important;
        height: 35px !important;
        max-width: 35px !important;
    }

    .section-header, .solution-header, .ddr-header-white {
        padding: 0 20px !important;
        text-align: center !important;
    }

    h2, .section-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .ddr-section-white, .ddr-section-dark, .problem-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .ddr-comp-card h3, .comp-title, .solution-card h3 {
        font-size: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.3 !important;
        padding: 0 5px !important;
    }

    .form-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 10px !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .form-group {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-bottom: 0 !important;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .modal-content {
        padding: 20px !important;
        width: 95% !important;
        max-width: 95% !important;
        margin: 20px auto !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
    }

    .modal-header h3 {
        font-size: 1.5rem !important;
    }

    .form-group.full-width {
        width: 100% !important;
        grid-column: auto !important;
    }

    .contact-layout {
        display: flex !important;
        flex-direction: column-reverse !important;
        width: 100% !important;
    }

    .contact-info-side, .contact-form-side {
        width: 100% !important;
        padding: 25px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .contact-info-side img {
        display: none !important;
    }

    .contact-form-side {
        padding: 20px 15px 10px 15px !important;
        border-bottom: 1px solid #e2e8f0 !important;
        background: #fff !important;
    }

    .contact-info-side {
        padding: 20px 15px !important;
        background-color: #f8fafc !important;
        text-align: center !important;
        border-right: none !important;
    }

    .contact-info-item {
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .contact-form-side .modal-header {
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .contact-form-side h3 {
        font-size: 1.6rem !important;
        margin-top: 0 !important;
    }

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

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-content {
        padding: 70px 6%;
    }

    .split-image {
        aspect-ratio: 1672 / 941;
    }

    .password-proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-card {
        padding: 28px 22px;
    }

    .mini-card-grid {
        grid-template-columns: 1fr;
    }

    .password-hero .hero-bg img {
        object-position: center;
    }

    .password-logos .logos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .password-quote {
        padding: 85px 6%;
    }

    .password-product-showcase {
        padding: 75px 0 95px;
    }

    .password-product-showcase .product-light-header {
        margin-bottom: 36px;
    }

    .password-product-showcase .infographic-container {
        max-width: 92%;
    }

    .password-product-showcase .info-caption-box {
        margin-top: 26px;
    }

    .password-solution {
        padding-top: 75px;
        padding-bottom: 95px;
    }
}

/ @media (max-width: 900px) {

}

#modal-privacy, #modal-terms, #modal-cookies {
    z-index: 20000 !important;
}

.text-wrapper h1 span, .cta-title span {
    color: #22d3ee;
}

.partner-logo.password-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: none;
    opacity: .95;
}

.problem-section.password-problem {
    background: #f8fafc;
}

.password-kpi {
    color: var(--password-violet) !important;
}

.btn.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 800;
    transition: all .25s ease;
    backdrop-filter: blur(10px);
}

.btn.btn-secondary:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-2px);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: start;
    min-height: 0;
    background: #0f172a;
    color: #fff;
    overflow: hidden;
}

.split-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1672 / 941;
    overflow: hidden;
    background: #0f172a;
}

.split-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 3vw, 52px) clamp(42px, 5vw, 82px);
}

.split-content h2 {
    font-size: clamp(1.9rem, 2.3vw, 2.7rem);
    line-height: 1.1;
    margin: 10px 0 16px;
    letter-spacing: -.03em;
}

.split-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
}

.feature-list li {
    color: #e2e8f0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--password-cyan);
    box-shadow: 0 0 18px var(--password-cyan);
}

.feature-list strong {
    color: #fff;
}

.quote-section {
    background: radial-gradient(circle at 50% 0%, rgba(99,102,241,.16), transparent 42%), #020617;
    color: #fff;
    padding: 120px 5%;
    text-align: center;
}

.quote-content {
    max-width: 980px;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    margin-bottom: 24px;
}

.quote-content p {
    color: #94a3b8;
    font-size: 1.18rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

.password-hero .hero-bg img {
    opacity: 1;
    filter: saturate(1.08) contrast(1.08);
    object-position: center right;
}

.password-hero .hero-overlay {
    background: linear-gradient(90deg,
        rgba(2,6,23,0.95) 0%,
        rgba(2,6,23,0.88) 28%,
        rgba(2,6,23,0.62) 46%,
        rgba(2,6,23,0.28) 64%,
        rgba(2,6,23,0.08) 82%,
        rgba(2,6,23,0.00) 100%);
}

.text-wrapper h1 span,.cta-title span {
    color: var(--password-cyan);
}

.password-proof-strip {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: #1e293b;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.proof-card {
    padding: 34px 44px;
    background: linear-gradient(180deg,#0f172a,#020617);
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.proof-card span {
    display: block;
    width: 100%;
    font-size: clamp(2rem,3vw,3.2rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.06em;
    color: #fff;
}

.proof-card p {
    margin: 12px auto 0;
    max-width: 360px;
    color: #94a3b8;
    line-height: 1.45;
    font-size: .98rem;
}

.proof-card:nth-child(1) span, .proof-card:nth-child(3) span {
    color: var(--password-cyan);
}

.password-problem-rich {
    background: #f8fafc;
}

.password-quote {
    background: radial-gradient(circle at 50% 0%, rgba(124,58,237,.22), transparent 42%),
        radial-gradient(circle at 50% 100%, rgba(34,211,238,.12), transparent 38%),
        #020617;
    position: relative;
    padding: clamp(110px, 11vw, 170px) 6%;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.password-quote h2 {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto 28px;
    color: #ffffff !important;
    font-size: clamp(2.15rem, 4.1vw, 4.65rem);
    line-height: 1.12;
    letter-spacing: -0.055em;
}

.password-slider {
    background: #020617;
}

.compact-dark {
    margin-bottom: 40px;
}

.compact-dark .section-title {
    color: #fff;
}

.compact-dark .section-text {
    color: #94a3b8;
}

.password-slider .infographic-container {
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}

.password-slider .slide-img {
    object-fit: cover;
    background: #020617;
}

.password-slider .info-caption-box {
    background: rgba(15,23,42,.92);
    border: 1px solid rgba(148,163,184,.18);
    color: #fff;
}

.password-slider .caption-text {
    color: #94a3b8;
}

.password-solution {
    background: #f8fafc;
    color: #0f172a;
    padding-top: clamp(95px, 9vw, 145px);
    padding-bottom: clamp(105px, 10vw, 155px);
}

.password-feature-grid .solution-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 10px;
}

.password-feature-grid .solution-card li {
    position: relative;
    padding-left: 22px;
    color: #8fa0b8;
    line-height: 1.5;
    font-size: .95rem;
}

.password-feature-grid .solution-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--password-cyan);
    box-shadow: 0 0 16px rgba(34,211,238,.6);
}

.password-feature-grid .icon-circle {
    font-weight: 900;
    color: #ffffff;
    background: rgba(34,211,238,.10);
}

.all-in-one-section {
    padding: 110px 5%;
    background: #fff;
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-top: 50px;
}

.mini-card {
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 34px;
    background: linear-gradient(180deg,#fff,#f8fafc);
    box-shadow: 0 16px 40px rgba(15,23,42,.06);
}

.mini-card strong {
    display: block;
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.mini-card span {
    color: #64748b;
    line-height: 1.55;
}

.forensic-section {
    background: radial-gradient(circle at 20% 20%,rgba(34,211,238,.12),transparent 30%),#020617;
    color: #fff;
    padding: 115px 5%;
}

.forensic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.forensic-grid h2 {
    font-size: clamp(2rem,3.5vw,3.6rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 14px 0 22px;
}

.forensic-grid p {
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 26px;
}

.check-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #e2e8f0;
    margin: 13px 0;
    line-height: 1.5;
}

.check-row span {
    color: var(--password-cyan);
    font-weight: 900;
}

.text-partner strong {
    font-size: 2.1rem;
    color: #0f172a;
}

.password-logos .logos-grid {
    grid-template-columns: repeat(5,minmax(120px,1fr));
}

.password-cta-final {
    background-image: none !important;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(124,58,237,.28), transparent 42%),
        radial-gradient(circle at 50% 100%, rgba(34,211,238,.14), transparent 44%),
        linear-gradient(135deg, #020617 0%, #0f172a 52%, #020617 100%) !important;
    padding: clamp(92px, 8vw, 125px) 5%;
}

@media (max-width: 1100px) {
    .password-proof-strip {
        grid-template-columns: repeat(2,1fr);
    }

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

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

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

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

.password-quote .quote-content {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.password-quote p {
    max-width: 850px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
    line-height: 1.75;
}

.password-product-showcase {
    background: #f8fafc;
    color: #0f172a;
    padding: clamp(95px, 9vw, 145px) 0 clamp(105px, 10vw, 155px);
}

.password-product-showcase .product-light-header {
    max-width: 980px;
    margin: 0 auto 56px;
    padding: 0 6%;
    text-align: center;
}

.password-product-showcase .eyebrow {
    color: var(--password-violet);
}

.password-product-showcase .section-title {
    color: #0f172a;
}

.password-product-showcase .section-text {
    color: #475569;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.password-product-showcase .infographic-container {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: 0;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.password-product-showcase .slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(15,23,42,.13);
    background: transparent;
}

.password-product-showcase .info-caption-box {
    background: transparent;
    border: 0;
    color: #0f172a;
    max-width: 820px;
    margin: 34px auto 0;
    box-shadow: none;
    text-align: center;
    padding: 0 6%;
}

.password-product-showcase .caption-text {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.password-product-showcase .nav-arrow {
    background: rgba(15,23,42,.76);
    border-color: rgba(15,23,42,.10);
    color: #fff;
    box-shadow: 0 16px 40px rgba(15,23,42,.22);
}

.password-product-showcase .slider-dots .dot {
    border-color: rgba(15,23,42,.28);
}

.password-product-showcase .slider-dots .dot.active {
    background: var(--password-violet);
    border-color: var(--password-violet);
}

.password-product-showcase .caption-title {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(124,58,237,.10);
    color: var(--password-violet);
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.password-product-showcase .progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--password-violet), var(--password-cyan));
}

.password-solution .solution-header {
    max-width: 980px;
    margin: 0 auto 58px;
    padding: 0 6%;
    text-align: center;
}

.password-solution .eyebrow {
    color: var(--password-violet);
}

.password-solution .solution-title {
    color: #0f172a !important;
    font-size: clamp(2.25rem, 4.2vw, 4.35rem) !important;
    line-height: 1.04;
}

.password-solution .solution-subtitle {
    color: #475569;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.password-feature-grid {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.password-feature-grid .solution-card {
    background: #172235;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
}

.password-feature-grid .solution-card h3 {
    color: #ffffff;
}

.password-feature-grid .solution-card p, .password-feature-grid .solution-card li {
    color: #475569;
}

.password-feature-grid .solution-card.card-highlight {
    border-color: var(--password-violet);
    box-shadow: 0 0 0 1px rgba(124,58,237,.25);
    background: #172235;
}

.password-feature-grid .solution-card.card-highlight h3 {
    color: var(--password-violet);
}

.password-feature-grid .solution-card p {
    color: #d8e0ef;
}

.password-feature-grid .solution-card li::before {
    background: var(--password-cyan);
    box-shadow: 0 0 16px rgba(34,211,238,.65);
}

.password-onprem-integrations {
    background: #111827;
    color: #fff;
    padding: clamp(76px, 7vw, 108px) 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.password-onprem-integrations .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 6%;
}

.password-onprem-integrations .section-header {
    max-width: 940px;
    margin: 0 auto 58px;
    text-align: center;
    margin-bottom: 44px;
}

.password-onprem-integrations .eyebrow {
    color: var(--password-cyan);
}

.password-onprem-integrations .section-title {
    color: #ffffff;
}

.password-onprem-integrations .section-text {
    color: #cbd5e1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.onprem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    gap: 26px;
    max-width: 1380px;
    margin: 0 auto;
}

.onprem-card {
    min-height: 0;
    padding: 30px 32px 32px;
    background: rgba(15,23,42,.72);
    border: 1px solid rgba(148,163,184,.16);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    text-align: center;
}

.onprem-card:hover {
    transform: translateY(-4px);
    background: rgba(15,23,42,.92);
    border-color: rgba(34,211,238,.34);
}

.onprem-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(226,232,240,.08);
    border: 1px solid rgba(226,232,240,.20);
    color: #e2e8f0 !important;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 auto;
    margin: 0;
    box-shadow: 0 0 24px rgba(34,211,238,.10);
}

.onprem-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.16rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.onprem-card p {
    margin: 0;
    color: #b6c2d6;
    font-size: .94rem;
    line-height: 1.55;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 650px) {
    .password-onprem-integrations {
        padding: 75px 0;
    }

    .onprem-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .onprem-card {
        min-height: auto;
        text-align: center;
    }

    .onprem-card-head {
        flex-direction: column;
        gap: 14px;
    }

    .onprem-card h3 {
        text-align: center;
    }

    .password-footer {
        padding: 64px 6% 28px;
    }

    .password-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-legal-links {
        gap: 18px;
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.onprem-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: currentColor !important;
    opacity: 1;
}

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

.onprem-card-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 18px;
    max-width: 100%;
}

.onprem-icon svg path {
    fill: currentColor !important;
}

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

    .onprem-card p {
        max-width: 360px;
    }
}

.onprem-icon.image-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.onprem-icon.image-icon img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    opacity: 1;
}

.onprem-icon.image-icon img[src*="windows"] {
    width: 42px;
    height: 42px;
}

.onprem-icon.image-icon img[src*="teams"] {
    width: 46px;
    height: 46px;
}

.onprem-icon.image-icon img[src*="whatsapp"] {
    width: 46px;
    height: 46px;
}

.onprem-icon.image-icon img[src*="sms"] {
    width: 44px;
    height: 44px;
}

.password-cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
    opacity: .65;
    pointer-events: none;
}

.password-cta-final .cta-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--password-cyan);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.password-cta-final .cta-title {
    font-size: clamp(2rem, 3.45vw, 3.45rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin-bottom: 28px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    white-space: normal;
}

.password-cta-final .cta-title span {
    color: var(--password-cyan);
    display: block;
    text-align: center;
}

.password-cta-final .cta-subtitle {
    max-width: 760px;
    margin: 0 auto 38px;
    color: #cbd5e1;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.75;
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faq-container {
    max-width: 980px;
}

.password-footer {
    background: #111827;
    color: #94a3b8;
    padding: 78px 6% 30px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.password-footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.55fr .8fr .8fr 1.15fr;
    gap: 72px;
    align-items: start;
}

.password-footer .footer-col {
    min-width: 0;
}

.password-footer .footer-product-logo img {
    width: 245px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.password-footer .footer-brand p {
    max-width: 420px;
    color: #a8b4c8;
    line-height: 1.7;
    margin-bottom: 28px;
}

.password-footer h4 {
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.password-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.password-footer .footer-links a, .password-footer .footer-links button, .password-footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    transition: color .25s ease;
}

.password-footer .footer-links a:hover, .password-footer .footer-links button:hover, .password-footer-bottom a:hover {
    color: #ffffff;
}

.footer-suite-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-suite-badge span {
    color: #64748b;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-suite-badge a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
    padding: 8px 18px;
    border-radius: 8px;
    background: #ffffff;
}

.footer-suite-badge img {
    width: 120px;
    height: auto;
    display: block;
    filter: none;
}

.password-footer-bottom {
    max-width: 1180px;
    margin: 60px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(148,163,184,.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #64748b;
    font-size: .92rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 1050px) {
    .password-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .password-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 1100px) {
    .password-cta-final .cta-title {
        white-space: nowrap;
    }
}

@media (max-width: 700px) {
    .password-cta-final .cta-title {
        font-size: clamp(2rem, 10vw, 3.1rem);
        white-space: normal;
    }
}

.password-cta-final .btn-glow {
    margin-left: auto;
    margin-right: auto;
}

.password-problem-rich .section-header .eyebrow, .problem-section .section-header .eyebrow {
    display: inline-block;
    margin-bottom: 22px;
}

.section-header .eyebrow, .solution-header .eyebrow, .split-content .eyebrow, .forensic-section .eyebrow, .password-onprem-integrations .eyebrow, .password-product-showcase .eyebrow, .password-solution .eyebrow, .password-quote .eyebrow, .all-in-one-section .eyebrow, .faq-section .eyebrow {
    display: inline-block;
    margin-bottom: 22px;
}

.eyebrow + h2, .eyebrow + .section-title, .eyebrow + .solution-title {
    margin-top: 0;
}

.password-hero .btn.btn-secondary {
    border-radius: 2px;
    min-width: 190px;
    padding: 17px 30px;
    border: 1px solid rgba(34,211,238,.75);
    background: rgba(34,211,238,.08);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 0 24px rgba(34,211,238,.14);
    backdrop-filter: none;
    padding-left: 30px;
    padding-right: 30px;
}

.password-hero .btn.btn-secondary:hover {
    background: rgba(34,211,238,.18);
    border-color: var(--password-cyan);
    box-shadow: 0 0 34px rgba(34,211,238,.28);
    transform: translateY(-2px);
}

.password-hero .btn, .password-hero .btn-glow, .password-hero .btn.btn-secondary {
    min-width: 230px;
    width: 230px;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .password-hero .btn, .password-hero .btn-glow, .password-hero .btn.btn-secondary {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
}

.accent-cyan {
    color: var(--password-cyan);
}

.password-quote h2 .accent-cyan {
    color: var(--password-cyan) !important;
    text-shadow: 0 0 34px rgba(34, 211, 238, 0.32);
}

.section-title .accent-cyan, .solution-title .accent-cyan, .split-content h2 .accent-cyan, .forensic-grid h2 .accent-cyan, .faq-section .section-title .accent-cyan {
    color: var(--password-cyan);
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
}

.password-product-showcase .section-title .accent-cyan, .password-solution .solution-title .accent-cyan, .faq-section .section-title .accent-cyan {
    text-shadow: none;
}

.accent-demo-violet {
    color: var(--accent);
    text-shadow: 0 0 22px rgba(99, 102, 241, 0.18);
}

.password-product-showcase .section-title .accent-demo-violet {
    color: var(--accent);
    text-shadow: none;
}

.forensic-grid h2, .forensic-grid h2 span {
    color: #ffffff !important;
}

.faq-section .section-header {
    text-align: center;
}

.faq-section .section-title, .faq-section .section-title span {
    color: #0f172a !important;
    text-align: center;
    text-shadow: none !important;
}

.password-problem-rich .section-header {
    text-align: center !important;
}

.password-problem-rich .section-header .eyebrow {
    color: var(--accent) !important;
}

.password-problem-rich .section-title {
    text-align: center !important;
}

.forensic-section .eyebrow, .password-onprem-integrations .eyebrow, .password-cta-final .cta-eyebrow {
    color: #ffffff !important;
    text-shadow: none !important;
}

.faq-section .eyebrow {
    color: var(--accent) !important;
}

.faq-section .section-header, .faq-section .section-title {
    text-align: center !important;
}

