/*
Theme Name: OUTSOURCEHUB IT
Theme URI: https://intro.jobpark.mn
Author: OUTSOURCEHUB IT
Description: One-page WordPress landing page for Managed IT Infrastructure & Cyber Security Service.
Version: 1.0
Text Domain: outsourcehub-it
*/

:root {
  --blue: #0b5cab;
  --dark-blue: #062546;
  --cyan: #35d5ec;
  --green: #0b7a53;
  --text: #102033;
  --muted: #63788a;
  --bg: #f6f9fc;
  --border: #e4edf5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { width: min(1120px, 92%); margin: auto; }

.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e5edf5;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue);
  font-size: 20px;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--dark-blue);
}
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #496276;
}
.btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn.secondary { background: var(--blue); }

.hero {
  background: radial-gradient(circle at 75% 25%, rgba(53,213,236,0.18), transparent 34%),
              linear-gradient(135deg, #071e38 0%, #062546 50%, #0b5cab 100%);
  color: white;
  padding: 88px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(53,213,236,.12);
  border: 1px solid rgba(53,213,236,.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
  color: #dffbff;
}
h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero p {
  font-size: 18px;
  color: #e8f3ff;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-logo-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.hero-logo-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}
section { padding: 74px 0; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-title h2 {
  font-size: 34px;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title p { color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card, .pricing-card {
  background: white;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(12,52,92,.06);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e8f5ef;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 14px;
}
.card h3, .pricing-card h3 { margin-bottom: 10px; }
.card p, .card li, .pricing-card p, .pricing-card li {
  color: var(--muted);
  font-size: 15px;
}
ul { padding-left: 18px; margin-top: 12px; }
.pain { background: white; }
.pain .card { border-left: 5px solid #e25555; }
.solution .card { border-left: 5px solid var(--green); }
.pricing-card.featured {
  border: 2px solid var(--cyan);
  transform: translateY(-8px);
}
.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin: 12px 0;
}
.price small { font-size: 14px; color: var(--muted); }

.cta {
  background: linear-gradient(135deg, #071e38, var(--blue));
  color: white;
  text-align: center;
  border-radius: 30px;
  padding: 54px 28px;
}
.cta h2 { font-size: 34px; margin-bottom: 12px; }
.cta p { color: #dcecff; margin-bottom: 24px; }

.contact { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-note {
  background: #f6f9fc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.wp-contact-note {
  font-size: 14px;
  color: var(--muted);
}
.site-footer {
  padding: 26px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  background: #edf4fa;
}

@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 64px 0; }
  section { padding: 54px 0; }
}
