/* Shared styles for northernrocktech.com */
:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.10);
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.70);
  --accent:#7aa7ff;
  --accent2:#4dd7c8;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 800px at 15% 20%, rgba(122,167,255,.18), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(77,215,200,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{max-width:1120px; margin:0 auto; padding:24px}

.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  max-width:1120px; margin:0 auto;
  padding:14px 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:650}
.brand-dot{
  width:18px;height:18px;border-radius:8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 30px rgba(122,167,255,.25);
}
.nav-links{display:flex; gap:18px}
.nav-links a{color:rgba(234,241,255,.80); font-weight:520}
.nav-links a.active{color:var(--text)}
.nav-links a:hover{color:var(--text)}

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

.muted{color:var(--muted)}
.tiny{font-size:12px; line-height:1.4}

.hero{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:18px;
  padding-top:18px;
}
.hero-card{padding:26px}
.eyebrow{color:rgba(234,241,255,.75); font-weight:600; letter-spacing:.02em; margin-bottom:10px}
.hero h1{font-size:54px; line-height:1.02; margin:0 0 12px}
.hero p{font-size:18px; line-height:1.55; margin:0 0 18px}

.hero-actions{display:flex; flex-wrap:wrap; gap:10px; align-items:center}

.pill{
  display:inline-flex; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.10);
  color:rgba(234,241,255,.85);
  font-size:14px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  color:var(--text);
  font-weight:650;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

.btn.primary{
  border:1px solid rgba(122,167,255,.35);
  background: linear-gradient(135deg, rgba(122,167,255,.25), rgba(77,215,200,.18));
}

.hero-meta{padding:22px; position:relative; overflow:hidden}
.meta-row{display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.07)}
.meta-row:last-child{border-bottom:none}
.meta-k{color:rgba(234,241,255,.70)}
.meta-v{font-weight:650}

.meta-visual{position:absolute; inset:-40px -40px auto auto; width:240px; height:240px; opacity:.30}
.orb{
  position:absolute; inset:0;
  border-radius: 90px;
  background: radial-gradient(circle at 35% 35%, rgba(122,167,255,.35), transparent 55%),
              radial-gradient(circle at 60% 65%, rgba(77,215,200,.24), transparent 55%);
}
.orb.small{inset:55px 55px auto auto; width:110px; height:110px; border-radius:44px; opacity:.85}
.orb.tiny{inset:auto auto 70px 70px; width:70px; height:70px; border-radius:30px; opacity:.7}

.section{padding:18px 0 6px}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px}
.section-head h2{margin:0; font-size:28px}
.section-head p{margin:0}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
.service{padding:18px}
.service h3{margin:6px 0 8px}
.service p{margin:0 0 8px}
.service-icon{
  width:40px; height:40px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}

.list{margin:10px 0 0; padding-left:18px; color:rgba(234,241,255,.78)}
.list li{margin:8px 0}

.cta{
  margin-top:16px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cta-title{margin:0 0 6px}

.page-head{padding-top:18px}
.page-head h1{margin:0 0 8px; font-size:40px}
.page-head p{margin:0}

.contact-grid{grid-template-columns: .9fr 1.1fr}

label{display:block; margin-top:12px; margin-bottom:6px; font-weight:650; color:rgba(234,241,255,.86)}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(122,167,255,.45)}

.form-actions{display:flex; align-items:center; gap:12px; margin-top:14px; flex-wrap:wrap}
.hidden{display:none}

.footer{
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(14px);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  padding:18px 24px;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(15,27,46,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(234,241,255,.92);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{opacity:1; transform: translateX(-50%) translateY(-4px)}
.toast.error{border-color: rgba(255,120,120,.35)}

/* Modal */
.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:center; justify-content:center;
  padding: 18px;
}
.modal.open{display:flex}
.modal-card{
  width: min(520px, 100%);
  padding: 22px;
  border-radius: 18px;
  background: rgba(15,27,46,.96);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  text-align:center;
}
.modal-icon{font-size:40px; margin-bottom:6px}
.modal-card h2{margin:0 0 8px}
.modal-card p{margin:0 0 14px}
.modal-actions{display:flex; gap:10px; justify-content:center; flex-wrap:wrap}

/* Responsive */
@media (max-width: 980px){
  .hero{grid-template-columns: 1fr; }
  .hero h1{font-size:42px}
  .grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .section-head{flex-direction:column; align-items:flex-start}
}
/* Fix right-side meta card layout (Entity card) */
.hero-meta .meta-row{
  display: grid;
  grid-template-columns: 140px 1fr; /* label sabit, value esnek */
  gap: 14px;
  align-items: start;
}

.hero-meta .meta-k{
  white-space: nowrap;
}

.hero-meta .meta-v{
  text-align: right;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere; /* Scope • Documentation • Reporting gibi metinlerde taşmayı düzeltir */
  word-break: break-word;
}

/* Footer links */
.footer a{color:rgba(234,241,255,.88)}
.footer a:hover{color:var(--text)}



/* Cookie notice */
.cookie{
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie.show{ pointer-events: auto; }
.cookie-inner{
  width: min(980px, 100%);
  background: rgba(15,27,46,.94);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-text{display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; color: rgba(234,241,255,.92);}
.cookie-link{ text-decoration: underline; opacity: .9; }
@media (max-width: 520px){
  .cookie-inner{ align-items:flex-start; flex-direction:column; }
  .cookie{ left: 12px; right: 12px; bottom: 12px; }
}

