/* Home Page Specific Styles */

/* Hero Section */
.hero {
    position: relative;
    padding: 164px 20px 80px;
    width: 100%;
    background: linear-gradient(180deg, rgba(81, 64, 247, 0.04) 0%, rgba(0, 0, 0, 0) 25%),
                linear-gradient(180deg, rgba(141, 255, 224, 0.2) 0%, rgba(153, 153, 153, 0) 19.89%);
    display: flex;
    justify-content: center;
    overflow: hidden; /* Prevent overflow from background elements */
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-left {
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Responsive adjustments for Notebooks (1440px and below) */
@media (max-width: 1440px) {
    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: clamp(32px, 4.5vw, 64px);
    }

    .hero-console {
        margin-top: 32px;
    }
}

/* Left Column */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-title {
    font-family: "Ubuntu Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0 4px 4px #000;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: "Ubuntu Sans", sans-serif;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #AAAAAA;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-buttons .btn-prim,
.hero-buttons .btn-sec {
    padding: 0 32px;
    height: 56px;
    font-size: 18px;
}

/* Right Column - Mockup */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    opacity: 0.8;
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateX(2deg) rotateY(-2deg); }
    100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
}

/* Fake Window */
.fake-window {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.window-header {
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #FF5F56; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #27C93F; }

.window-title {
    font-family: "Ubuntu Mono", monospace;
    font-size: 14px;
    color: #888;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8DFFE0;
    background: rgba(141, 255, 224, 0.1);
    padding: 4px 8px;
    border-radius: 100px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #8DFFE0;
    border-radius: 50%;
    box-shadow: 0 0 8px #8DFFE0;
}

.window-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 400px;
    font-family: "Ubuntu Sans", sans-serif;
}

/* User Input Card */
.user-input-card {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 80%;
    color: #E0E0E0;
}

.input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    color: #888;
}

.input-label {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* AI Output List */
.ai-output-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.output-item {
    background: rgba(141, 255, 224, 0.02);
    border-left: 2px solid #8DFFE0;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
}

.output-title {
    color: #8DFFE0;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.output-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.output-item li {
    position: relative;
    padding-left: 16px;
    color: #CCC;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.output-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
}

/* Window Footer */
.window-footer {
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    font-family: "Ubuntu Mono", monospace;
    font-size: 12px;
    color: #666;
}

.separator {
    color: #333;
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0A0A0A;
    border: 1px solid #8DFFE0;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: bounce 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #8DFFE0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
}

.floating-card span {
    color: #FFF;
    font-weight: 500;
    font-size: 14px;
}

/* Section Title */
.section-title-main {
    position: relative;
    margin: 80px auto;
    padding: 0 20px;
    max-width: 1090px;
    width: 90%;
    font-family: "Ubuntu Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 64px);
    line-height: 1.2;
    text-align: center;
    color: #FAFAFA;
    text-shadow: 0 4px 4px #000;
}

@media (max-width: 768px) {
    .section-title-main {
        margin: 40px auto;
        padding: 0 16px;
    }
}

/* Imersão IA Section (Home Teaser) */
.imersa-ia {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: 600px;
    background: #121212;
    display: flex;
    padding: 80px 40px;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .imersa-ia {
        flex-direction: column;
        padding: 60px 20px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .imersa-ia {
        padding: 40px 16px;
        min-height: auto;
    }
}

/* Double diamond background - centered */
.imersa-ia::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/assets/double-diamond.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Static background effect */
    pointer-events: none;
    z-index: 0;
    top: 0;
    left: 0;
    mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 25%, 
        black 75%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 25%, 
        black 75%, 
        transparent 100%);
}

.imersao-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.2;
    font-weight: 500;
    color: #D6D5D5;
    text-align: center;
}

.imersao-subtitle {
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.imersao-label {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #FFF;
}

.imersao-btn .arrow-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.imersao-btn:hover .arrow-icon {
    animation: arrowSlide 0.6s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(4px);
    }
}

/* Stok AI Section (Home Teaser) */
.stokai {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: 600px;
    background: #121212;
    display: flex;
    padding: 80px 40px;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .stokai {
        flex-direction: column;
        padding: 60px 20px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .stokai {
        padding: 40px 16px;
        min-height: auto;
    }
}

/* Double diamond background - centered */
.stokai::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/assets/double-stokai.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Static background effect */
    pointer-events: none;
    z-index: 0;
    top: 0;
    left: 0;
    mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 25%, 
        black 75%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        black 25%, 
        black 75%, 
        transparent 100%);
}

.stokai-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.2;
    font-weight: 500;
    color: #D6D5D5;
    text-align: center;
}

.stokai-subtitle {
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.stokai-label {
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: center;
    color: #FFF;
}

.stokai-btn .arrow-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.stokai-btn:hover .arrow-icon {
    animation: arrowSlide 0.6s ease-in-out infinite;
}

/* Prova Social Section */
.prova-social {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    min-height: auto;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    margin: 0 auto;
    gap: 60px;
    overflow: hidden; /* Prevent overflow from absolute elements */
}

@media (max-width: 768px) {
    .prova-social {
        padding: 60px 20px;
        min-height: auto;
        gap: 40px;
    }
}

.prova-label {
    position: absolute;
    top: 8%;
    left: 53%;
    transform: translateX(calc(-50% - 380px));
    width: auto;
    max-width: 90%;
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    text-align: left;
    color: #FFFFFF;
    opacity: 0.8;
}

.prova-quote {
    width: 90%;
    max-width: 840px;
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.2;
    text-align: center;
    color: #FAFAFA;
    text-shadow: 0px 4px 4px #000000;
}

.prova-author {
    position: absolute;
    top: 35%;
    left: 27%;
    transform: translateX(calc(-50% + 240px));
    width: auto;
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    text-align: right;
    color: #FFFFFF;
    opacity: 0.8;
}

.prova-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 64px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .prova-stats {
        gap: 24px;
        margin-top: 40px;
    }

    .prova-label {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        margin-bottom: 10px;
    }

    .prova-author {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        margin-top: 10px;
    }
}

.stat-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 24px;
    width: 100%;
    max-width: 320px;
    min-height: 250px;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #222;
    border-radius: 20px;
    flex: none;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #8DFFE0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .stat-card {
        max-width: 280px;
        min-height: 200px;
        padding: 20px;
        gap: 16px;
    }
}

.stat-number {
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.2;
    text-align: center;
    color: #FAFAFA;
    text-shadow: 0px 4px 4px #000000;
    flex: none;
    flex-grow: 0;
}

.stat-label {
    width: 100%;
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    flex-grow: 0;
}

/* Security Section */
.seguranca {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: auto;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px;
    margin: 0 auto;
    margin-bottom: 160px;
    overflow: hidden; /* Prevent overflow from shield aura */
}

@media (max-width: 1024px) {
    .seguranca {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .seguranca {
        padding: 40px 16px;
    }
}

.seguranca-title {
    width: 100%;
    max-width: 90%;
    height: auto;
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 64px);
    line-height: 1.2;
    text-align: center;
    color: #FAFAFA;
    text-shadow: 0px 4px 4px #000000;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .seguranca-title {
        margin-bottom: 40px;
    }
}

.seguranca-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

@media (max-width: 1024px) {
    .seguranca-content {
        max-width: 900px;
        min-height: 500px;
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .seguranca-content {
        max-width: 600px;
        min-height: 400px;
        padding: 60px 10px;
    }
}

.seguranca-diagram {
    position: absolute;
    width: min(640px, 60vw);
    height: min(640px, 60vw);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .seguranca-diagram {
        width: min(400px, 80vw);
        height: min(400px, 80vw);
    }
}

.seguranca-diagram::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/assets/shield.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.seguranca-label {
    position: absolute;
    font-family: 'Ubuntu Sans';
    font-style: normal;
    font-weight: 300;
    font-size: clamp(20px, 3vw, 40px);
    line-height: 1.2;
    text-align: center;
    color: #FAFAFA;
    text-shadow: 0px 2px 2px #000000;
    max-width: 90%;
}

@media (max-width: 768px) {
    .seguranca-label {
        font-size: clamp(14px, 2.5vw, 24px);
    }
}

.label-top {
    width: auto;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    top: -10%;
}

.label-top-left {
    width: auto;
    max-width: 40%;
    left: -5%;
    top: 10%;
}

@media (max-width: 768px) {
    .label-top-left {
        left: -10%;
        top: 15%;
    }
}

.label-top-right {
    width: auto;
    max-width: 40%;
    right: -5%;
    top: 10%;
}

@media (max-width: 768px) {
    .label-top-right {
        right: -10%;
        top: 15%;
    }
}

.label-bottom-left {
    width: auto;
    max-width: 40%;
    left: -5%;
    bottom: 10%;
}

@media (max-width: 768px) {
    .label-bottom-left {
        left: -10%;
        bottom: 15%;
    }
}

.label-bottom-right {
    width: auto;
    max-width: 40%;
    right: -5%;
    bottom: 10%;
}

@media (max-width: 768px) {
    .label-bottom-right {
        right: -10%;
        bottom: 15%;
    }
}

.label-bottom {
    width: auto;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10%;
}

/* CTA Workshop Section */
.cta-workshop-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: auto;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px;
    gap: 120px;
    overflow: hidden; /* Prevent overflow */
}

@media (max-width: 768px) {
    .cta-workshop-section {
        padding: 60px 20px;
        gap: 60px;
    }
}

.cta-workshop {
    width: 100%;
    max-width: 1110px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .cta-workshop {
        gap: 24px;
    }
}

.cta-title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.2;
    text-align: center;
    color: #FFF;
    text-shadow: 0 4px 4px #000;
}

.cta-text {
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 90%;
}

.cta-workshop .btn-sec {
    width: 100%;
    max-width: 320px;
}

@media (max-width: 768px) {
    .cta-workshop .btn-sec {
        max-width: 280px;
    }
}

.cta-final {
    width: 100%;
    max-width: 1045px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (max-width: 768px) {
    .cta-final {
        gap: 24px;
    }
}

.cta-final-text {
    width: 100%;
    max-width: 572px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.cta-final .btn-prim {
    width: 100%;
    max-width: 320px;
}

@media (max-width: 768px) {
    .cta-final .btn-prim {
        max-width: 280px;
    }
}

/* Sticky Split Scroll Layout */
.split-section {
    display: flex;
    align-items: flex-start !important; /* Override existing flex alignment */
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    position: sticky;
    top: 140px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
}

.split-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
    max-width: 600px;
}

/* Feature List Card (Glass Dark) */
.feature-list-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.feature-list-card:hover {
    border-color: #8DFFE0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.feature-list-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 8px;
}

.feature-list-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 4px;
}

.feature-list-card p {
    font-size: 16px;
    color: #AAA;
    line-height: 1.5;
}

/* Responsive adjustments for Notebooks (1440px and below) */
@media (max-width: 1440px) {
    .split-section {
        gap: 60px;
        padding: 80px 20px;
    }
    
    .split-content {
        max-width: 450px;
    }
    
    .split-visual {
        max-width: 550px;
    }
}

/* Responsive adjustments for Smaller Laptops/Tablets (1024px) */
@media (max-width: 1024px) {
    .split-section {
        flex-direction: column !important;
        align-items: center !important;
        gap: 80px;
        padding: 60px 20px;
        overflow: hidden;
    }
    
    .split-content {
        position: relative;
        top: 0;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .split-visual {
        max-width: 100%;
        gap: 80px;
    }
    
    .imersao-title, .stokai-title {
        text-align: center !important;
    }
    
    .imersao-subtitle, .stokai-subtitle {
        text-align: center !important;
    }
    
    .imersao-label, .stokai-label {
        text-align: center !important;
    }
}

/* Security Hub Section */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.security-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-column.left {
    align-items: flex-end;
    text-align: right;
}

.security-column.right {
    align-items: flex-start;
    text-align: left;
}

/* Shield Container */
.shield-container {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-floater {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.shield-svg {
    width: 200px;
    height: 240px;
    color: #8DFFE0;
    filter: drop-shadow(0 0 20px rgba(141, 255, 224, 0.6));
    z-index: 10;
    position: relative;
    display: block;
}

.shield-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(closest-side, rgba(81, 64, 247, 0.25) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    pointer-events: none;
}

/* Shield Reflection */
.shield-reflection {
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(-1) perspective(500px) rotateX(20deg);
    opacity: 0.3;
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to top, transparent 20%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 20%, black 100%);
    display: flex;
    justify-content: center;
}

.shield-reflection svg {
    width: 200px;
    height: 240px;
    color: #8DFFE0;
}

/* Holographic Floor (Shared) */
.holo-floor {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) scaleX(2.5);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(141, 255, 224, 0.3) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 1;
    opacity: 0.5;
    animation: floorPulse 6s ease-in-out infinite;
}

@keyframes floorPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(2.5) scaleY(1); }
    50% { opacity: 0.3; transform: translateX(-50%) scaleX(2) scaleY(0.8); }
}

/* Security Cards */
.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.security-card:hover {
    border-color: #8DFFE0;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-column.left .security-card {
    flex-direction: row-reverse;
}

.security-column.right .security-card {
    flex-direction: row;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(141, 255, 224, 0.05);
    border-radius: 12px;
    color: #8DFFE0;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 14px;
    color: #AAA;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .security-column.left, .security-column.right {
        align-items: center;
        text-align: center;
    }
    
    .security-column.left .security-card, .security-column.right .security-card {
        flex-direction: column;
        text-align: center;
    }
    
    .shield-container {
        order: -1;
        margin: 0 auto;
    }
}

/* Icon Glow Effect */
.icon-glow {
    filter: drop-shadow(0 0 5px rgba(141, 255, 224, 0.5));
}

/* Workshop Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: #121212;
    border: 1px solid #333;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

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

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #FFF;
}

.modal-title {
    font-family: "Ubuntu Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-subtitle {
    color: #AAA;
    font-size: 16px;
    margin-bottom: 24px;
}

.modal-required {
    color: #666;
    font-size: 12px;
    margin-bottom: 24px;
    text-align: right;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
}

.required-star {
    color: #8DFFE0;
}

.form-group input {
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFF;
    font-family: "Ubuntu Sans", sans-serif;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #8DFFE0;
}

.modal-submit {
    width: 100%;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 24px;
        max-width: 90%;
    }
    
    .modal-title {
        font-size: 24px;
    }
}
