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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

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

.icon {
    width: 48px;
    height: 48px;
}

.icon-white {
    color: white;
}

/* Hero Section */
.hero,
.videos {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    z-index: 1;
}

.header-logo {
    width: 100%;
    max-width: 250px;
    position: absolute;
    top: 2%;
}

.sitnewblock {
    display: flex;
    flex-flow: row nowrap;
    gap: 24px;
}

.grid-right {
    width: 50%;
}

.grid-right-img {
    width: 100%;
    border-radius: 10px;
}

.hero-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-icon .icon {
    width: 64px;
    height: 64px;
    color: #2563eb;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    text-align: center;
    color: #475569;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.hero-text {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.hero-bold {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.section-icon .icon {
    width: 40px;
    height: 40px;
    color: #d97706;
}

h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 48px;
}

.section-footer {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
    margin-top: 32px;
}

/* Grid Layouts */
.grid-2 {
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    width: 90%;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Situations Section */
.situations {
    background: white;
}

.situation-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s;
}

.situation-card:hover {
    border-color: #93c5fd;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 4px;
}

.situation-card p {
    color: #475569;
    line-height: 1.7;
}

/* Products Section */
.products {
    background: white;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(59, 130, 246, 0.03) 35px, rgba(59, 130, 246, 0.03) 70px);
    opacity: 0.5;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products .section-icon .icon {
    color: #64748b;
}

.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    padding: 24px;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #93c5fd;
}

.product-icon {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 12px;
    display: inline-flex;
    margin-bottom: 16px;
}

.product-icon .icon {
    width: 32px;
    height: 32px;
    color: #64748b;
}

.product-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 8px;
    text-align: left;
}

.product-card p {
    color: #64748b;
    font-size: 14px;
}

.product-other {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #93c5fd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-other .icon {
    width: 40px;
    height: 40px;
    color: #2563eb;
    margin-bottom: 12px;
}

.product-other p {
    color: #475569;
    font-weight: 500;
}

.warning-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 24px;
    max-width: 900px;
    margin: 48px auto 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 16px;
}

.warning-icon {
    width: 24px;
    height: 24px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 4px;
}

.warning-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* How We Help Section */
.how-we-help {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.how-we-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.how-we-help .container {
    position: relative;
    z-index: 1;
}

.how-we-help .section-icon .icon {
    color: #2563eb;
}

.help-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s;
}

.help-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.help-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
    margin-bottom: 16px;
}

.help-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    text-align: left;
}

.help-card p {
    color: #64748b;
    line-height: 1.7;
}

.cta-box {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 32px auto 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-box p {
    font-size: 18px;
    font-weight: 500;
}

.cta-clickable,
.cta-scroll {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-clickable:hover,
.cta-scroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Why It Works Section */
.why-it-works {
    background: white;
}

.tactic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.tactic-icon {
    width: 40px;
    height: 40px;
    color: #d97706;
    margin-bottom: 16px;
}

.tactic-card p {
    color: #475569;
    line-height: 1.7;
}

/* Requirements Section */
.requirements {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.requirements .container {
    position: relative;
    z-index: 1;
}

.requirement-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.req-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
    flex-shrink: 0;
}

.requirement-card p {
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

/* Timeline Section */
.timeline {
    background: white;
}

.timeline-card {
    text-align: center;
}

.timeline-icon {
    background: #dbeafe;
    padding: 16px;
    border-radius: 50%;
    display: inline-flex;
    margin-bottom: 16px;
}

.timeline-icon .icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.timeline-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.timeline-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Confidentiality Section */
.confidentiality {
    background: white;
}

.confidentiality .section-icon .icon {
    color: #2563eb;
}

.confidentiality-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.confidentiality-box p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
}

.contact-form h2 {
    color: white;
}

.contact-form .section-subtitle {
    color: #bfdbfe;
}

.form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    font-weight: 600;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bfdbfe;
    margin-top: 32px;
}

.lock-icon {
    width: 20px;
    height: 20px;
}

.privacy-note p {
    font-size: 14px;
}

/* Important Section */
.important {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.important::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.important .container {
    position: relative;
    z-index: 1;
}

.important .section-icon .icon {
    color: #d97706;
}

.important-box {
    background: white;
    border-left: 4px solid #d97706;
    border-radius: 0 16px 16px 0;
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.important-box ul {
    list-style: none;
}

.important-box li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.important-box li::before {
    content: "•";
    color: #d97706;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.important-footer {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.important-footer p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #0f172a;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .icon {
    width: 32px;
    height: 32px;
    color: #60a5fa;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 800px;
}

.footer-copyright {
    font-size: 14px;
    color: #64748b;
    padding-top: 24px;
    border-top: 1px solid #334155;
    width: 100%;
}

.videos {
    position: relative;
}

.videos_vid {
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.videos_vid.sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    max-width: calc(100vw - 40px);
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    color: white;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: white;
}

.modal-content h2 {
    color: white;
    margin-top: 20px;
}

.modal-content .section-subtitle {
    color: #bfdbfe;
}

.modal-form {
    margin-top: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitnewblock {
        flex-flow: column nowrap;
    }
    .grid-2 {
        width: 100%;
    }
    .grid-right {
        width: 100%;
    }
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    section {
        padding: 48px 0;
    }

    .hero-card,
    .form {
        padding: 24px;
    }

    .videos_vid.sticky {
        width: 240px;
        bottom: 12px;
        right: 12px;
    }

    .modal-content {
        padding: 24px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }
}
