/* Assist Telcom - Shared Site Styles (header + basics) */

:root{
  --accent:#d40000;
  --ink:#111;
  --border:#eee;
  --muted:#666;
  --bg:#ffffff;
  --card:#ffffff;
  --radius:14px;
  --shadow:0 10px 30px rgba(17,17,17,0.06);
}

*{ box-sizing:border-box; }

html{ overflow-y: scroll; }

body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.6;
}

img{ max-width:100%; height:auto; }

/* Layout */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 22px;
}

main{
  padding:40px 0;
}

/* Typography */
h1, h2, h3{
  margin:0 0 12px;
  line-height:1.15;
}

h1{
  font-size:44px;
  font-weight:800;
  letter-spacing:-0.02em;
}

h2{
  font-size:28px;
  font-weight:750;
  margin-top:34px;
}

h3{
  font-size:20px;
  font-weight:750;
}

p{ margin:0 0 14px; }

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:900px;
}

/* Header */
header{
  padding:18px 0;
  border-bottom:1px solid var(--border);
  background:#fff;
}

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

/* Logo */
.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo img{
  height:48px;
  width:auto;
  display:block;
}

/* Nav links */
.links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.links a{
  text-decoration:none;
  color:var(--ink);
  font-weight:650;
}

.links a:hover{ text-decoration:underline; }

/* Phone */
.phone{
  color:var(--accent);
  font-weight:850;
  text-decoration:none;
  white-space:nowrap;
}

/* Cards / Grids (Solutions, Managed Services, Pricing, etc.) */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:22px;
  margin-top:24px;
}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  background:var(--card);
  box-shadow:var(--shadow);
}

.card p{ color:var(--muted); margin:10px 0 0; }

/* CTA */
.cta{
  margin-top:28px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  background:#fff;
}

.cta strong{
  display:block;
  font-size:18px;
  margin-bottom:8px;
}

.cta div{ color:var(--muted); }

.cta-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 16px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  background:#111;
  color:#fff;
}

.cta-btn:hover{ opacity:.9; }

/* Footer */
.site-footer{
  border-top:1px solid #e5e5e5;
  padding:24px 0;
  background:#fafafa;
}

.footer-inner{
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* Mobile */
@media (max-width: 900px){
  h1{ font-size:36px; }

  .nav{
    flex-wrap:wrap;
    justify-content:flex-start;
  }

  .links{
    width:100%;
    gap:12px;
  }

  .phone{
    margin-left:auto;
  }
}