:root {
  --brand: #0b4f8a;
  --brand-dark: #093d6a;
  --text: #222;
  --bg: #f9fafb;
}

* {margin:0;padding:0;box-sizing:border-box;font-family:sans-serif}
body {background:var(--bg);color:var(--text);line-height:1.6;padding-top:70px}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--brand);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
}
.logo {display:flex;align-items:center;gap:8px;color:white;text-decoration:none;font-weight:bold}
.logo img {width:38px;height:38px;border-radius:6px}
.currency {display:flex;align-items:center;gap:6px}
.currency img {width:22px;height:16px}

/* Hero */
.hero {
  background: linear-gradient(135deg, #eaf4ff, #f0f7ff);
  text-align: center;
  padding: 80px 20px 60px;
}
.hero h1 {font-size:30px;color:var(--brand);margin-bottom:12px}
.hero p {color:#555;font-size:16px}

/* Sections */
.container {max-width:1000px;margin:40px auto;padding:0 20px}
.container h2 {color:var(--brand);margin-bottom:14px;font-size:22px}
.container p {margin-bottom:18px;color:#444;font-size:15px}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  background:white;
  border-radius:8px;
  padding:20px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  transition:.3s;
}
.value-card:hover {transform:translateY(-4px);box-shadow:0 4px 10px rgba(0,0,0,0.15)}
.value-card h3 {margin-bottom:10px;font-size:18px;color:var(--brand)}

/* Why Work */
.why-work ul {list-style:none;padding-left:0}
.why-work li {margin-bottom:10px;font-size:15px}

/* CTA */
.cta {
  text-align:center;
  background:var(--brand);
  color:white;
  padding:60px 20px;
  margin-top:40px;
}
.cta h2 {margin-bottom:10px;font-size:24px}
.cta p {margin-bottom:20px}
.btn {
  background:white;
  color:var(--brand);
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  transition:.3s;
}
.btn:hover {background:var(--brand-dark);color:white}

/* Footer */
.footer {
  background: var(--brand);
  color:white;
  text-align:center;
  padding:20px;
  margin-top:0;
}

/* Responsive */
@media(max-width:768px){
  .hero h1 {font-size:24px}
  .container {padding:0 12px}
                                }
