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

:root {
    --forest-green: #2D5F3F;
    --forest-green-light: #3A7A52;
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --slate-dark: #475569;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

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

.header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: block;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 80px 0;
}

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

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-200);
    margin-bottom: 32px;
}

.hero-note {
    margin-top: 24px;
}

.hero-note p {
    font-size: 14px;
    color: var(--slate-light);
    margin: 0;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    max-height: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gray-800);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--slate);
    margin-bottom: 48px;
}

.kpi-section {
    background: var(--gray-50);
}

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

.kpi-tile {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.kpi-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-tile h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.kpi-tile p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.5;
}

.risk-fingerprint-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.risk-fingerprint {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.fingerprint-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fingerprint-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.fingerprint-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.fingerprint-info p {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.6;
}

.products-section {
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    position: relative;
}

.product-card.featured {
    border-color: var(--amber);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.product-description {
    font-size: 15px;
    color: var(--slate);
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--slate-dark);
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 700;
}

.btn-product {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    color: var(--white);
}

.btn-product:hover {
    background: linear-gradient(135deg, var(--forest-green-light) 0%, var(--forest-green) 100%);
}

.btn-product-phone {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
}

.btn-product-phone:hover {
    background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 100%);
}

.btn-product-email {
    background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
}

.btn-product-email:hover {
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate-dark) 100%);
}

.security-section {
    background: var(--gray-50);
}

.security-image-wrapper {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.security-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.security-item {
    text-align: center;
}

.security-item svg {
    margin-bottom: 24px;
}

.security-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.security-item p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.5;
}

.disclaimer-section {
    background: var(--gray-100);
    padding: 48px 0;
}

.disclaimer-box {
    background: var(--white);
    border-left: 4px solid var(--amber);
    padding: 32px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.disclaimer-box p {
    font-size: 15px;
    color: var(--slate-dark);
    line-height: 1.6;
}

.contacts-section {
    background: var(--white);
}

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

.contact-item {
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.contact-item p {
    font-size: 16px;
    color: var(--slate-dark);
    line-height: 1.5;
}

.contact-item a {
    color: var(--forest-green);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--forest-green-light);
    text-decoration: underline;
}

.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-200);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-address {
    color: var(--slate-light);
    font-size: 13px;
    line-height: 1.5;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--gray-200);
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid var(--slate-dark);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-200);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 32px;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-img {
        max-height: 350px;
    }

    .section-title {
        font-size: 28px;
    }

    .risk-fingerprint {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 64px 0;
    }

    .section {
        padding: 48px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .kpi-grid,
    .features-grid,
    .products-grid,
    .security-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}
