:root {
  --primary: #0f2a44;
  --accent: #2563eb;
  --light: #f5f7fa;
  --text: #1f2933;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #ffffff;
}

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

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero {
  background: var(--light);
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hero-actions a {
  margin-right: 1rem;
}

.graphic-box {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
  border-radius: 12px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.trust {
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: center;
  font-weight: 500;
}

.services {
  padding: 5rem 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

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

.card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.cta {
  padding: 4rem 0;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
}

.cta-box p {
  margin: 1rem 0 2rem;
}

.footer {
  background: #0b1f33;
  color: #cbd5e1;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  max-width: 600px;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
}
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price {
  font-weight: 600;
  margin: 1rem 0;
  color: #2563eb;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.card ul li {
  margin-bottom: 0.5rem;
}

.card.highlight {
  border: 2px solid #2563eb;
  transform: translateY(-6px);
}
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price {
  font-weight: 600;
  margin: 1rem 0;
  color: #2563eb;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.card ul li {
  margin-bottom: 0.5rem;
}

.card.highlight {
  border: 2px solid #2563eb;
  transform: translateY(-6px);
}
.hosting-graphic {
  background-image: url("images/a65f913182f083e0bc79acb3e9a2e73a.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}