/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}
a { color: #045089; text-decoration: none; }
a:hover { color: #033a63; }
ul { list-style: none; }
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    background: #222;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 0;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    gap: 0;
}
.nav-links a {
    color: #ccc;
    padding: 18px 18px;
    display: block;
    transition: color 0.2s, background 0.2s;
    font-size: 0.95rem;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 15px; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #045089 0%, #023456 100%);
    color: #fff;
    padding: 80px 0 60px;
}
.hero-split {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-text { flex: 1; }
.hero-img { flex: 0 0 40%; text-align: right; }
.hero-img img { max-width: 100%; height: auto; }
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.hero p { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.9; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary { background: #f96d64; color: #fff; }
.btn-primary:hover { background: #e7574e; color: #fff; }
.btn-secondary { background: #045089; color: #fff; }
.btn-secondary:hover { background: #033a63; color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: #045089; }
.btn-dark { background: #333; color: #fff; }
.btn-dark:hover { background: #222; color: #fff; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: #f5f7fa; }
.section-dark { background: #045089; color: #fff; }
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #222;
}
.section-dark .section-title { color: #fff; }
.section-subtitle {
    text-align: center;
    color: #585858;
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.85); }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.feature-icon {
    width: 70px;
    height: 70px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #045089;
}
.feature-card h3 { margin-bottom: 10px; color: #222; font-size: 1.2rem; }
.feature-card p { color: #585858; font-size: 0.95rem; line-height: 1.7; }
.feature-img { max-width: 100%; height: auto; margin-bottom: 20px; border-radius: 4px; }

/* Two-column features */
.features-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.feature-wide {
    background: #fff;
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.feature-wide h3 { color: #222; font-size: 1.3rem; margin-bottom: 12px; }
.feature-wide p { color: #585858; line-height: 1.7; }
.feature-wide .feature-img { margin-bottom: 20px; }

/* Encryption highlight section */
.encrypt-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.encrypt-section h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 20px;
}
.encrypt-section p {
    color: #585858;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}
.price-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card.featured { border-color: #045089; box-shadow: 0 4px 30px rgba(4,80,137,0.15); }
.price-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: #222; }
.price-card .billing { color: #585858; font-size: 0.9rem; margin-bottom: 20px; }
.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #045089;
    margin-bottom: 25px;
}
.price-card .price span { font-size: 1rem; font-weight: 400; color: #585858; }
.price-card ul { margin-bottom: 30px; text-align: left; }
.price-card li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; color: #585858; }
.price-card li::before { content: "\2713 "; color: #22c55e; font-weight: 700; margin-right: 8px; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Setup Steps */
.steps { max-width: 700px; margin: 0 auto; }
.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.step-num {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #045089;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.step-content h3 { margin-bottom: 5px; color: #222; }
.step-content p { color: #585858; }
.step-img { max-width: 100%; height: auto; margin-top: 15px; border-radius: 6px; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }

/* Jobs */
.job-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.job-card h3 { color: #222; margin-bottom: 10px; }
.job-card h4 { color: #045089; margin: 15px 0 10px; font-size: 0.95rem; }
.job-card ul { padding-left: 20px; }
.job-card li { list-style: disc; color: #585858; padding: 3px 0; }
.job-card li::before { content: none; }

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #045089;
    box-shadow: 0 0 0 3px rgba(4, 80, 137, 0.1);
}

/* Payment Form */
.pay-form {
    display: inline-block;
}
.pay-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 250px;
    margin-right: 10px;
    font-family: inherit;
}
.pay-form input[type="email"]:focus {
    outline: none;
    border-color: #045089;
}

/* Trial Form (footer) */
.trial-form { margin-top: 15px; }
.trial-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-family: inherit;
}
.trial-form input::placeholder { color: #999; }
.trial-form input:focus { outline: none; border-color: #f96d64; }
.trial-form button {
    width: 100%;
    padding: 10px;
    background: #f96d64;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.trial-form button:hover { background: #e7574e; }

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #045089 0%, #023456 100%);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { opacity: 0.8; font-size: 1.1rem; }

/* Footer */
.footer {
    background: #222;
    color: #aaa;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer h3, .footer h4 { color: #fff; margin-bottom: 15px; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: #8bb4f0; }
.footer a:hover { color: #fff; }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
}

/* Benefits grid (careers) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.benefit {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.benefit h4 { color: #222; margin-top: 10px; }

/* Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 30px auto 0;
}
.download-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
    color: inherit;
}
.download-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.download-card img { max-width: 100%; height: auto; }
.download-card h4 { margin-bottom: 5px; color: #222; }
.download-card p { font-size: 0.85rem; color: #585858; }

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { color: #222; margin: 30px 0 10px; }
.legal-content p { margin-bottom: 15px; color: #585858; }

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #222;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }
    .hero-split { flex-direction: column; text-align: center; }
    .hero-img { flex: none; }
    .hero-img img { max-width: 80%; }
    .hero h1 { font-size: 2rem; }
    .hero { padding: 60px 0 50px; }
    .hero-buttons { justify-content: center; }
    .features-grid,
    .pricing-grid,
    .about-grid,
    .footer-grid,
    .benefits-grid,
    .features-two-col { grid-template-columns: 1fr; }
    .footer-grid { gap: 25px; }
    .section { padding: 50px 0; }
    .pay-form input[type="email"] { width: 100%; margin-bottom: 10px; }
}
