/* Layout - exact Figma implementation */

/* Navbar - exact Figma implementation */
.navbar {
    width: 100%;
    height: 80px;
    background-color: var(--figma-white);
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-wrapper {
    width: 100%;
    max-width: 920px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 auto;
    padding: 0;
}

.logo {
    width: 152.37px;
    height: 32px;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 14px;
    width: 427px;
}

.nav-link {
    color: var(--figma-text);
    text-decoration: none;
    font-family: 'Source Serif Pro', serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    height: 14px;
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: #AF92FF;
}

/* Header Section */
.header-section {
    width: 100%;
    height: 70vh;
    background-color: var(--figma-bg);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.header-content {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
}

.header-content h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    color: var(--figma-text);
    margin: 0 0 24px 0;
    position: relative;
}

.header-content h1::after {
    display: none !important;
}

.header-content p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--figma-text);
    margin: 0;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Main Content */
.main-content {
    width: 100%;
    background-color: var(--figma-white);
    padding: 80px 0;
    scroll-margin-top: 80px;
}

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

.section-header h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--figma-text);
    margin: 0 0 24px 0;
    position: relative;
    line-height: 0.2;
}

.section-header h2::after {
    display: none !important;
}

.section-header p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--figma-text);
    margin: 0 0 24px 0;
    max-width: 494px;
    margin: 0 auto 24px auto;
    line-height: 1.4;
}

.section-header::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background-color: var(--figma-marker);
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: var(--figma-bg);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    gap: 12px;
}

.feature-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-content h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--figma-text);
    margin: 0;
    text-align: center;
    width: 100%;
    text-transform: lowercase;
}

.feature-content p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--figma-text);
    margin: 0;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-wrapper {
        padding: 16px 24px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
    }
    
    .burger-menu {
        display: flex !important;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--figma-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 32px;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 24px;
        font-weight: 600;
        color: var(--figma-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: #AF92FF;
    }
    
    .header-section {
        height: 70vh;
        padding: 40px 24px;
    }
    
    .header-content h1 {
        font-size: 48px;
    }
    
    .header-content h1::after {
        width: 150px;
        height: 18px;
        bottom: 12px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header h2::after {
        display: none !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
    }
    
    .main-content .section-header {
        padding: 0 24px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background-color: var(--figma-bg);
    width: 100%;
    margin: 0;
    scroll-margin-top: 80px;
}

.demo-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
}

.demo-input {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.demo-input input {
    flex: 2;
    height: 60px;
    padding: 16px;
    border: none;
    background-color: var(--figma-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    outline: none;
}

.demo-input input:focus {
    outline: none;
}

.demo-input button {
    flex: 1;
    height: 60px;
}

.demo-result {
    background-color: var(--figma-white);
    padding: 24px;
    border: none;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
}

.status-indicator.safe {
    background-color: #4CAF50;
}

.status-indicator.warning {
    background-color: #FF9800;
}

.status-indicator.danger {
    background-color: #F44336;
}

.demo-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--figma-text);
}

.detail-value {
    font-family: 'Source Serif Pro', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--figma-text);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--figma-white);
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 920px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--figma-bg);
    width: 100%;
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.pricing-card.pricing-featured {
    border-color: #AF92FF;
    transform: scale(1.05);
}

.pricing-badge {
    background-color: #AF92FF;
    color: var(--figma-text);
    padding: 6px 16px;
    font-family: 'Source Serif Pro', serif;
    font-size: 14px;
    font-weight: 600;
    align-self: center;
    margin-bottom: 12px;
}

.pricing-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-header {
    width: 100%;
}

.pricing-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

.pricing-header h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--figma-text);
    margin: 4px 0 0 0;
    text-transform: lowercase;
    line-height: 1;
}

.pricing-card .price {
    font-family: 'Source Serif Pro', serif;
    font-size: 32px;
    font-weight: 600;
    color: #AF92FF;
    line-height: 1;
    margin: 0;
}

.pricing-divider {
    width: 64px;
    height: 4px;
    background-color: var(--figma-marker);
}

.pricing-why {
    width: 100%;
    text-align: left;
}

.pricing-why h4 {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--figma-text);
    margin: 0 0 12px 0;
    text-transform: lowercase;
}

.pricing-why p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--figma-text);
    margin: 0;
    line-height: 1.4;
}

.pricing-features {
    width: 100%;
    margin: 0;
}

.pricing-features h4 {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--figma-text);
    margin: 0 0 12px 0;
    text-transform: lowercase;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-features li {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--figma-text);
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 20px;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--figma-text);
    flex-shrink: 0;
}

.pricing-card .btn {
    display: inline-block;
    width: auto;
    background: none;
    border: none;
    padding: 0.025em 13.7px;
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--figma-text);
    text-align: center;
    cursor: pointer;
    line-height: 1.1em;
    background: linear-gradient(104deg, rgba(250, 255, 146,0) 0.9%, rgba(250, 255, 146,1.25) 2.4%, rgba(250, 255, 146,0.5) 5.8%, rgba(250, 255, 146,0.1) 93%, rgba(250, 255, 146,0.7) 96%, rgba(250, 255, 146,0) 98%), linear-gradient(183deg, rgba(250, 255, 146,0) 0%, rgba(250, 255, 146,0.3) 7.9%, rgba(250, 255, 146,0) 15%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    border-radius: 0.5px;
    text-shadow: -12px 12px 9.8px rgba(250, 255, 146,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card .btn:hover {
    background: linear-gradient(104deg, rgba(175, 146, 255,0) 0.9%, rgba(175, 146, 255,1.25) 2.4%, rgba(175, 146, 255,0.5) 5.8%, rgba(175, 146, 255,0.1) 93%, rgba(175, 146, 255,0.7) 96%, rgba(175, 146, 255,0) 98%), linear-gradient(183deg, rgba(175, 146, 255,0) 0%, rgba(175, 146, 255,0.3) 7.9%, rgba(175, 146, 255,0) 15%);
    text-shadow: -12px 12px 9.8px rgba(175, 146, 255,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1);
    transition: all 0.2s ease-in-out;
}

.pricing-card .btn::after {
    display: none !important;
}

/* Marker Effect for Headlines */
.highlight {
    padding: 0;
    line-height: 1.1em;
    font-weight: bolder;
    background: linear-gradient(104deg, rgba(250, 255, 146,0) 0.9%, rgba(250, 255, 146,1.25) 2.4%, rgba(250, 255, 146,0.5) 5.8%, rgba(250, 255, 146,0.1) 93%, rgba(250, 255, 146,0.7) 96%, rgba(250, 255, 146,0) 98%), linear-gradient(183deg, rgba(250, 255, 146,0) 0%, rgba(250, 255, 146,0.3) 7.9%, rgba(250, 255, 146,0) 15%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    border-radius: 0.5px;
    text-shadow: -12px 12px 9.8px rgba(250, 255, 146,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1);
}

/* Demo Button with pricing style */
#demo-analyze {
    width: auto;
    background: none;
    border: none;
    padding: 0.025em 13.7px;
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--figma-text);
    text-align: center;
    cursor: pointer;
    line-height: 1.1em;
    background: linear-gradient(104deg, rgba(250, 255, 146,0) 0.9%, rgba(250, 255, 146,1.25) 2.4%, rgba(250, 255, 146,0.5) 5.8%, rgba(250, 255, 146,0.1) 93%, rgba(250, 255, 146,0.7) 96%, rgba(250, 255, 146,0) 98%), linear-gradient(183deg, rgba(250, 255, 146,0) 0%, rgba(250, 255, 146,0.3) 7.9%, rgba(250, 255, 146,0) 15%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    border-radius: 0.5px;
    text-shadow: -12px 12px 9.8px rgba(250, 255, 146,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#demo-analyze:hover {
    background: linear-gradient(104deg, rgba(175, 146, 255,0) 0.9%, rgba(175, 146, 255,1.25) 2.4%, rgba(175, 146, 255,0.5) 5.8%, rgba(175, 146, 255,0.1) 93%, rgba(175, 146, 255,0.7) 96%, rgba(175, 146, 255,0) 98%), linear-gradient(183deg, rgba(175, 146, 255,0) 0%, rgba(175, 146, 255,0.3) 7.9%, rgba(175, 146, 255,0) 15%);
    text-shadow: -12px 12px 9.8px rgba(175, 146, 255,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1);
    transition: all 0.2s ease-in-out;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--figma-text);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

/* Desktop Navigation Styles */
.navigation {
    display: flex;
    gap: 32px;
    width: auto;
}

/* Text selection highlight color */
::selection {
    background-color: #AF92FF;
    color: white;
}

::-moz-selection {
    background-color: #AF92FF;
    color: white;
}

/* Remove marker effect from all headlines by default */

/* Responsive Demo & Pricing */
@media (max-width: 768px) {
    .demo-section {
        padding: 40px 24px;
        width: 100%;
    }
    
    .demo-input {
        flex-direction: column;
        gap: 16px;
    }
    
    .demo-input input {
        flex: none;
        width: 100%;
    }
    
    .demo-input button {
        flex: none;
        width: 100%;
    }

    .demo-container {
        gap: 24px;
    }

    .demo-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-section {
        padding: 40px 24px;
        width: 100%;
    }

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

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

    .pricing-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card {
        width: 100%;
        padding: 20px;
    }
    
    .pricing-content {
        width: 100%;
    }
    
    .pricing-header {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .pricing-why {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .pricing-features {
        width: 100%;
        margin: 0;
    }
    
    .pricing-divider {
        margin: 12px 0;
    }
    
    .pricing-card .btn {
        width: auto;
        margin-top: 12px;
    }
    
    .pricing-card .btn::after {
        display: none;
    }
}