/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0a0f1c;
    color: #eef2ff;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #00ADEF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #00ADEF;
    padding-left: 1rem;
}

.section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #00ADEF;
    color: #0a0f1c;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #00ADEF;
    color: #00ADEF;
}

.btn-outline:hover {
    background: rgba(0, 173, 239, 0.1);
    transform: translateY(-2px);
}

.btn:hover {
    background: #008ec7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0,173,239,0.4);
}

/* Header & Navigation */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    background: rgba(10,15,28,0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, #00ADEF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ccd6f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00ADEF;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 1.8rem;
    transition: all 0.25s;
    border: 1px solid rgba(0,173,239,0.2);
}

.card:hover {
    border-color: #00ADEF;
    transform: translateY(-5px);
    background: rgba(0,173,239,0.02);
}

.card i {
    font-size: 2.5rem;
    color: #00ADEF;
    margin-bottom: 1.2rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Tech stack badges */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.tech-icon {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0,173,239,0.3);
    font-size: 0.9rem;
}

.tech-icon i {
    font-size: 1.2rem;
    color: #00ADEF;
}

/* Compliance row */
.compliance-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,173,239,0.05);
    border-radius: 32px;
    padding: 2rem;
    margin-top: 1rem;
}

.compliance-item {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.compliance-item i {
    color: #00ADEF;
    font-size: 1.5rem;
}

/* Contact form */
.contact-form {
    max-width: 700px;
    margin: 2rem auto 0;
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(0,173,239,0.3);
}

.form-group {
    margin-bottom: 1.2rem;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    background: #111725;
    border: 1px solid #2d3548;
    border-radius: 16px;
    color: white;
    font-family: inherit;
    transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00ADEF;
    box-shadow: 0 0 0 3px rgba(0,173,239,0.2);
}

label {
    font-weight: 500;
    display: block;
    margin-bottom: 0.4rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #8a92b0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .container { padding: 0 1.5rem; }
    .section { padding: 3rem 0; }
    .nav-links { gap: 1rem; }
}

.text-datto { color: #00ADEF; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; text-align: center; }
.tech-item { background: #f8fafc; padding: 1.5rem; border-radius: 10px; border: 1px solid #e2e8f0; transition: 0.3s; }
.tech-item i { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; color: #1a202c; }
.tech-item:hover { transform: translateY(-5px); border-color: #00ADEF; }
.tech-item:hover i { color: #00ADEF; }
.trust-bar { background: #1a202c; color: #94a3b8; padding: 1.5rem 0; font-size: 0.9rem; }
.flex-around { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; }
.card-icon { font-size: 2.5rem; color: #00ADEF; margin-bottom: 1rem; }
.nav-cta { background: #00ADEF; color: white !important; padding: 0.5rem 1.2rem; border-radius: 5px; }