
/* InspirePC — clean responsive stylesheet */
/* Reset */
*{box-sizing:border-box;margin:0;padding:0}html,body{height:100%}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;line-height:1.5;color:#111;background:#f6f8fb}

/* Containers */
.container{max-width:1100px;margin:0 auto;padding:1rem}

/* Header */
.site-header{background:linear-gradient(90deg,#ffffffcc,#f0f6ffcc);backdrop-filter:blur(4px);border-bottom:1px solid rgba(15,25,40,0.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0.75rem 0}
.brand{display:flex;align-items:center;gap:0.75rem;text-decoration:none;color:inherit}
.logo{width:56px;height:56px;background:#dfeeff;border-radius:8px;display:inline-block}
.brand-title{font-weight:700;font-size:1.05rem;color:#0b69ff}

/* Nav */
.nav{display:flex;gap:0.5rem;align-items:center}
.nav a{padding:0.5rem 0.6rem;text-decoration:none;color:#09304a;border-radius:8px;font-weight:600}
.nav a.active{background:#e8f1ff;color:#0b69ff}
.nav-toggle{display:none;background:none;border:0;font-size:1.4rem}

/* Hero */
.hero{padding:2rem 0}
.hero-inner{display:grid;grid-template-columns:1fr 460px;gap:1.5rem;align-items:center}
.hero-text h1{font-size:1.6rem;color:#072035;margin-bottom:0.5rem}
.hero-text p{color:#233142;margin-bottom:0.8rem}
.hero-cta{display:flex;gap:0.6rem;margin-bottom:0.8rem}
.hero-features{list-style:none;margin-top:0.6rem;color:#2b3b47}

.pc-frame img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: contain; /* or 'cover' if you want cropped look */
  max-height: 400px; /* limits image height */
}
/* Utilities & Buttons */
.btn{display:inline-block;padding:0.6rem 1rem;border-radius:8px;background:#0b69ff;color:#fff;text-decoration:none;font-weight:700;box-shadow:0 6px 18px rgba(11,105,255,0.14)}
.btn-ghost{background:transparent;border:1px solid #0b69ff;color:#0b69ff;font-weight:700}
.btn.small{padding:0.35rem 0.6rem;font-size:0.9rem;border-radius:6px}
.btn-whatsapp{background:transparent;border:1px solid #25D366;color:#075E54;font-weight:700}

/* Quick services */
.quick-services{padding:1.6rem 0}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.service-card{background:#fff;padding:1rem;border-radius:10px;box-shadow:0 10px 24px rgba(20,30,60,0.04)}

/* Cards & Products */
.featured{padding:1.6rem 0}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}
.card{background:#fff;border-radius:12px;padding:1rem;display:flex;flex-direction:column;gap:0.6rem;box-shadow:0 12px 30px rgba(20,30,60,0.04)}
.card img{border-radius:8px;object-fit:cover;height:160px;width:100%}
.card h4{font-size:1rem;margin-top:0.35rem}
.card .muted{color:#596673;font-size:0.95rem}
.card-foot{display:flex;align-items:center;justify-content:space-between;margin-top:auto}
.price{font-weight:800;color:#072035}

/* Hosting */
.hosting-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;padding:1rem 0}
.hosting-plan{background:#fff;padding:1rem;border-radius:12px;box-shadow:0 10px 24px rgba(20,30,60,0.04)}

/* Contact cards */
.contact-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1rem}
.contact-card{background:#fff;padding:1rem;border-radius:12px}

/* Why & Footer */
.why{padding:1.6rem 0}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.site-footer{background:#071726;color:#cfe8ff;padding:1.4rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;gap:1rem}
.footer-links a{color:#dff3ff;text-decoration:none;margin-left:0.6rem}

/* Responsive */
@media (max-width:1000px){.hero-inner{grid-template-columns:1fr} .grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:720px){.nav{display:none}.nav-toggle{display:block}.grid-3{grid-template-columns:1fr}.why-grid{grid-template-columns:1fr} .hero-text h1{font-size:1.25rem} .card img{height:140px}}


.social-links {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: #ffffff;
  background: #0b69ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #084cb5;
}